summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorShaun McCance <shaunm@gnome.org>2010-04-26 11:24:17 -0500
committerShaun McCance <shaunm@gnome.org>2010-04-26 11:24:17 -0500
commitcd6e6383aba8e93f983e298e6044164e0fc19cab (patch)
tree9db9a546bcbd705f69d3df6cd3912a616d8d1594 /tests
parentfeed213d5298125b026bc0c74d4b3be922b65e0e (diff)
downloadyelp-cd6e6383aba8e93f983e298e6044164e0fc19cab.tar.gz
[libyelp] Adding GIO decompressors for bz2, lzma, and magic
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am12
-rw-r--r--tests/test-bz2.c60
-rw-r--r--tests/test-lzma.c60
-rw-r--r--tests/test-magic.c60
4 files changed, 192 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 02f1d98a..c4b9c543 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -12,19 +12,31 @@ YELP_COMMON_LDADD = \
$(top_builddir)/libyelp/libyelp.la
check_PROGRAMS = \
+ test-bz2 \
test-io-channel \
test-location-entry \
+ test-lzma \
+ test-magic \
test-settings \
test-transform \
test-uri \
test-view
+test_bz2_CFLAGS = $(YELP_COMMON_CFLAGS)
+test_bz2_LDADD = $(YELP_COMMON_LDADD)
+
test_io_channel_CFLAGS = $(YELP_COMMON_CFLAGS)
test_io_channel_LDADD = $(YELP_COMMON_LDADD)
test_location_entry_CFLAGS = $(YELP_COMMON_CFLAGS)
test_location_entry_LDADD = $(YELP_COMMON_LDADD)
+test_lzma_CFLAGS = $(YELP_COMMON_CFLAGS)
+test_lzma_LDADD = $(YELP_COMMON_LDADD)
+
+test_magic_CFLAGS = $(YELP_COMMON_CFLAGS)
+test_magic_LDADD = $(YELP_COMMON_LDADD)
+
test_settings_CFLAGS = $(YELP_COMMON_CFLAGS)
test_settings_LDADD = $(YELP_COMMON_LDADD)
diff --git a/tests/test-bz2.c b/tests/test-bz2.c
new file mode 100644
index 00000000..a2da96cb
--- /dev/null
+++ b/tests/test-bz2.c
@@ -0,0 +1,60 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * Copyright (C) 2009 Shaun McCance <shaunm@gnome.org
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Shaun McCance <shaunm@gnome.org
+ */
+
+#include <config.h>
+#include <stdio.h>
+#include <string.h>
+
+#include <gio/gio.h>
+
+#include "yelp-bz2-decompressor.h"
+
+int
+main (int argc, char **argv)
+{
+ GConverter *converter;
+ GFile *file;
+ GFileInputStream *file_stream;
+ GInputStream *stream;
+ gchar buf[1024];
+ gssize bytes;
+
+ if (argc < 2) {
+ g_printerr ("Usage: test-bz2 FILE\n");
+ return 1;
+ }
+
+ g_type_init ();
+
+ file = g_file_new_for_path (argv[1]);
+ file_stream = g_file_read (file, NULL, NULL);
+ converter = yelp_bz2_decompressor_new ();
+ stream = g_converter_input_stream_new (file_stream, converter);
+
+ while ((bytes = g_input_stream_read (stream, buf, 1024, NULL, NULL)) > 0) {
+ gchar *out = g_strndup (buf, bytes);
+ puts (out);
+ g_free (out);
+ }
+
+ return 0;
+}
diff --git a/tests/test-lzma.c b/tests/test-lzma.c
new file mode 100644
index 00000000..76af37d8
--- /dev/null
+++ b/tests/test-lzma.c
@@ -0,0 +1,60 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * Copyright (C) 2009 Shaun McCance <shaunm@gnome.org
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Shaun McCance <shaunm@gnome.org
+ */
+
+#include <config.h>
+#include <stdio.h>
+#include <string.h>
+
+#include <gio/gio.h>
+
+#include "yelp-lzma-decompressor.h"
+
+int
+main (int argc, char **argv)
+{
+ GConverter *converter;
+ GFile *file;
+ GFileInputStream *file_stream;
+ GInputStream *stream;
+ gchar buf[1024];
+ gssize bytes;
+
+ if (argc < 2) {
+ g_printerr ("Usage: test-lzma FILE\n");
+ return 1;
+ }
+
+ g_type_init ();
+
+ file = g_file_new_for_path (argv[1]);
+ file_stream = g_file_read (file, NULL, NULL);
+ converter = yelp_lzma_decompressor_new ();
+ stream = g_converter_input_stream_new (file_stream, converter);
+
+ while ((bytes = g_input_stream_read (stream, buf, 1024, NULL, NULL)) > 0) {
+ gchar *out = g_strndup (buf, bytes);
+ puts (out);
+ g_free (out);
+ }
+
+ return 0;
+}
diff --git a/tests/test-magic.c b/tests/test-magic.c
new file mode 100644
index 00000000..9a937991
--- /dev/null
+++ b/tests/test-magic.c
@@ -0,0 +1,60 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * Copyright (C) 2009 Shaun McCance <shaunm@gnome.org
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *
+ * Author: Shaun McCance <shaunm@gnome.org
+ */
+
+#include <config.h>
+#include <stdio.h>
+#include <string.h>
+
+#include <gio/gio.h>
+
+#include "yelp-magic-decompressor.h"
+
+int
+main (int argc, char **argv)
+{
+ GConverter *converter;
+ GFile *file;
+ GFileInputStream *file_stream;
+ GInputStream *stream;
+ gchar buf[1024];
+ gssize bytes;
+
+ if (argc < 2) {
+ g_printerr ("Usage: test-magic FILE\n");
+ return 1;
+ }
+
+ g_type_init ();
+
+ file = g_file_new_for_path (argv[1]);
+ file_stream = g_file_read (file, NULL, NULL);
+ converter = yelp_magic_decompressor_new ();
+ stream = g_converter_input_stream_new (file_stream, converter);
+
+ while ((bytes = g_input_stream_read (stream, buf, 1024, NULL, NULL)) > 0) {
+ gchar *out = g_strndup (buf, bytes);
+ puts (out);
+ g_free (out);
+ }
+
+ return 0;
+}