1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "test-helper.h"
#define DEBUG_FLAG EMPATHY_DEBUG_TESTS
#include <libempathy/empathy-debug.h>
#include <libempathy-gtk/empathy-ui-utils.h>
static void
test_replace_link (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_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,
gpointer user_data)
{
GString *string = user_data;
g_string_append_len (string, text, len);
}
static void
test_parsers (void)
{
guint i;
gchar *tests[] =
{
"http://foo.com", "[http://foo.com]",
":)http://foo.com :D", "<:)>[http://foo.com] <:D>",
NULL, NULL
};
EmpathyStringParser parsers[] =
{
{empathy_string_match_link, test_replace_link},
{empathy_string_match_smiley, test_replace_smiley},
{empathy_string_match_all, test_replace_verbatim},
{NULL, NULL}
};
DEBUG ("Started");
for (i = 0; tests[i] != NULL; i += 2)
{
GString *string;
string = g_string_new (NULL);
empathy_string_parser_substr (tests[i], -1, parsers, string);
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;
}
|