[glib] Add a tests of some GVfs functions



commit 8ff94df6325b54264cd2ea7b7b6701665b1014a9
Author: Matthias Clasen <mclasen redhat com>
Date:   Sun Oct 16 14:34:16 2011 -0400

    Add a tests of some GVfs functions
    
    https://bugzilla.gnome.org/show_bug.cgi?id=656621

 gio/tests/Makefile.am |    7 ++++-
 gio/tests/vfs.c       |   55 +++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+), 2 deletions(-)
---
diff --git a/gio/tests/Makefile.am b/gio/tests/Makefile.am
index e354528..2091366 100644
--- a/gio/tests/Makefile.am
+++ b/gio/tests/Makefile.am
@@ -52,9 +52,10 @@ TEST_PROGS +=	 		\
 	gdbus-message		\
 	socket			\
 	pollable		\
-	tls-certificate         \
-	tls-interaction         \
+	tls-certificate		\
+	tls-interaction		\
 	cancellable		\
+	vfs			\
 	$(NULL)
 
 if OS_UNIX
@@ -489,6 +490,8 @@ tls_interaction_LDADD = $(progs_ldadd)
 
 cancellable_LDADD = $(progs_ldadd)
 
+vfs_LDADD = $(progs_ldadd)
+
 # -----------------------------------------------------------------------------
 
 if OS_UNIX
diff --git a/gio/tests/vfs.c b/gio/tests/vfs.c
new file mode 100644
index 0000000..7a7f817
--- /dev/null
+++ b/gio/tests/vfs.c
@@ -0,0 +1,55 @@
+
+/* Unit tests for GVfs
+ * Copyright (C) 2011 Red Hat, Inc
+ * Author: Matthias Clasen
+ *
+ * This work is provided "as is"; redistribution and modification
+ * in whole or in part, in any medium, physical or electronic is
+ * permitted without restriction.
+ *
+ * This work 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.
+ *
+ * In no event shall the authors or contributors be liable for any
+ * direct, indirect, incidental, special, exemplary, or consequential
+ * damages (including, but not limited to, procurement of substitute
+ * goods or services; loss of use, data, or profits; or business
+ * interruption) however caused and on any theory of liability, whether
+ * in contract, strict liability, or tort (including negligence or
+ * otherwise) arising in any way out of the use of this software, even
+ * if advised of the possibility of such damage.
+ */
+
+#include <gio/gio.h>
+
+static void
+test_local (void)
+{
+  GVfs *vfs;
+  GFile *file;
+  gchar **schemes;
+
+  vfs = g_vfs_get_local ();
+  g_assert (g_vfs_is_active (vfs));
+
+  file = g_vfs_get_file_for_uri (vfs, "not a good uri");
+  g_assert (G_IS_FILE (file));
+  g_object_unref (file);
+
+  schemes = (gchar **)g_vfs_get_supported_uri_schemes (vfs);
+
+  g_assert (g_strv_length (schemes) > 0);
+  g_assert_cmpstr (schemes[0], ==, "file");
+}
+
+int
+main (int argc, char *argv[])
+{
+  g_type_init ();
+  g_test_init (&argc, &argv, NULL);
+
+  g_test_add_func ("/gvfs/local", test_local);
+
+  return g_test_run ();
+}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]