First public contribution.
2 * Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
4 #undef G_DISABLE_ASSERT
13 #include "mrt2_glib2_test.h"
14 #endif /*__SYMBIAN32__*/
16 #define TEST_URI_0 "file:///abc/defgh/ijklmnopqrstuvwxyz"
17 #define TEST_URI_1 "file:///test/uri/1"
18 #define TEST_URI_2 "file:///test/uri/2"
20 #define TEST_MIME "text/plain"
22 #define TEST_APP_NAME "bookmarkfile-test"
23 #define TEST_APP_EXEC "bookmarkfile-test %f"
26 test_load (GBookmarkFile *bookmark,
27 const gchar *filename)
32 res = g_bookmark_file_load_from_file (bookmark, filename, &error);
35 g_print ("Load error: %s\n", error->message);
43 test_query (GBookmarkFile *bookmark)
50 size = g_bookmark_file_get_size (bookmark);
51 uris = g_bookmark_file_get_uris (bookmark, &uris_len);
55 g_print ("URI/size mismatch: URI count is %d (should be %d)\n", uris_len, size);
60 for (i = 0; i < uris_len; i++)
61 if (!g_bookmark_file_has_item (bookmark, uris[i]))
63 g_print ("URI/bookmark mismatch: bookmark for '%s' does not exist\n", uris[i]);
74 test_modify (GBookmarkFile *bookmark)
81 g_print ("\t=> check global title/description...");
82 g_bookmark_file_set_title (bookmark, NULL, "a file");
83 g_bookmark_file_set_description (bookmark, NULL, "a bookmark file");
85 text = g_bookmark_file_get_title (bookmark, NULL, &error);
86 g_assert_no_error (error);
87 g_assert_cmpstr (text, ==, "a file");
90 text = g_bookmark_file_get_description (bookmark, NULL, &error);
91 g_assert_no_error (error);
92 g_assert_cmpstr (text, ==, "a bookmark file");
96 g_print ("\t=> check bookmark title/description...");
97 g_bookmark_file_set_title (bookmark, TEST_URI_0, "a title");
98 g_bookmark_file_set_description (bookmark, TEST_URI_0, "a description");
100 text = g_bookmark_file_get_title (bookmark, TEST_URI_0, &error);
101 g_assert_no_error (error);
102 g_assert_cmpstr (text, ==, "a title");
106 g_print ("\t=> check non existing bookmark...");
107 g_bookmark_file_get_description (bookmark, TEST_URI_1, &error);
108 g_assert_error (error, G_BOOKMARK_FILE_ERROR, G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND);
109 g_clear_error (&error);
112 g_print ("\t=> check application...");
113 g_bookmark_file_set_mime_type (bookmark, TEST_URI_0, TEST_MIME);
114 g_bookmark_file_add_application (bookmark, TEST_URI_0,
117 g_assert (g_bookmark_file_has_application (bookmark, TEST_URI_0, TEST_APP_NAME, NULL) == TRUE);
118 g_bookmark_file_get_app_info (bookmark, TEST_URI_0, TEST_APP_NAME,
123 g_assert_no_error (error);
124 g_assert (count == 1);
125 g_assert (stamp == g_bookmark_file_get_modified (bookmark, TEST_URI_0, NULL));
128 g_bookmark_file_get_app_info (bookmark, TEST_URI_0, "fail",
133 g_assert_error (error, G_BOOKMARK_FILE_ERROR, G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED);
134 g_clear_error (&error);
137 g_print ("\t=> check groups...");
138 g_bookmark_file_add_group (bookmark, TEST_URI_1, "Test");
139 g_assert (g_bookmark_file_has_group (bookmark, TEST_URI_1, "Test", NULL) == TRUE);
140 g_assert (g_bookmark_file_has_group (bookmark, TEST_URI_1, "Fail", NULL) == FALSE);
143 g_print ("\t=> check remove...");
144 g_assert (g_bookmark_file_remove_item (bookmark, TEST_URI_1, &error) == TRUE);
145 g_assert_no_error (error);
146 g_assert (g_bookmark_file_remove_item (bookmark, TEST_URI_1, &error) == FALSE);
147 g_assert_error (error, G_BOOKMARK_FILE_ERROR, G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND);
148 g_clear_error (&error);
155 test_file (const gchar *filename)
157 GBookmarkFile *bookmark_file;
160 g_return_val_if_fail (filename != NULL, 1);
162 g_print ("checking GBookmarkFile...\n");
164 bookmark_file = g_bookmark_file_new ();
165 g_assert (bookmark_file != NULL);
167 success = test_load (bookmark_file, filename);
171 success = test_query (bookmark_file);
172 success = test_modify (bookmark_file);
175 g_bookmark_file_free (bookmark_file);
179 return (success == TRUE ? 0 : 1);
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);
188 g_set_print_handler(mrtPrintHandler);
189 #endif /*__SYMBIAN32__*/
193 testResultXml("bookmarkfile-test");
194 #endif /* EMULATOR */
195 return test_file (argv[1]);
199 fprintf (stderr, "Usage: bookmarkfile-test <bookmarkfile>\n");
201 testResultXml("bookmarkfile-test");
202 #endif /* EMULATOR */