From ddf5c42f67757000d6ec7686b92a667c2a252dca Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 23 Oct 2009 04:29:39 +0000 Subject: Imported from iksemel-1.3.tar.gz. --- test/tst-dom.c | 164 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 164 insertions(+) create mode 100644 test/tst-dom.c (limited to 'test/tst-dom.c') diff --git a/test/tst-dom.c b/test/tst-dom.c new file mode 100644 index 0000000..693509e --- /dev/null +++ b/test/tst-dom.c @@ -0,0 +1,164 @@ +/* iksemel (XML parser for Jabber) +** Copyright (C) 2000-2003 Gurer Ozen +** This code is free software; you can redistribute it and/or +** modify it under the terms of GNU Lesser General Public License. +*/ + +#include +#include +#include +#include + +#include "iksemel.h" + +iks *my_x; +int nr_tests; + +#define PR_TEST printf ("DOM test %d:\n", nr_tests) + +void +document (char *xml) +{ + enum ikserror err; + iksparser *p; + + nr_tests++; + if (my_x) iks_delete (my_x); + p = iks_dom_new (&my_x); + err = iks_parse (p, xml, 0, 1); + switch (err) { + case IKS_OK: + break; + case IKS_NOMEM: + PR_TEST; + puts ("Not enough memory."); + exit (1); + case IKS_BADXML: + PR_TEST; + printf ("Invalid xml at byte %ld in\n[%s]\n", iks_nr_bytes (p), xml); + exit (1); + case IKS_HOOK: + PR_TEST; + puts ("Hook."); + } + iks_parser_delete (p); +} + +void +tag (char *name, ...) +{ + iks *x; + va_list ap; + + x = my_x; + va_start (ap, name); + while (1) { + char *name = iks_name (x); + char *tmp = va_arg (ap, char*); + if (NULL == tmp) break; + x = iks_find (x, tmp); + if (!x) { + PR_TEST; + printf ("Tag <%s> is not a child of tag <%s>\n", tmp, name); + exit (1); + } + } + if (!x || NULL == iks_find (x, name)) { + PR_TEST; + printf ("Tag <%s> is not a child of tag <%s>\n", name, iks_name (x)); + exit (1); + } + va_end (ap); +} + +void +cdata (char *data, ...) +{ + iks *x; + va_list ap; + + x = my_x; + va_start (ap, data); + while (1) { + char *name = iks_name (x); + char *tmp = va_arg (ap, char*); + if (NULL == tmp) break; + x = iks_find (x, tmp); + if (!x) { + PR_TEST; + printf ("Tag <%s> is not a child of tag <%s>\n", tmp, name); + exit (1); + } + } + if (iks_strcmp ( iks_cdata (iks_child (x)), data) != 0) { + PR_TEST; + printf ("CDATA [%s] not found.\n", data); + exit (1); + } + va_end (ap); +} + +void +attrib (char *att, char *val, ...) +{ + iks *x; + va_list ap; + + x = my_x; + va_start (ap, val); + while (1) { + char *name = iks_name (x); + char *tmp = va_arg (ap, char*); + if (NULL == tmp) break; + x = iks_find (x, tmp); + if (!x) { + PR_TEST; + printf ("Tag <%s> is not a child of tag <%s>\n", tmp, name); + exit (1); + } + } + if (iks_strcmp (val, iks_find_attrib (x, att)) != 0) { + PR_TEST; + printf ("Attribute '%s' not found.\n", att); + exit (1); + } + va_end (ap); +} + +void +string (char *xml) +{ + char *tmp; + + tmp = iks_string (iks_stack (my_x), my_x); + if (iks_strcmp (tmp, xml) != 0) { + PR_TEST; + printf ("Result: %s\n", tmp); + printf ("Expected: %s\n", xml); + exit (1); + } +} + +static char buf[] = + "" + "" <online&dangerous> "meow" + ""; + +int main (int argc, char *argv[]) +{ + document (""); + string (""); + + document ("lalaboldblablabla"); + tag ("b", 0); + tag ("c", "a", 0); + string ("lalaboldblablabla"); + + document (buf); + cdata ("\" \"", "status", 0); + attrib ("c", "d", "a", "b", 0); + tag ("test", 0); + string (buf); + + return 0; +} -- cgit