aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2009-11-24 23:44:29 +0800
committerXavier Claessens <xclaesse@gmail.com>2009-11-25 01:29:45 +0800
commit9863c689d9dab2772bb6ffda97d7376702142394 (patch)
treef1a2bee2581bb7c083dbe24a2989776a175cd599 /tests
parent9c1e21c7ad3ba913ebf144b498aa2de6d22a7797 (diff)
downloadgsoc2013-empathy-9863c689d9dab2772bb6ffda97d7376702142394.tar
gsoc2013-empathy-9863c689d9dab2772bb6ffda97d7376702142394.tar.gz
gsoc2013-empathy-9863c689d9dab2772bb6ffda97d7376702142394.tar.bz2
gsoc2013-empathy-9863c689d9dab2772bb6ffda97d7376702142394.tar.lz
gsoc2013-empathy-9863c689d9dab2772bb6ffda97d7376702142394.tar.xz
gsoc2013-empathy-9863c689d9dab2772bb6ffda97d7376702142394.tar.zst
gsoc2013-empathy-9863c689d9dab2772bb6ffda97d7376702142394.zip
Add more test cases and fix some found issues in link regex.
Diffstat (limited to 'tests')
-rw-r--r--tests/empathy-parser-test.c72
1 files changed, 52 insertions, 20 deletions
diff --git a/tests/empathy-parser-test.c b/tests/empathy-parser-test.c
index 30a28c58a..bbe7aad16 100644
--- a/tests/empathy-parser-test.c
+++ b/tests/empathy-parser-test.c
@@ -10,10 +10,10 @@
#include <libempathy-gtk/empathy-ui-utils.h>
static void
-test_replace_link (const gchar *text,
- gssize len,
- gpointer match_data,
- gpointer user_data)
+test_replace_match (const gchar *text,
+ gssize len,
+ gpointer match_data,
+ gpointer user_data)
{
GString *string = user_data;
@@ -23,19 +23,6 @@ test_replace_link (const gchar *text,
}
static void
-test_replace_smiley (const gchar *text,
- gssize len,
- gpointer match_data,
- gpointer user_data)
-{
- GString *string = user_data;
-
- g_string_append_c (string, '<');
- g_string_append_len (string, text, len);
- g_string_append_c (string, '>');
-}
-
-static void
test_replace_verbatim (const gchar *text,
gssize len,
gpointer match_data,
@@ -52,14 +39,59 @@ test_parsers (void)
guint i;
gchar *tests[] =
{
+ /* Basic link matches */
"http://foo.com", "[http://foo.com]",
- ":)http://foo.com :D", "<:)>[http://foo.com] <:D>",
+ "git://foo.com", "[git://foo.com]",
+ "git+ssh://foo.com", "[git+ssh://foo.com]",
+ "mailto:user@server.com", "[mailto:user@server.com]",
+ "www.foo.com", "[www.foo.com]",
+ "ftp.foo.com", "[ftp.foo.com]",
+ "user@server.com", "[user@server.com]",
+ "http://foo.com. bar", "[http://foo.com]. bar",
+ "http://foo.com; bar", "[http://foo.com]; bar",
+ "http://foo.com: bar", "[http://foo.com]: bar",
+ "http://foo.com:bar", "[http://foo.com:bar]",
+
+ /* They are not links! */
+ "http://", "http[:/]/", /* Hm... */
+ "www.", "www.",
+ "w.foo.com", "w.foo.com",
+ "@server.com", "@server.com",
+ "mailto:user@", "mailto:user@",
+ "mailto:user@.com", "mailto:user@.com",
+ "user@.com", "user@.com",
+
+ /* Links inside (), {}, [] or "" */
+ /* FIXME: How to test if the ending ] is matched or not? */
+ "Foo (www.foo.com)", "Foo ([www.foo.com])",
+ "Foo {www.foo.com}", "Foo {[www.foo.com]}",
+ "Foo [www.foo.com]", "Foo [[www.foo.com]]",
+ "Foo \"www.foo.com\"", "Foo \"[www.foo.com]\"",
+ "Foo (www.foo.com/bar(123)baz)", "Foo ([www.foo.com/bar(123)baz])",
+ "<a href=\"http://foo.com\">bar</a>", "<a href=\"[http://foo.com]\">bar</a>",
+
+ /* Basic smileys */
+ "a:)b", "a[:)]b",
+ ">:)", "[>:)]",
+ ">:(", ">[:(]",
+
+ /* Smileys and links mixed */
+ ":)http://foo.com", "[:)][http://foo.com]",
+ "a :) b http://foo.com c :( d www.test.com e", "a [:)] b [http://foo.com] c [:(] d [www.test.com] e",
+
+ /* FIXME: Known issues. Brackets should be counted by the parser */
+ //"Foo www.bar.com/test(123)", "Foo [www.bar.com/test(123)]",
+ //"Foo (www.bar.com/test(123))", "Foo ([www.bar.com/test(123)])",
+ //"Foo www.bar.com/test{123}", "Foo [www.bar.com/test{123}]",
+ //"Foo (:))", "Foo ([:)])",
+ //"Foo <a href=\"http://foo.com\">:)</a>", "Foo <a href=\"[http://foo.com]\">[:)]</a>",
+
NULL, NULL
};
EmpathyStringParser parsers[] =
{
- {empathy_string_match_link, test_replace_link},
- {empathy_string_match_smiley, test_replace_smiley},
+ {empathy_string_match_link, test_replace_match},
+ {empathy_string_match_smiley, test_replace_match},
{empathy_string_match_all, test_replace_verbatim},
{NULL, NULL}
};