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
|
/* test-util.c
*
* Copyright (C) 2017 Christian Hergert <chergert@redhat.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <dazzle.h>
#include "util/dzl-util-private.h"
static void
test_action_parsing (void)
{
struct {
const gchar *input;
const gchar *expected_prefix;
const gchar *expected_name;
const gchar *expected_target;
} simple_tests[] = {
{ "app.foobar", "app", "foobar", NULL },
{ "win.foo", "win", "foo", NULL },
{ "win.foo::1", "win", "foo", "'1'" },
{ "win.foo(1)", "win", "foo", "1" },
};
for (guint i = 0; i < G_N_ELEMENTS (simple_tests); i++)
{
g_autofree gchar *prefix = NULL;
g_autofree gchar *name = NULL;
g_autoptr(GVariant) target = NULL;
if (!dzl_g_action_name_parse_full (simple_tests[i].input, &prefix, &name, &target))
g_error ("Failed to parse %s", simple_tests[i].input);
g_assert_cmpstr (prefix, ==, simple_tests[i].expected_prefix);
g_assert_cmpstr (name, ==, simple_tests[i].expected_name);
if (simple_tests[i].expected_target)
{
g_autoptr(GVariant) expected_target = g_variant_parse (NULL,
simple_tests[i].expected_target,
NULL, NULL, NULL);
if (!g_variant_equal (expected_target, target))
{
g_printerr ("Expected: %s\n", g_variant_print (expected_target, TRUE));
g_printerr ("Actual: %s\n", g_variant_print (target, TRUE));
g_assert_not_reached ();
}
}
}
}
gint
main (gint argc,
gchar *argv[])
{
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/Util/Action/parse", test_action_parsing);
return g_test_run ();
}
|