[kdbus] KDBUS_ITEM_PAYLOAD_OFF items are (once again) relative to msg header
[platform/upstream/glib.git] / gio / tests / contenttype.c
1 #include <gio/gio.h>
2 #include <string.h>
3
4 #define g_assert_content_type_equals(s1, s2)                    \
5   do {                                                          \
6     const char *__s1 = (s1), *__s2 = (s2);                      \
7     if (g_content_type_equals (__s1, __s2)) ;                   \
8     else                                                        \
9       g_assertion_message_cmpstr (G_LOG_DOMAIN,                 \
10                                   __FILE__, __LINE__,           \
11                                   G_STRFUNC,                    \
12                                   #s1 " == " #s2,               \
13                                   __s1, " == ", __s2);          \
14   } while (0)
15
16 static void
17 test_guess (void)
18 {
19   gchar *res;
20   gchar *expected;
21   gboolean uncertain;
22   guchar data[] =
23     "[Desktop Entry]\n"
24     "Type=Application\n"
25     "Name=appinfo-test\n"
26     "Exec=./appinfo-test --option\n";
27
28   res = g_content_type_guess ("/etc/", NULL, 0, &uncertain);
29   expected = g_content_type_from_mime_type ("inode/directory");
30   g_assert_content_type_equals (expected, res);
31   g_assert (uncertain);
32   g_free (res);
33   g_free (expected);
34
35   res = g_content_type_guess ("foo.txt", NULL, 0, &uncertain);
36   expected = g_content_type_from_mime_type ("text/plain");
37   g_assert_content_type_equals (expected, res);
38   g_free (res);
39   g_free (expected);
40
41   res = g_content_type_guess ("foo.desktop", data, sizeof (data) - 1, &uncertain);
42   expected = g_content_type_from_mime_type ("application/x-desktop");
43   g_assert_content_type_equals (expected, res);
44   g_assert (!uncertain);
45   g_free (res);
46   g_free (expected);
47
48   res = g_content_type_guess ("foo.txt", data, sizeof (data) - 1, &uncertain);
49   expected = g_content_type_from_mime_type ("text/plain");
50   g_assert_content_type_equals (expected, res);
51   g_assert (!uncertain);
52   g_free (res);
53   g_free (expected);
54
55   res = g_content_type_guess ("foo", data, sizeof (data) - 1, &uncertain);
56   expected = g_content_type_from_mime_type ("text/plain");
57   g_assert_content_type_equals (expected, res);
58   g_assert (!uncertain);
59   g_free (res);
60   g_free (expected);
61
62   res = g_content_type_guess (NULL, data, sizeof (data) - 1, &uncertain);
63   expected = g_content_type_from_mime_type ("application/x-desktop");
64   g_assert_content_type_equals (expected, res);
65   g_assert (!uncertain);
66   g_free (res);
67   g_free (expected);
68
69   /* this is potentially ambiguous: it does not match the PO template format,
70    * but looks like text so it can't be Powerpoint */
71   res = g_content_type_guess ("test.pot", (guchar *)"ABC abc", 7, &uncertain);
72   expected = g_content_type_from_mime_type ("text/x-gettext-translation-template");
73   g_assert_content_type_equals (expected, res);
74   g_assert (!uncertain);
75   g_free (res);
76   g_free (expected);
77
78   res = g_content_type_guess ("test.pot", (guchar *)"msgid \"", 7, &uncertain);
79   expected = g_content_type_from_mime_type ("text/x-gettext-translation-template");
80   g_assert_content_type_equals (expected, res);
81   g_assert (!uncertain);
82   g_free (res);
83   g_free (expected);
84
85   res = g_content_type_guess ("test.pot", (guchar *)"\xCF\xD0\xE0\x11", 4, &uncertain);
86   expected = g_content_type_from_mime_type ("application/vnd.ms-powerpoint");
87   g_assert_content_type_equals (expected, res);
88   /* we cannot reliably detect binary powerpoint files as long as there is no
89    * defined MIME magic, so do not check uncertain here
90    */
91   g_free (res);
92   g_free (expected);
93
94   res = g_content_type_guess ("test.otf", (guchar *)"OTTO", 4, &uncertain);
95   expected = g_content_type_from_mime_type ("application/x-font-otf");
96   g_assert_content_type_equals (expected, res);
97   g_assert (!uncertain);
98   g_free (res);
99   g_free (expected);
100
101   res = g_content_type_guess (NULL, (guchar *)"%!PS-Adobe-2.0 EPSF-1.2", 23, &uncertain);
102   expected = g_content_type_from_mime_type ("image/x-eps");
103   g_assert_content_type_equals (expected, res);
104   g_assert (!uncertain);
105   g_free (res);
106   g_free (expected);
107 }
108
109 static void
110 test_unknown (void)
111 {
112   gchar *unknown;
113   gchar *str;
114
115   unknown = g_content_type_from_mime_type ("application/octet-stream");
116   g_assert (g_content_type_is_unknown (unknown));
117   str = g_content_type_get_mime_type (unknown);
118   g_assert_cmpstr (str, ==, "application/octet-stream");
119   g_free (str);
120   g_free (unknown);
121 }
122
123 static void
124 test_subtype (void)
125 {
126   gchar *plain;
127   gchar *xml;
128
129   plain = g_content_type_from_mime_type ("text/plain");
130   xml = g_content_type_from_mime_type ("application/xml");
131
132   g_assert (g_content_type_is_a (xml, plain));
133
134   g_free (plain);
135   g_free (xml);
136 }
137
138 static gint
139 find_mime (gconstpointer a, gconstpointer b)
140 {
141   if (g_content_type_equals (a, b))
142     return 0;
143   return 1;
144 }
145
146 static void
147 test_list (void)
148 {
149   GList *types;
150   gchar *plain;
151   gchar *xml;
152
153   plain = g_content_type_from_mime_type ("text/plain");
154   xml = g_content_type_from_mime_type ("application/xml");
155
156   types = g_content_types_get_registered ();
157
158   g_assert (g_list_length (types) > 1);
159
160   /* just check that some types are in the list */
161   g_assert (g_list_find_custom (types, plain, find_mime) != NULL);
162   g_assert (g_list_find_custom (types, xml, find_mime) != NULL);
163
164   g_list_free_full (types, g_free);
165
166   g_free (plain);
167   g_free (xml);
168 }
169
170 static void
171 test_executable (void)
172 {
173   gchar *type;
174
175   type = g_content_type_from_mime_type ("application/x-executable");
176   g_assert (g_content_type_can_be_executable (type));
177   g_free (type);
178
179   type = g_content_type_from_mime_type ("text/plain");
180   g_assert (g_content_type_can_be_executable (type));
181   g_free (type);
182
183   type = g_content_type_from_mime_type ("image/png");
184   g_assert (!g_content_type_can_be_executable (type));
185   g_free (type);
186 }
187
188 static void
189 test_description (void)
190 {
191   gchar *type;
192   gchar *desc;
193
194   type = g_content_type_from_mime_type ("text/plain");
195   desc = g_content_type_get_description (type);
196   g_assert (desc != NULL);
197
198   g_free (desc);
199   g_free (type);
200 }
201
202 static void
203 test_icon (void)
204 {
205   gchar *type;
206   GIcon *icon;
207
208   type = g_content_type_from_mime_type ("text/plain");
209   icon = g_content_type_get_icon (type);
210   g_assert (G_IS_ICON (icon));
211   if (G_IS_THEMED_ICON (icon))
212     {
213       const gchar *const *names;
214
215       names = g_themed_icon_get_names (G_THEMED_ICON (icon));
216       g_assert (g_strv_contains (names, "text-plain"));
217       g_assert (g_strv_contains (names, "text-x-generic"));
218     }
219   g_object_unref (icon);
220   g_free (type);
221
222   type = g_content_type_from_mime_type ("application/rtf");
223   icon = g_content_type_get_icon (type);
224   g_assert (G_IS_ICON (icon));
225   if (G_IS_THEMED_ICON (icon))
226     {
227       const gchar *const *names;
228
229       names = g_themed_icon_get_names (G_THEMED_ICON (icon));
230       g_assert (g_strv_contains (names, "application-rtf"));
231       g_assert (g_strv_contains (names, "x-office-document"));
232     }
233   g_object_unref (icon);
234   g_free (type);
235 }
236
237 static void
238 test_symbolic_icon (void)
239 {
240   gchar *type;
241   GIcon *icon;
242
243   type = g_content_type_from_mime_type ("text/plain");
244   icon = g_content_type_get_symbolic_icon (type);
245   g_assert (G_IS_ICON (icon));
246   if (G_IS_THEMED_ICON (icon))
247     {
248       const gchar *const *names;
249
250       names = g_themed_icon_get_names (G_THEMED_ICON (icon));
251       g_assert (g_strv_contains (names, "text-plain-symbolic"));
252       g_assert (g_strv_contains (names, "text-x-generic-symbolic"));
253       g_assert (g_strv_contains (names, "text-plain"));
254       g_assert (g_strv_contains (names, "text-x-generic"));
255     }
256   g_object_unref (icon);
257   g_free (type);
258
259   type = g_content_type_from_mime_type ("application/rtf");
260   icon = g_content_type_get_symbolic_icon (type);
261   g_assert (G_IS_ICON (icon));
262   if (G_IS_THEMED_ICON (icon))
263     {
264       const gchar *const *names;
265
266       names = g_themed_icon_get_names (G_THEMED_ICON (icon));
267       g_assert (g_strv_contains (names, "application-rtf-symbolic"));
268       g_assert (g_strv_contains (names, "x-office-document-symbolic"));
269       g_assert (g_strv_contains (names, "application-rtf"));
270       g_assert (g_strv_contains (names, "x-office-document"));
271     }
272   g_object_unref (icon);
273   g_free (type);
274 }
275
276 static void
277 test_tree (void)
278 {
279   const gchar *tests[] = {
280     "x-content/image-dcf",
281     "x-content/unix-software",
282     "x-content/win32-software"
283   };
284   const gchar *path;
285   GFile *file;
286   gchar **types;
287   gint i;
288
289   for (i = 0; i < G_N_ELEMENTS (tests); i++)
290     {
291       path = g_test_get_filename (G_TEST_DIST, tests[i], NULL);
292       file = g_file_new_for_path (path);
293       types = g_content_type_guess_for_tree (file);
294       g_assert_content_type_equals (types[0], tests[i]);
295       g_strfreev (types);
296       g_object_unref (file);
297    }
298 }
299
300 int
301 main (int argc, char *argv[])
302 {
303   g_test_init (&argc, &argv, NULL);
304
305   g_test_add_func ("/contenttype/guess", test_guess);
306   g_test_add_func ("/contenttype/unknown", test_unknown);
307   g_test_add_func ("/contenttype/subtype", test_subtype);
308   g_test_add_func ("/contenttype/list", test_list);
309   g_test_add_func ("/contenttype/executable", test_executable);
310   g_test_add_func ("/contenttype/description", test_description);
311   g_test_add_func ("/contenttype/icon", test_icon);
312   g_test_add_func ("/contenttype/symbolic-icon", test_symbolic_icon);
313   g_test_add_func ("/contenttype/tree", test_tree);
314
315   return g_test_run ();
316 }