[glib] Improve test coverage of gurifuncs.c



commit bb0cbc2ae121c444f13520e73a30ad47ba2ccc0a
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Jun 6 00:30:50 2011 -0400

    Improve test coverage of gurifuncs.c

 glib/tests/uri.c |   32 ++++++++++++++++++++++++++++++++
 1 files changed, 32 insertions(+), 0 deletions(-)
---
diff --git a/glib/tests/uri.c b/glib/tests/uri.c
index c095559..097b195 100644
--- a/glib/tests/uri.c
+++ b/glib/tests/uri.c
@@ -330,6 +330,36 @@ test_uri_unescape (void)
   g_assert_cmpstr (g_uri_unescape_string (NULL,  NULL), ==, NULL);
 }
 
+static void
+test_uri_escape (void)
+{
+  gchar *s;
+
+  s = g_uri_escape_string ("abcdefgABCDEFG._~", NULL, FALSE);
+  g_assert_cmpstr (s, ==, "abcdefgABCDEFG._~");
+  g_free (s);
+  s = g_uri_escape_string (":+ \\?#", NULL, FALSE);
+  g_assert_cmpstr (s, ==, "%3A%2B%20%5C%3F%23");
+  g_free (s);
+  s = g_uri_escape_string ("a+b:c", "+", FALSE);
+  g_assert_cmpstr (s, ==, "a+b%3Ac");
+  g_free (s);
+}
+
+static void
+test_uri_scheme (void)
+{
+  gchar *s;
+
+  s = g_uri_parse_scheme ("ftp://ftp.gtk.org";);
+  g_assert_cmpstr (s, ==, "ftp");
+  g_free (s);
+  s = g_uri_parse_scheme ("1bad:");
+  g_assert (s == NULL);
+  s = g_uri_parse_scheme ("bad");
+  g_assert (s == NULL);
+}
+
 int
 main (int   argc,
       char *argv[])
@@ -341,6 +371,8 @@ main (int   argc,
   g_test_add_func ("/uri/roundtrip", run_roundtrip_tests);
   g_test_add_func ("/uri/list", run_uri_list_tests);
   g_test_add_func ("/uri/unescape", test_uri_unescape);
+  g_test_add_func ("/uri/escape", test_uri_escape);
+  g_test_add_func ("/uri/scheme", test_uri_scheme);
 
   return g_test_run ();
 }



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