summaryrefslogtreecommitdiffstats
path: root/src/gs-self-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gs-self-test.c')
-rw-r--r--src/gs-self-test.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/gs-self-test.c b/src/gs-self-test.c
new file mode 100644
index 0000000..83fce99
--- /dev/null
+++ b/src/gs-self-test.c
@@ -0,0 +1,52 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ * vi:set noexpandtab tabstop=8 shiftwidth=8:
+ *
+ * Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include "config.h"
+
+#include "gnome-software-private.h"
+
+#include "gs-css.h"
+#include "gs-test.h"
+
+static void
+gs_css_func (void)
+{
+ const gchar *tmp;
+ gboolean ret;
+ g_autoptr(GError) error = NULL;
+ g_autoptr(GsCss) css = gs_css_new ();
+
+ /* no IDs */
+ ret = gs_css_parse (css, "border: 0;", &error);
+ g_assert_no_error (error);
+ g_assert (ret);
+ tmp = gs_css_get_markup_for_id (css, "tile");
+ g_assert_cmpstr (tmp, ==, "border: 0;");
+
+ /* with IDs */
+ ret = gs_css_parse (css, "#tile2{\nborder: 0;}\n#name {color: white;\n}", &error);
+ g_assert_no_error (error);
+ g_assert (ret);
+ tmp = gs_css_get_markup_for_id (css, "NotGoingToExist");
+ g_assert_cmpstr (tmp, ==, NULL);
+ tmp = gs_css_get_markup_for_id (css, "tile2");
+ g_assert_cmpstr (tmp, ==, "border: 0;");
+ tmp = gs_css_get_markup_for_id (css, "name");
+ g_assert_cmpstr (tmp, ==, "color: white;");
+}
+
+int
+main (int argc, char **argv)
+{
+ gs_test_init (&argc, &argv);
+
+ /* tests go here */
+ g_test_add_func ("/gnome-software/src/css", gs_css_func);
+
+ return g_test_run ();
+}