From 8ab216aca28acaa857b4b7faa606cd3af26b6cd9 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 24 Nov 2009 14:32:00 +0100 Subject: Add parser tests --- tests/.gitignore | 1 + tests/Makefile.am | 6 ++++- tests/empathy-parser-test.c | 66 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 tests/empathy-parser-test.c (limited to 'tests') diff --git a/tests/.gitignore b/tests/.gitignore index 73a19245d..f3af9c7fe 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -5,4 +5,5 @@ empathy-irc-network-test empathy-irc-network-manager-test empathy-chatroom-test empathy-chatroom-manager-test +empathy-parser-test test-report.xml diff --git a/tests/Makefile.am b/tests/Makefile.am index 25e399406..936761533 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -27,7 +27,8 @@ TEST_PROGS = \ empathy-irc-network-test \ empathy-irc-network-manager-test \ empathy-chatroom-test \ - empathy-chatroom-manager-test + empathy-chatroom-manager-test \ + empathy-parser-test empathy_utils_test_SOURCES = empathy-utils-test.c \ test-helper.c test-helper.h @@ -50,6 +51,9 @@ empathy_chatroom_test_SOURCES = empathy-chatroom-test.c \ empathy_chatroom_manager_test_SOURCES = empathy-chatroom-manager-test.c \ test-helper.c test-helper.h +empathy_parser_test_SOURCES = empathy-parser-test.c \ + test-helper.c test-helper.h + check_PROGRAMS = $(TEST_PROGS) TESTS_ENVIRONMENT = EMPATHY_SRCDIR=@abs_top_srcdir@ \ diff --git a/tests/empathy-parser-test.c b/tests/empathy-parser-test.c new file mode 100644 index 000000000..e1807251d --- /dev/null +++ b/tests/empathy-parser-test.c @@ -0,0 +1,66 @@ +#include +#include +#include + +#include "test-helper.h" + +#define DEBUG_FLAG EMPATHY_DEBUG_TESTS +#include + +#include + +static void +test_replace_link (GString *string, + const gchar *text, + gssize len, + gpointer user_data) +{ + g_string_append_c (string, '['); + g_string_append_len (string, text, len); + g_string_append_c (string, ']'); +} + +static void +test_parsers (void) +{ + guint i; + gchar *tests[] = + { + "http://foo.com", "[http://foo.com]", + NULL, NULL + }; + EmpathyStringParser parsers[] = + { + {empathy_string_match_link, test_replace_link}, + {NULL, NULL} + }; + + for (i = 0; tests[i] != NULL; i += 2) + { + GString *string; + + string = g_string_new (NULL); + empathy_string_parser_substr (string, tests[i], -1, parsers); + + DEBUG ("'%s' => '%s'", tests[i], string->str); + g_assert_cmpstr (tests[i + 1], ==, string->str); + + g_string_free (string, TRUE); + } +} + +int +main (int argc, + char **argv) +{ + int result; + + test_init (argc, argv); + + g_test_add_func ("/parsers", test_parsers); + + result = g_test_run (); + test_deinit (); + + return result; +} -- cgit v1.2.3