mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 01:58:54 +01:00 
			
		
		
		
	Include the base URI in the `g_test_bug()` calls instead. This resolves inconsistencies between the old bug base (bugzilla.gnome.org) and the new bug base (gitlab.gnome.org). It also has the advantage that the URI passed to `g_test_bug()` is now clickable in the code editor, rather than being split across two locations. See https://gitlab.gnome.org/GNOME/glib/-/merge_requests/275#note_303175 Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
		
			
				
	
	
		
			482 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			482 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include <gio/gio.h>
 | 
						||
#include <string.h>
 | 
						||
 | 
						||
#include "glib/glib-private.h"
 | 
						||
 | 
						||
#define g_assert_content_type_equals(s1, s2) 			\
 | 
						||
  do { 								\
 | 
						||
    const char *__s1 = (s1), *__s2 = (s2); 			\
 | 
						||
    if (g_content_type_equals (__s1, __s2)) ;		 	\
 | 
						||
    else 							\
 | 
						||
      g_assertion_message_cmpstr (G_LOG_DOMAIN, 		\
 | 
						||
                                  __FILE__, __LINE__, 		\
 | 
						||
                                  G_STRFUNC, 			\
 | 
						||
                                  #s1 " == " #s2, 		\
 | 
						||
                                  __s1, " == ", __s2); 		\
 | 
						||
  } while (0)
 | 
						||
 | 
						||
static void
 | 
						||
test_guess (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#else
 | 
						||
  gchar *res;
 | 
						||
  gchar *expected;
 | 
						||
  gchar *existing_directory;
 | 
						||
  gboolean uncertain;
 | 
						||
  guchar data[] =
 | 
						||
    "[Desktop Entry]\n"
 | 
						||
    "Type=Application\n"
 | 
						||
    "Name=appinfo-test\n"
 | 
						||
    "Exec=./appinfo-test --option\n";
 | 
						||
 | 
						||
#ifdef G_OS_WIN32
 | 
						||
  existing_directory = (gchar *) g_getenv ("SYSTEMROOT");
 | 
						||
 | 
						||
  if (existing_directory)
 | 
						||
    existing_directory = g_strdup_printf ("%s/", existing_directory);
 | 
						||
#else
 | 
						||
  existing_directory = g_strdup ("/etc/");
 | 
						||
#endif
 | 
						||
 | 
						||
  res = g_content_type_guess (existing_directory, NULL, 0, &uncertain);
 | 
						||
  g_free (existing_directory);
 | 
						||
  expected = g_content_type_from_mime_type ("inode/directory");
 | 
						||
  g_assert_content_type_equals (expected, res);
 | 
						||
  g_assert_true (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_content_type_equals (expected, res);
 | 
						||
  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_content_type_equals (expected, res);
 | 
						||
  g_assert_false (uncertain);
 | 
						||
  g_free (res);
 | 
						||
  g_free (expected);
 | 
						||
 | 
						||
  /* Sadly OSX just doesn't have as large and robust of a mime type database as Linux */
 | 
						||
#ifndef __APPLE__
 | 
						||
  res = g_content_type_guess ("foo", data, sizeof (data) - 1, &uncertain);
 | 
						||
  expected = g_content_type_from_mime_type ("text/plain");
 | 
						||
  g_assert_content_type_equals (expected, res);
 | 
						||
  g_assert_false (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_content_type_equals (expected, res);
 | 
						||
  g_assert_false (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_content_type_equals (expected, res);
 | 
						||
  g_assert_false (uncertain);
 | 
						||
  g_free (res);
 | 
						||
  g_free (expected);
 | 
						||
 | 
						||
  /* this is potentially ambiguous: it does not match the PO template format,
 | 
						||
   * but looks like text so it can't be Powerpoint */
 | 
						||
  res = g_content_type_guess ("test.pot", (guchar *)"ABC abc", 7, &uncertain);
 | 
						||
  expected = g_content_type_from_mime_type ("text/x-gettext-translation-template");
 | 
						||
  g_assert_content_type_equals (expected, res);
 | 
						||
  g_assert_false (uncertain);
 | 
						||
  g_free (res);
 | 
						||
  g_free (expected);
 | 
						||
 | 
						||
  res = g_content_type_guess ("test.pot", (guchar *)"msgid \"", 7, &uncertain);
 | 
						||
  expected = g_content_type_from_mime_type ("text/x-gettext-translation-template");
 | 
						||
  g_assert_content_type_equals (expected, res);
 | 
						||
  g_assert_false (uncertain);
 | 
						||
  g_free (res);
 | 
						||
  g_free (expected);
 | 
						||
 | 
						||
  res = g_content_type_guess ("test.pot", (guchar *)"\xCF\xD0\xE0\x11", 4, &uncertain);
 | 
						||
  expected = g_content_type_from_mime_type ("application/vnd.ms-powerpoint");
 | 
						||
  g_assert_content_type_equals (expected, res);
 | 
						||
  /* we cannot reliably detect binary powerpoint files as long as there is no
 | 
						||
   * defined MIME magic, so do not check uncertain here
 | 
						||
   */
 | 
						||
  g_free (res);
 | 
						||
  g_free (expected);
 | 
						||
 | 
						||
  res = g_content_type_guess ("test.otf", (guchar *)"OTTO", 4, &uncertain);
 | 
						||
  expected = g_content_type_from_mime_type ("application/x-font-otf");
 | 
						||
  g_assert_content_type_equals (expected, res);
 | 
						||
  g_assert_false (uncertain);
 | 
						||
  g_free (res);
 | 
						||
  g_free (expected);
 | 
						||
#endif
 | 
						||
 | 
						||
  res = g_content_type_guess (NULL, (guchar *)"%!PS-Adobe-2.0 EPSF-1.2", 23, &uncertain);
 | 
						||
  expected = g_content_type_from_mime_type ("image/x-eps");
 | 
						||
  g_assert_content_type_equals (expected, res);
 | 
						||
  g_assert_false (uncertain);
 | 
						||
  g_free (res);
 | 
						||
  g_free (expected);
 | 
						||
 | 
						||
  /* The data below would be detected as a valid content type, but shouldn’t be read at all. */
 | 
						||
  res = g_content_type_guess (NULL, (guchar *)"%!PS-Adobe-2.0 EPSF-1.2", 0, &uncertain);
 | 
						||
  expected = g_content_type_from_mime_type ("application/x-zerosize");
 | 
						||
  g_assert_content_type_equals (expected, res);
 | 
						||
  g_assert_false (uncertain);
 | 
						||
  g_free (res);
 | 
						||
  g_free (expected);
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_unknown (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#else
 | 
						||
  gchar *unknown;
 | 
						||
  gchar *str;
 | 
						||
 | 
						||
  unknown = g_content_type_from_mime_type ("application/octet-stream");
 | 
						||
  g_assert_true (g_content_type_is_unknown (unknown));
 | 
						||
  str = g_content_type_get_mime_type (unknown);
 | 
						||
  g_assert_cmpstr (str, ==, "application/octet-stream");
 | 
						||
  g_free (str);
 | 
						||
  g_free (unknown);
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_subtype (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#else
 | 
						||
  gchar *plain;
 | 
						||
  gchar *xml;
 | 
						||
 | 
						||
  plain = g_content_type_from_mime_type ("text/plain");
 | 
						||
  xml = g_content_type_from_mime_type ("application/xml");
 | 
						||
 | 
						||
  g_assert_true (g_content_type_is_a (xml, plain));
 | 
						||
  g_assert_true (g_content_type_is_mime_type (xml, "text/plain"));
 | 
						||
 | 
						||
  g_free (plain);
 | 
						||
  g_free (xml);
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static gint
 | 
						||
find_mime (gconstpointer a, gconstpointer b)
 | 
						||
{
 | 
						||
  if (g_content_type_equals (a, b))
 | 
						||
    return 0;
 | 
						||
  return 1;
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_list (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
  (void) find_mime;
 | 
						||
#else
 | 
						||
  GList *types;
 | 
						||
  gchar *plain;
 | 
						||
  gchar *xml;
 | 
						||
 | 
						||
#ifdef __APPLE__
 | 
						||
  g_test_skip ("The OSX backend does not implement g_content_types_get_registered()");
 | 
						||
  return;
 | 
						||
#endif
 | 
						||
 | 
						||
  plain = g_content_type_from_mime_type ("text/plain");
 | 
						||
  xml = g_content_type_from_mime_type ("application/xml");
 | 
						||
 | 
						||
  types = g_content_types_get_registered ();
 | 
						||
 | 
						||
  g_assert_cmpuint (g_list_length (types), >, 1);
 | 
						||
 | 
						||
  /* just check that some types are in the list */
 | 
						||
  g_assert_nonnull (g_list_find_custom (types, plain, find_mime));
 | 
						||
  g_assert_nonnull (g_list_find_custom (types, xml, find_mime));
 | 
						||
 | 
						||
  g_list_free_full (types, g_free);
 | 
						||
 | 
						||
  g_free (plain);
 | 
						||
  g_free (xml);
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_executable (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#else
 | 
						||
  gchar *type;
 | 
						||
 | 
						||
  type = g_content_type_from_mime_type ("application/x-executable");
 | 
						||
  g_assert_true (g_content_type_can_be_executable (type));
 | 
						||
  g_free (type);
 | 
						||
 | 
						||
  type = g_content_type_from_mime_type ("text/plain");
 | 
						||
  g_assert_true (g_content_type_can_be_executable (type));
 | 
						||
  g_free (type);
 | 
						||
 | 
						||
  type = g_content_type_from_mime_type ("image/png");
 | 
						||
  g_assert_false (g_content_type_can_be_executable (type));
 | 
						||
  g_free (type);
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_description (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#else
 | 
						||
  gchar *type;
 | 
						||
  gchar *desc;
 | 
						||
 | 
						||
  type = g_content_type_from_mime_type ("text/plain");
 | 
						||
  desc = g_content_type_get_description (type);
 | 
						||
  g_assert_nonnull (desc);
 | 
						||
 | 
						||
  g_free (desc);
 | 
						||
  g_free (type);
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_icon (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#else
 | 
						||
  gchar *type;
 | 
						||
  GIcon *icon;
 | 
						||
 | 
						||
  type = g_content_type_from_mime_type ("text/plain");
 | 
						||
  icon = g_content_type_get_icon (type);
 | 
						||
  g_assert_true (G_IS_ICON (icon));
 | 
						||
  if (G_IS_THEMED_ICON (icon))
 | 
						||
    {
 | 
						||
      const gchar *const *names;
 | 
						||
 | 
						||
      names = g_themed_icon_get_names (G_THEMED_ICON (icon));
 | 
						||
#ifdef __APPLE__
 | 
						||
      g_assert_true (g_strv_contains (names, "text-*"));
 | 
						||
#else
 | 
						||
      g_assert_true (g_strv_contains (names, "text-plain"));
 | 
						||
      g_assert_true (g_strv_contains (names, "text-x-generic"));
 | 
						||
#endif
 | 
						||
    }
 | 
						||
  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_true (G_IS_ICON (icon));
 | 
						||
  if (G_IS_THEMED_ICON (icon))
 | 
						||
    {
 | 
						||
      const gchar *const *names;
 | 
						||
 | 
						||
      names = g_themed_icon_get_names (G_THEMED_ICON (icon));
 | 
						||
      g_assert_true (g_strv_contains (names, "application-rtf"));
 | 
						||
#ifndef __APPLE__
 | 
						||
      g_assert_true (g_strv_contains (names, "x-office-document"));
 | 
						||
#endif
 | 
						||
    }
 | 
						||
  g_object_unref (icon);
 | 
						||
  g_free (type);
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_symbolic_icon (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#elif !defined(G_OS_WIN32)
 | 
						||
  gchar *type;
 | 
						||
  GIcon *icon;
 | 
						||
 | 
						||
  type = g_content_type_from_mime_type ("text/plain");
 | 
						||
  icon = g_content_type_get_symbolic_icon (type);
 | 
						||
  g_assert_true (G_IS_ICON (icon));
 | 
						||
  if (G_IS_THEMED_ICON (icon))
 | 
						||
    {
 | 
						||
      const gchar *const *names;
 | 
						||
 | 
						||
      names = g_themed_icon_get_names (G_THEMED_ICON (icon));
 | 
						||
#ifdef __APPLE__
 | 
						||
      g_assert_true (g_strv_contains (names, "text-*-symbolic"));
 | 
						||
      g_assert_true (g_strv_contains (names, "text-*"));
 | 
						||
#else
 | 
						||
      g_assert_true (g_strv_contains (names, "text-plain-symbolic"));
 | 
						||
      g_assert_true (g_strv_contains (names, "text-x-generic-symbolic"));
 | 
						||
      g_assert_true (g_strv_contains (names, "text-plain"));
 | 
						||
      g_assert_true (g_strv_contains (names, "text-x-generic"));
 | 
						||
#endif
 | 
						||
    }
 | 
						||
  g_object_unref (icon);
 | 
						||
  g_free (type);
 | 
						||
 | 
						||
  type = g_content_type_from_mime_type ("application/rtf");
 | 
						||
  icon = g_content_type_get_symbolic_icon (type);
 | 
						||
  g_assert_true (G_IS_ICON (icon));
 | 
						||
  if (G_IS_THEMED_ICON (icon))
 | 
						||
    {
 | 
						||
      const gchar *const *names;
 | 
						||
 | 
						||
      names = g_themed_icon_get_names (G_THEMED_ICON (icon));
 | 
						||
      g_assert_true (g_strv_contains (names, "application-rtf-symbolic"));
 | 
						||
      g_assert_true (g_strv_contains (names, "application-rtf"));
 | 
						||
#ifndef __APPLE__
 | 
						||
      g_assert_true (g_strv_contains (names, "x-office-document-symbolic"));
 | 
						||
      g_assert_true (g_strv_contains (names, "x-office-document"));
 | 
						||
#endif
 | 
						||
    }
 | 
						||
  g_object_unref (icon);
 | 
						||
  g_free (type);
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_tree (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#else
 | 
						||
  const gchar *tests[] = {
 | 
						||
    "x-content/image-dcf",
 | 
						||
    "x-content/unix-software",
 | 
						||
    "x-content/win32-software"
 | 
						||
  };
 | 
						||
  const gchar *path;
 | 
						||
  GFile *file;
 | 
						||
  gchar **types;
 | 
						||
  gsize i;
 | 
						||
 | 
						||
#ifdef __APPLE__
 | 
						||
  g_test_skip ("The OSX backend does not implement g_content_type_guess_for_tree()");
 | 
						||
  return;
 | 
						||
#endif
 | 
						||
 | 
						||
  for (i = 0; i < G_N_ELEMENTS (tests); i++)
 | 
						||
    {
 | 
						||
      path = g_test_get_filename (G_TEST_DIST, tests[i], NULL);
 | 
						||
      file = g_file_new_for_path (path);
 | 
						||
      types = g_content_type_guess_for_tree (file);
 | 
						||
      g_assert_content_type_equals (types[0], tests[i]);
 | 
						||
      g_strfreev (types);
 | 
						||
      g_object_unref (file);
 | 
						||
   }
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_type_is_a_special_case (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#else
 | 
						||
  gboolean res;
 | 
						||
 | 
						||
  g_test_bug ("https://bugzilla.gnome.org/show_bug.cgi?id=782311");
 | 
						||
 | 
						||
  /* Everything but the inode type is application/octet-stream */
 | 
						||
  res = g_content_type_is_a ("inode/directory", "application/octet-stream");
 | 
						||
  g_assert_false (res);
 | 
						||
#ifndef __APPLE__
 | 
						||
  res = g_content_type_is_a ("anything", "application/octet-stream");
 | 
						||
  g_assert_true (res);
 | 
						||
#endif
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_guess_svg_from_data (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#else
 | 
						||
  const gchar svgfilecontent[] = "<svg  xmlns=\"http://www.w3.org/2000/svg\"\
 | 
						||
      xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n\
 | 
						||
    <rect x=\"10\" y=\"10\" height=\"100\" width=\"100\"\n\
 | 
						||
          style=\"stroke:#ff0000; fill: #0000ff\"/>\n\
 | 
						||
</svg>\n";
 | 
						||
 | 
						||
  gboolean uncertain = TRUE;
 | 
						||
  gchar *res = g_content_type_guess (NULL, (guchar *)svgfilecontent,
 | 
						||
                                     sizeof (svgfilecontent) - 1, &uncertain);
 | 
						||
#ifdef __APPLE__
 | 
						||
  g_assert_cmpstr (res, ==, "public.svg-image");
 | 
						||
#elif defined(G_OS_WIN32)
 | 
						||
  g_test_skip ("svg type detection from content is not implemented on WIN32");
 | 
						||
#else
 | 
						||
  g_assert_cmpstr (res, ==, "image/svg+xml");
 | 
						||
#endif
 | 
						||
  g_assert_false (uncertain);
 | 
						||
  g_free (res);
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
static void
 | 
						||
test_mime_from_content (void)
 | 
						||
{
 | 
						||
#ifdef _GLIB_ADDRESS_SANITIZER
 | 
						||
  g_test_incomplete ("FIXME: Leaks xdgmime internal data, see glib#2310");
 | 
						||
#elif defined(__APPLE__)
 | 
						||
  gchar *mime_type;
 | 
						||
  mime_type = g_content_type_get_mime_type ("com.microsoft.bmp");
 | 
						||
  g_assert_cmpstr (mime_type, ==, "image/bmp");
 | 
						||
  g_free (mime_type);
 | 
						||
  mime_type = g_content_type_get_mime_type ("com.compuserve.gif");
 | 
						||
  g_assert_cmpstr (mime_type, ==, "image/gif");
 | 
						||
  g_free (mime_type);
 | 
						||
  mime_type = g_content_type_get_mime_type ("public.png");
 | 
						||
  g_assert_cmpstr (mime_type, ==, "image/png");
 | 
						||
  g_free (mime_type);
 | 
						||
  mime_type = g_content_type_get_mime_type ("public.text");
 | 
						||
  g_assert_cmpstr (mime_type, ==, "text/*");
 | 
						||
  g_free (mime_type);
 | 
						||
  mime_type = g_content_type_get_mime_type ("public.svg-image");
 | 
						||
  g_assert_cmpstr (mime_type, ==, "image/svg+xml");
 | 
						||
  g_free (mime_type);
 | 
						||
#elif defined(G_OS_WIN32)
 | 
						||
  g_test_skip ("mime from content type test not implemented on WIN32");
 | 
						||
#else
 | 
						||
  g_test_skip ("mime from content type test not implemented on UNIX");
 | 
						||
#endif
 | 
						||
}
 | 
						||
 | 
						||
int
 | 
						||
main (int argc, char *argv[])
 | 
						||
{
 | 
						||
  g_test_init (&argc, &argv, NULL);
 | 
						||
 | 
						||
  g_test_add_func ("/contenttype/guess", test_guess);
 | 
						||
  g_test_add_func ("/contenttype/guess_svg_from_data", test_guess_svg_from_data);
 | 
						||
  g_test_add_func ("/contenttype/mime_from_content", test_mime_from_content);
 | 
						||
  g_test_add_func ("/contenttype/unknown", test_unknown);
 | 
						||
  g_test_add_func ("/contenttype/subtype", test_subtype);
 | 
						||
  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);
 | 
						||
  g_test_add_func ("/contenttype/symbolic-icon", test_symbolic_icon);
 | 
						||
  g_test_add_func ("/contenttype/tree", test_tree);
 | 
						||
  g_test_add_func ("/contenttype/test_type_is_a_special_case",
 | 
						||
                   test_type_is_a_special_case);
 | 
						||
 | 
						||
  return g_test_run ();
 | 
						||
}
 |