[glib] Improve uri test coverage
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] Improve uri test coverage
- Date: Tue, 6 Jul 2010 04:03:06 +0000 (UTC)
commit c5fcd21e33282676f9bfbaa71ca5fb7d54e30057
Author: Matthias Clasen <mclasen redhat com>
Date: Mon Jul 5 23:30:10 2010 -0400
Improve uri test coverage
glib/tests/uri.c | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
---
diff --git a/glib/tests/uri.c b/glib/tests/uri.c
index 1bf2ba0..c095559 100644
--- a/glib/tests/uri.c
+++ b/glib/tests/uri.c
@@ -318,6 +318,18 @@ run_uri_list_tests (void)
g_assert_cmpint (g_strv_length (uris), ==, 0);
}
+static void
+test_uri_unescape (void)
+{
+ g_assert_cmpstr (g_uri_unescape_string ("%2Babc %4F", NULL), ==, "+abc O");
+ g_assert_cmpstr (g_uri_unescape_string ("%2Babc %4F", "+"), ==, NULL);
+ g_assert_cmpstr (g_uri_unescape_string ("%00abc %4F", "+/"), ==, NULL);
+ g_assert_cmpstr (g_uri_unescape_string ("%0", NULL), ==, NULL);
+ g_assert_cmpstr (g_uri_unescape_string ("%ra", NULL), ==, NULL);
+ g_assert_cmpstr (g_uri_unescape_string ("%2r", NULL), ==, NULL);
+ g_assert_cmpstr (g_uri_unescape_string (NULL, NULL), ==, NULL);
+}
+
int
main (int argc,
char *argv[])
@@ -328,6 +340,7 @@ main (int argc,
g_test_add_func ("/uri/from-uri", run_from_uri_tests);
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);
return g_test_run ();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]