X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Ftests%2Fcontenttype.c;h=71888944d4f82d2843f3a38017e0ea5ce71c2ea0;hb=HEAD;hp=ca5dfe8c047f9636efc94a18553d6148ee061642;hpb=cfc2fe7a2ac92a436518846b1210afeeb104fb63;p=profile%2Fivi%2Fglib2.git diff --git a/gio/tests/contenttype.c b/gio/tests/contenttype.c index ca5dfe8..7188894 100644 --- a/gio/tests/contenttype.c +++ b/gio/tests/contenttype.c @@ -1,4 +1,5 @@ #include +#include static void test_guess (void) @@ -6,16 +7,65 @@ test_guess (void) gchar *res; gchar *expected; gboolean uncertain; + guchar data[] = + "[Desktop Entry]\n" + "Type=Application\n" + "Name=appinfo-test\n" + "Exec=./appinfo-test --option\n"; res = g_content_type_guess ("/etc/", NULL, 0, &uncertain); expected = g_content_type_from_mime_type ("inode/directory"); g_assert (g_content_type_equals (expected, res)); + g_assert (uncertain); g_free (res); g_free (expected); res = g_content_type_guess ("foo.txt", NULL, 0, &uncertain); expected = g_content_type_from_mime_type ("text/plain"); g_assert (g_content_type_equals (expected, res)); + g_assert (!uncertain); + g_free (res); + g_free (expected); + + res = g_content_type_guess ("foo.desktop", data, sizeof (data) - 1, &uncertain); + expected = g_content_type_from_mime_type ("application/x-desktop"); + g_assert (g_content_type_equals (expected, res)); + g_assert (!uncertain); + g_free (res); + g_free (expected); + + res = g_content_type_guess ("foo.txt", data, sizeof (data) - 1, &uncertain); + expected = g_content_type_from_mime_type ("text/plain"); + g_assert (g_content_type_equals (expected, res)); + g_assert (!uncertain); + g_free (res); + g_free (expected); + + res = g_content_type_guess ("foo", data, sizeof (data) - 1, &uncertain); + expected = g_content_type_from_mime_type ("text/plain"); + g_assert (g_content_type_equals (expected, res)); + g_assert (!uncertain); + g_free (res); + g_free (expected); + + res = g_content_type_guess (NULL, data, sizeof (data) - 1, &uncertain); + expected = g_content_type_from_mime_type ("application/x-desktop"); + g_assert (g_content_type_equals (expected, res)); + g_assert (!uncertain); + g_free (res); + g_free (expected); + + res = g_content_type_guess ("test.pot", (guchar *)"ABC abc", -1, &uncertain); + expected = g_content_type_from_mime_type ("application/vnd.ms-powerpoint"); + g_assert (g_content_type_equals (expected, res)); + g_assert (uncertain); + g_free (res); + g_free (expected); + + res = g_content_type_guess ("test.otf", (guchar *)"OTTO", -1, &uncertain); + expected = g_content_type_from_mime_type ("application/x-font-otf"); + g_assert (g_content_type_equals (expected, res)); + g_assert (!uncertain); g_free (res); g_free (expected); } @@ -113,6 +163,26 @@ test_description (void) g_free (type); } +static void +test_icon (void) +{ + gchar *type; + GIcon *icon; + + type = g_content_type_from_mime_type ("text/plain"); + icon = g_content_type_get_icon (type); + g_assert (G_IS_ICON (icon)); + g_object_unref (icon); + g_free (type); + + type = g_content_type_from_mime_type ("application/rtf"); + icon = g_content_type_get_icon (type); + g_assert (G_IS_ICON (icon)); + g_object_unref (icon); + g_free (type); +} + + int main (int argc, char *argv[]) { @@ -126,6 +196,7 @@ main (int argc, char *argv[]) g_test_add_func ("/contenttype/list", test_list); g_test_add_func ("/contenttype/executable", test_executable); g_test_add_func ("/contenttype/description", test_description); + g_test_add_func ("/contenttype/icon", test_icon); return g_test_run (); }