aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2018-11-02 00:04:53 +0100
committerThomas White <taw@bitwiz.me.uk>2018-11-02 00:04:53 +0100
commit8f4f7ade77fc5fd4f4988ff4b6d0830af0f602e7 (patch)
tree47a3eb9b5a43624bf9c9f206ec2f42364142ee7e
parent5fae6046219a3464c0ae216279ecb43bd1ff80e3 (diff)
Update json_test
-rw-r--r--tests/json_test.c67
-rw-r--r--tests/meson.build3
2 files changed, 9 insertions, 61 deletions
diff --git a/tests/json_test.c b/tests/json_test.c
index 96323cb..c255515 100644
--- a/tests/json_test.c
+++ b/tests/json_test.c
@@ -31,72 +31,19 @@
#include <json-glib/json-glib.h>
#include "../src/sc_parse.h"
-
-typedef struct {
- JsonNode *root;
-} Stylesheet;
-
-
-Stylesheet *stylesheet_load(const char *filename)
-{
- JsonParser *parser;
- gboolean r;
- GError *err = NULL;
- Stylesheet *ss;
-
- ss = calloc(1, sizeof(Stylesheet));
- if ( ss == NULL ) return NULL;
-
- parser = json_parser_new();
-
- r = json_parser_load_from_file(parser, filename, &err);
- if ( r == FALSE ) {
- fprintf(stderr, "Failed to load style sheet: '%s'\n", err->message);
- return NULL;
- }
-
- ss->root = json_parser_steal_root(parser);
- g_object_unref(parser);
-
- return ss;
-}
-
-
-char *stylesheet_lookup(Stylesheet *ss, const char *path)
-{
- JsonNode *node;
- JsonArray *array;
- GError *err = NULL;
- char *ret;
- const gchar *v;
-
- node = json_path_query(path, ss->root, &err);
- array = json_node_get_array(node);
-
- v = json_array_get_string_element(array, 0);
- if ( v == NULL ) return NULL;
-
- ret = strdup(v);
- json_node_unref(node);
- return ret;
-}
+#include "../src/stylesheet.h"
int main(int argc, char *argv[])
{
- SCBlock *bl;
Stylesheet *ss;
+ GFile *ssfile;
- ss = stylesheet_load("test.ss");
- printf("Frame background: '%s'\n", stylesheet_lookup(ss, "$.slide.frame.bgcol1"));
-
- bl = sc_parse("\\wibble{}\\f{wibble \\bg[muhu]{wobble\nwibble\nwabble}}\\frib[\\f] f");
- if ( bl == NULL ) {
- printf("Failed to parse SC\n");
- return 1;
- }
-
- show_sc_blocks(bl);
+ ssfile = g_file_new_for_uri("resource:///uk/me/bitwiz/Colloquium/default.ss");
+ ss = stylesheet_load(ssfile);
+ printf("Frame bgcol: '%s'\n", stylesheet_lookup(ss, "$.slide.frame", "bgcol"));
+ printf("Frame font: '%s'\n", stylesheet_lookup(ss, "$.slide.frame", "font"));
+ printf("Narrative fgcol: '%s'\n", stylesheet_lookup(ss, "$.narrative", "fgcol"));
return 0;
}
diff --git a/tests/meson.build b/tests/meson.build
index 756e924..d1f66b9 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -16,5 +16,6 @@ e = executable('render_subframe', 'render_subframe.c', basic_rendering,
test('Rendering with subframes', e)
e = executable('json_test', 'json_test.c', '../src/sc_parse.c',
- dependencies : [mdep, jsondep])
+ '../src/stylesheet.c',
+ gresources, dependencies : [mdep, jsondep, gtkdep])
test('JSON parsing', e)