summaryrefslogtreecommitdiff
path: root/com32/gpllib
diff options
context:
space:
mode:
authorErwan Velu <erwanaliasr1@gmail.com>2011-03-18 21:58:21 +0100
committerErwan Velu <erwanaliasr1@gmail.com>2011-03-18 21:58:21 +0100
commit57cde9074608980769aaf41ad61807005dbcbc8e (patch)
tree8575084e58279e8e43a8a8a576f8bb4c3940ba2a /com32/gpllib
parentd830004bf61b18d9f819ab8de8d62f509b74d367 (diff)
downloadsyslinux-57cde9074608980769aaf41ad61807005dbcbc8e.tar.gz
zzjson: No need to keep the test case
This is useless.
Diffstat (limited to 'com32/gpllib')
-rw-r--r--com32/gpllib/zzjson/zzjson_test.c137
1 files changed, 0 insertions, 137 deletions
diff --git a/com32/gpllib/zzjson/zzjson_test.c b/com32/gpllib/zzjson/zzjson_test.c
deleted file mode 100644
index 143b24b4..00000000
--- a/com32/gpllib/zzjson/zzjson_test.c
+++ /dev/null
@@ -1,137 +0,0 @@
-/* crude test program, used for testing during development
- * ZZJSON - Copyright (C) 2008 by Ivo van Poorten
- * License: GNU General Public License version 2 or later
- */
-
-#include "zzjson.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdarg.h>
-
-static void myerror(void *ehandle, const char *format, ...) {
- va_list ap;
- fprintf(ehandle, "error: ");
- va_start(ap, format);
- vfprintf(ehandle, format, ap);
- va_end(ap);
- fputc('\n', ehandle);
-}
-
-int main(int argc, char **argv) {
- ZZJSON *zzjson, *tmp;
- ZZJSON_CONFIG config = { ZZJSON_VERY_STRICT, NULL,
- (int(*)(void*)) fgetc,
- (int(*)(int,void*)) ungetc,
- malloc, calloc, free, realloc,
- stderr, myerror, stdout,
- (int(*)(void*,const char*,...)) fprintf,
- (int(*)(int,void*)) fputc };
- FILE *fp;
-
- if (argc != 2) {
- fprintf(stderr, "%s: usage: %s <json-file>\n", argv[0], argv[0]);
- return 1;
- }
-
- if (!(fp = fopen(argv[1], "rb"))) {
- fprintf(stderr, "%s: unable to open %s\n", argv[0], argv[1]);
- return 1;
- }
- config.ihandle = fp;
-
- zzjson = zzjson_parse(&config);
-
- if (!zzjson) {
- fprintf(stderr, "%s: unable to parse json file\n", argv[0]);
- fprintf(stderr, "%s: filepos: %lli\n", argv[0], (long long) ftell(fp));
- fclose(fp);
- return 1;
- }
-
- fclose(fp);
-
- zzjson_print(&config, zzjson);
-
- {
- ZZJSON *res;
- res = zzjson_object_find_labels(zzjson, "one", "two", "three", NULL);
-
- if (!res) fprintf(stderr, "snafu not found\n");
- else {
- fprintf(stderr, "snafu found: %s\n", res->value.string.string);
- }
- }
-
- fprintf(stderr, "object count: %u\n", zzjson_object_count(zzjson));
- fprintf(stderr, "array count: %u\n", zzjson_array_count(zzjson));
-
- fprintf(stderr, "%s\n", ZZJSON_IDENT);
- fprintf(stderr, "%i\n", ZZJSON_VERSION_INT);
-
- do {
- ZZJSON *tmp2;
-
- tmp = zzjson_create_array(&config,
- zzjson_create_number_d(&config, 3.14),
- zzjson_create_number_i(&config, 1234LL),
- zzjson_create_number_i(&config, -4321LL),
- zzjson_create_true(&config),
- zzjson_create_false(&config),
- zzjson_create_null(&config),
- zzjson_create_string(&config, "hello, world"),
- zzjson_create_object(&config,
- "picard", zzjson_create_string(&config, "jean-luc"),
- "riker", zzjson_create_string(&config, "william t."),
- NULL),
- zzjson_create_object(&config, NULL),
- zzjson_create_array(&config, NULL),
- NULL );
-
- if (!tmp) {
- fprintf(stderr, "error during creation of json tree\n");
- break;
- }
-
- tmp2 = zzjson_array_prepend(&config, tmp,
- zzjson_create_string(&config, "prepended string"));
-
- if (!tmp2) {
- fprintf(stderr, "error during prepend\n");
- break;
- }
- tmp = tmp2;
-
- tmp2 = zzjson_array_append(&config, tmp,
- zzjson_create_string(&config, "appended string (slow)"));
-
- if (!tmp2) {
- fprintf(stderr, "error during append\n");
- break;
- }
- tmp = tmp2;
-
- zzjson_print(&config, tmp);
- } while(0);
- if (tmp) zzjson_free(&config, tmp);
-
- {
- tmp = zzjson_create_array(&config, NULL); /* empty array */
- tmp = zzjson_array_prepend(&config, tmp, zzjson_create_true(&config));
- zzjson_print(&config, tmp);
- zzjson_free(&config, tmp);
- }
-
- {
- tmp = zzjson_create_object(&config, NULL); /* empty object */
- tmp = zzjson_object_prepend(&config, tmp, "hello",
- zzjson_create_string(&config, "world"));
- tmp = zzjson_object_append(&config, tmp, "goodbye",
- zzjson_create_string(&config, "cruel world"));
- zzjson_print(&config, tmp);
- zzjson_free(&config, tmp);
- }
-
- zzjson_free(&config, zzjson);
-
- return 0;
-}