]> git.0d.be Git - empathy.git/blob - tests/empathy-live-search-test.c
Make livesearch work if accentued letters are pre-decomposed
[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   gboolean failed = FALSE;
53
54   DEBUG ("Started");
55   for (i = 0; tests[i].string != NULL; i ++)
56     {
57       gboolean match;
58       gboolean ok;
59
60       match = empathy_live_search_match_string (tests[i].string, tests[i].prefix);
61       ok = (match == tests[i].should_match);
62
63       DEBUG ("'%s' - '%s': %s", tests[i].string, tests[i].prefix, ok ? "OK" : "FAILED");
64
65       if (!ok)
66         failed = TRUE;
67     }
68
69   g_assert (!failed);
70 }
71
72 int
73 main (int argc,
74     char **argv)
75 {
76   int result;
77
78   test_init (argc, argv);
79
80   g_test_add_func ("/live-search", test_live_search);
81
82   result = g_test_run ();
83   test_deinit ();
84
85   return result;
86 }