]> git.0d.be Git - empathy.git/blob - tests/empathy-live-search-test.c
account-settings: allow to change the service
[empathy.git] / tests / empathy-live-search-test.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4
5 #include "test-helper.h"
6
7 #define DEBUG_FLAG EMPATHY_DEBUG_TESTS
8 #include <libempathy/empathy-debug.h>
9
10 #include <libempathy-gtk/empathy-live-search.h>
11
12 typedef struct
13 {
14   const gchar *string;
15   const gchar *prefix;
16   gboolean should_match;
17 } LiveSearchTest;
18
19 static void
20 test_live_search (void)
21 {
22   LiveSearchTest tests[] =
23     {
24       /* Test word separators and case */
25       { "Hello World", "he", TRUE },
26       { "Hello World", "wo", TRUE },
27       { "Hello World", "lo", FALSE },
28       { "Hello World", "ld", FALSE },
29       { "Hello-World", "wo", TRUE },
30       { "HelloWorld", "wo", FALSE },
31
32       /* Test composed chars (accentued letters) */
33       { "Jörgen", "jor", TRUE },
34       { "Gaëtan", "gaetan", TRUE },
35       { "élève", "ele", TRUE },
36       { "Azais", "AzaÏs", TRUE },
37
38       /* Test decomposed chars, they looks the same, but are actually
39        * composed of multiple unicodes */
40       { "Jorgen", "Jör", TRUE },
41       { "Jörgen", "jor", TRUE },
42
43       /* Multi words */
44       { "Xavier Claessens", "Xav Cla", TRUE },
45       { "Xavier Claessens", "Cla Xav", TRUE },
46       { "Foo Bar Baz", "   b  ", TRUE },
47       { "Foo Bar Baz", "bar bazz", FALSE },
48
49       { NULL, NULL, FALSE }
50     };
51   guint i;
52
53   DEBUG ("Started");
54   for (i = 0; tests[i].string != NULL; i ++)
55     {
56       gboolean match;
57       gboolean ok;
58
59       match = empathy_live_search_match_string (tests[i].string, tests[i].prefix);
60       ok = (match == tests[i].should_match);
61
62       DEBUG ("'%s' - '%s' %s: %s", tests[i].string, tests[i].prefix,
63           tests[i].should_match ? "should match" : "should NOT match",
64           ok ? "OK" : "FAILED");
65
66       g_assert (ok);
67     }
68 }
69
70 int
71 main (int argc,
72     char **argv)
73 {
74   int result;
75
76   test_init (argc, argv);
77
78   g_test_add_func ("/live-search", test_live_search);
79
80   result = g_test_run ();
81   test_deinit ();
82
83   return result;
84 }