sl@0
|
1 |
/*
|
sl@0
|
2 |
* Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
|
sl@0
|
3 |
*/
|
sl@0
|
4 |
#undef G_DISABLE_ASSERT
|
sl@0
|
5 |
|
sl@0
|
6 |
#include <glib.h>
|
sl@0
|
7 |
#include <time.h>
|
sl@0
|
8 |
#include <locale.h>
|
sl@0
|
9 |
#include <string.h>
|
sl@0
|
10 |
#include <stdio.h>
|
sl@0
|
11 |
#include <stdlib.h>
|
sl@0
|
12 |
#ifdef __SYMBIAN32__
|
sl@0
|
13 |
#include "mrt2_glib2_test.h"
|
sl@0
|
14 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
15 |
|
sl@0
|
16 |
#define TEST_URI_0 "file:///abc/defgh/ijklmnopqrstuvwxyz"
|
sl@0
|
17 |
#define TEST_URI_1 "file:///test/uri/1"
|
sl@0
|
18 |
#define TEST_URI_2 "file:///test/uri/2"
|
sl@0
|
19 |
|
sl@0
|
20 |
#define TEST_MIME "text/plain"
|
sl@0
|
21 |
|
sl@0
|
22 |
#define TEST_APP_NAME "bookmarkfile-test"
|
sl@0
|
23 |
#define TEST_APP_EXEC "bookmarkfile-test %f"
|
sl@0
|
24 |
|
sl@0
|
25 |
static gboolean
|
sl@0
|
26 |
test_load (GBookmarkFile *bookmark,
|
sl@0
|
27 |
const gchar *filename)
|
sl@0
|
28 |
{
|
sl@0
|
29 |
GError *error = NULL;
|
sl@0
|
30 |
gboolean res;
|
sl@0
|
31 |
|
sl@0
|
32 |
res = g_bookmark_file_load_from_file (bookmark, filename, &error);
|
sl@0
|
33 |
if (error)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
g_print ("Load error: %s\n", error->message);
|
sl@0
|
36 |
g_error_free (error);
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
return res;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
static gboolean
|
sl@0
|
43 |
test_query (GBookmarkFile *bookmark)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
gint size;
|
sl@0
|
46 |
gchar **uris;
|
sl@0
|
47 |
gsize uris_len, i;
|
sl@0
|
48 |
gboolean res = TRUE;
|
sl@0
|
49 |
|
sl@0
|
50 |
size = g_bookmark_file_get_size (bookmark);
|
sl@0
|
51 |
uris = g_bookmark_file_get_uris (bookmark, &uris_len);
|
sl@0
|
52 |
|
sl@0
|
53 |
if (uris_len != size)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
g_print ("URI/size mismatch: URI count is %d (should be %d)\n", uris_len, size);
|
sl@0
|
56 |
|
sl@0
|
57 |
res = FALSE;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
for (i = 0; i < uris_len; i++)
|
sl@0
|
61 |
if (!g_bookmark_file_has_item (bookmark, uris[i]))
|
sl@0
|
62 |
{
|
sl@0
|
63 |
g_print ("URI/bookmark mismatch: bookmark for '%s' does not exist\n", uris[i]);
|
sl@0
|
64 |
|
sl@0
|
65 |
res = FALSE;
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
g_strfreev (uris);
|
sl@0
|
69 |
|
sl@0
|
70 |
return res;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
static gboolean
|
sl@0
|
74 |
test_modify (GBookmarkFile *bookmark)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
gchar *text;
|
sl@0
|
77 |
guint count;
|
sl@0
|
78 |
time_t stamp;
|
sl@0
|
79 |
GError *error = NULL;
|
sl@0
|
80 |
|
sl@0
|
81 |
g_print ("\t=> check global title/description...");
|
sl@0
|
82 |
g_bookmark_file_set_title (bookmark, NULL, "a file");
|
sl@0
|
83 |
g_bookmark_file_set_description (bookmark, NULL, "a bookmark file");
|
sl@0
|
84 |
|
sl@0
|
85 |
text = g_bookmark_file_get_title (bookmark, NULL, &error);
|
sl@0
|
86 |
g_assert_no_error (error);
|
sl@0
|
87 |
g_assert_cmpstr (text, ==, "a file");
|
sl@0
|
88 |
g_free (text);
|
sl@0
|
89 |
|
sl@0
|
90 |
text = g_bookmark_file_get_description (bookmark, NULL, &error);
|
sl@0
|
91 |
g_assert_no_error (error);
|
sl@0
|
92 |
g_assert_cmpstr (text, ==, "a bookmark file");
|
sl@0
|
93 |
g_free (text);
|
sl@0
|
94 |
g_print ("ok\n");
|
sl@0
|
95 |
|
sl@0
|
96 |
g_print ("\t=> check bookmark title/description...");
|
sl@0
|
97 |
g_bookmark_file_set_title (bookmark, TEST_URI_0, "a title");
|
sl@0
|
98 |
g_bookmark_file_set_description (bookmark, TEST_URI_0, "a description");
|
sl@0
|
99 |
|
sl@0
|
100 |
text = g_bookmark_file_get_title (bookmark, TEST_URI_0, &error);
|
sl@0
|
101 |
g_assert_no_error (error);
|
sl@0
|
102 |
g_assert_cmpstr (text, ==, "a title");
|
sl@0
|
103 |
g_free (text);
|
sl@0
|
104 |
g_print ("ok\n");
|
sl@0
|
105 |
|
sl@0
|
106 |
g_print ("\t=> check non existing bookmark...");
|
sl@0
|
107 |
g_bookmark_file_get_description (bookmark, TEST_URI_1, &error);
|
sl@0
|
108 |
g_assert_error (error, G_BOOKMARK_FILE_ERROR, G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND);
|
sl@0
|
109 |
g_clear_error (&error);
|
sl@0
|
110 |
g_print ("ok\n");
|
sl@0
|
111 |
|
sl@0
|
112 |
g_print ("\t=> check application...");
|
sl@0
|
113 |
g_bookmark_file_set_mime_type (bookmark, TEST_URI_0, TEST_MIME);
|
sl@0
|
114 |
g_bookmark_file_add_application (bookmark, TEST_URI_0,
|
sl@0
|
115 |
TEST_APP_NAME,
|
sl@0
|
116 |
TEST_APP_EXEC);
|
sl@0
|
117 |
g_assert (g_bookmark_file_has_application (bookmark, TEST_URI_0, TEST_APP_NAME, NULL) == TRUE);
|
sl@0
|
118 |
g_bookmark_file_get_app_info (bookmark, TEST_URI_0, TEST_APP_NAME,
|
sl@0
|
119 |
&text,
|
sl@0
|
120 |
&count,
|
sl@0
|
121 |
&stamp,
|
sl@0
|
122 |
&error);
|
sl@0
|
123 |
g_assert_no_error (error);
|
sl@0
|
124 |
g_assert (count == 1);
|
sl@0
|
125 |
g_assert (stamp == g_bookmark_file_get_modified (bookmark, TEST_URI_0, NULL));
|
sl@0
|
126 |
g_free (text);
|
sl@0
|
127 |
|
sl@0
|
128 |
g_bookmark_file_get_app_info (bookmark, TEST_URI_0, "fail",
|
sl@0
|
129 |
&text,
|
sl@0
|
130 |
&count,
|
sl@0
|
131 |
&stamp,
|
sl@0
|
132 |
&error);
|
sl@0
|
133 |
g_assert_error (error, G_BOOKMARK_FILE_ERROR, G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED);
|
sl@0
|
134 |
g_clear_error (&error);
|
sl@0
|
135 |
g_print ("ok\n");
|
sl@0
|
136 |
|
sl@0
|
137 |
g_print ("\t=> check groups...");
|
sl@0
|
138 |
g_bookmark_file_add_group (bookmark, TEST_URI_1, "Test");
|
sl@0
|
139 |
g_assert (g_bookmark_file_has_group (bookmark, TEST_URI_1, "Test", NULL) == TRUE);
|
sl@0
|
140 |
g_assert (g_bookmark_file_has_group (bookmark, TEST_URI_1, "Fail", NULL) == FALSE);
|
sl@0
|
141 |
g_print ("ok\n");
|
sl@0
|
142 |
|
sl@0
|
143 |
g_print ("\t=> check remove...");
|
sl@0
|
144 |
g_assert (g_bookmark_file_remove_item (bookmark, TEST_URI_1, &error) == TRUE);
|
sl@0
|
145 |
g_assert_no_error (error);
|
sl@0
|
146 |
g_assert (g_bookmark_file_remove_item (bookmark, TEST_URI_1, &error) == FALSE);
|
sl@0
|
147 |
g_assert_error (error, G_BOOKMARK_FILE_ERROR, G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND);
|
sl@0
|
148 |
g_clear_error (&error);
|
sl@0
|
149 |
g_print ("ok\n");
|
sl@0
|
150 |
|
sl@0
|
151 |
return TRUE;
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
static gint
|
sl@0
|
155 |
test_file (const gchar *filename)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
GBookmarkFile *bookmark_file;
|
sl@0
|
158 |
gboolean success;
|
sl@0
|
159 |
|
sl@0
|
160 |
g_return_val_if_fail (filename != NULL, 1);
|
sl@0
|
161 |
|
sl@0
|
162 |
g_print ("checking GBookmarkFile...\n");
|
sl@0
|
163 |
|
sl@0
|
164 |
bookmark_file = g_bookmark_file_new ();
|
sl@0
|
165 |
g_assert (bookmark_file != NULL);
|
sl@0
|
166 |
|
sl@0
|
167 |
success = test_load (bookmark_file, filename);
|
sl@0
|
168 |
|
sl@0
|
169 |
if (success)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
success = test_query (bookmark_file);
|
sl@0
|
172 |
success = test_modify (bookmark_file);
|
sl@0
|
173 |
}
|
sl@0
|
174 |
|
sl@0
|
175 |
g_bookmark_file_free (bookmark_file);
|
sl@0
|
176 |
|
sl@0
|
177 |
g_print ("ok\n");
|
sl@0
|
178 |
|
sl@0
|
179 |
return (success == TRUE ? 0 : 1);
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
int
|
sl@0
|
183 |
main (int argc,
|
sl@0
|
184 |
char *argv[])
|
sl@0
|
185 |
{
|
sl@0
|
186 |
#ifdef __SYMBIAN32__
|
sl@0
|
187 |
g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
|
sl@0
|
188 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
189 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
190 |
|
sl@0
|
191 |
if (argc > 1){
|
sl@0
|
192 |
#ifdef __SYMBIAN32__
|
sl@0
|
193 |
testResultXml("bookmarkfile-test");
|
sl@0
|
194 |
#endif /* EMULATOR */
|
sl@0
|
195 |
return test_file (argv[1]);
|
sl@0
|
196 |
}
|
sl@0
|
197 |
else
|
sl@0
|
198 |
{
|
sl@0
|
199 |
fprintf (stderr, "Usage: bookmarkfile-test <bookmarkfile>\n");
|
sl@0
|
200 |
#ifdef __SYMBIAN32__
|
sl@0
|
201 |
testResultXml("bookmarkfile-test");
|
sl@0
|
202 |
#endif /* EMULATOR */
|
sl@0
|
203 |
|
sl@0
|
204 |
return 1;
|
sl@0
|
205 |
}
|
sl@0
|
206 |
}
|