1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*-
*
* Copyright (C) 2012-2014 Matthias Klumpp <matthias@tenstral.net>
*
* Licensed under the GNU Lesser General Public License Version 2.1
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2.1 of the license, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <glib.h>
#include "appstream.h"
static gchar *datadir = NULL;
void
test_menuparser ()
{
AsMenuParser *parser;
GList *menu_dirs;
gchar *path;
path = g_build_filename (datadir, "categories.xml", NULL);
parser = as_menu_parser_new_from_file (path);
g_free (path);
menu_dirs = as_menu_parser_parse (parser);
g_assert (g_list_length (menu_dirs) > 4);
g_object_unref (parser);
g_list_free (menu_dirs);
}
void
test_simplemarkup ()
{
gchar *str;
str = as_description_markup_convert_simple ("<p>Test!</p><p>Blah.</p><ul><li>A</li><li>B</li></ul><p>End.</p>");
g_debug ("%s", str);
g_assert (g_strcmp0 (str, "Test!\n\nBlah.\n • A\n • B\n\nEnd.") == 0);
g_free (str);
}
gchar**
_get_dummy_strv (const gchar *value)
{
gchar **strv;
strv = g_new0 (gchar*, 1 + 2);
strv[0] = g_strdup (value);
strv[1] = NULL;
return strv;
}
void
test_component ()
{
AsComponent *cpt;
gchar *str;
gchar **strv;
cpt = as_component_new ();
as_component_set_kind (cpt, AS_COMPONENT_KIND_DESKTOP_APP);
as_component_set_name (cpt, "Test");
as_component_set_summary (cpt, "It does things");
strv = _get_dummy_strv ("fedex");
as_component_set_pkgnames (cpt, strv);
g_strfreev (strv);
str = as_component_to_xml (cpt);
g_debug ("%s", str);
g_assert (g_strcmp0 (str, "<?xml version=\"1.0\"?>\n<component type=\"desktop\"><name>Test</name><summary>It does things</summary><pkgname>fedex</pkgname></component>\n") == 0);
g_free (str);
}
int
main (int argc, char **argv)
{
int ret;
if (argc == 0) {
g_error ("No test directory specified!");
return 1;
}
g_assert (argv[1] != NULL);
datadir = g_build_filename (argv[1], "data", NULL);
g_assert (g_file_test (datadir, G_FILE_TEST_EXISTS) != FALSE);
g_setenv ("G_MESSAGES_DEBUG", "all", TRUE);
g_test_init (&argc, &argv, NULL);
/* only critical and error are fatal */
g_log_set_fatal_mask (NULL, G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL);
g_test_add_func ("/AppStream/MenuParser", test_menuparser);
g_test_add_func ("/AppStream/SimpleMarkupConvert", test_simplemarkup);
g_test_add_func ("/AppStream/Component", test_component);
ret = g_test_run ();
g_free (datadir);
return ret;
}
|