From 8499b75fb011d72eeb5acbd85bcf41e4ee51e9a7 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Sun, 17 Sep 2023 00:40:34 +0200 Subject: XML --- source/tests/xml.test.c | 61 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 source/tests/xml.test.c (limited to 'source/tests/xml.test.c') diff --git a/source/tests/xml.test.c b/source/tests/xml.test.c new file mode 100644 index 0000000..7d2151c --- /dev/null +++ b/source/tests/xml.test.c @@ -0,0 +1,61 @@ +#include "../kit/xml.h" + +#define KIT_TEST_FILE xml +#include "../kit/kit_test.h" + +TEST("xml parse tag") { + is_handle_t is = IS_WRAP_STRING(SZ(" ")); + xml_parse_result_t res = xml_parse(is, NULL); + + REQUIRE_EQ(res.status, KIT_OK); + + if (res.status == KIT_OK) { + REQUIRE(AR_EQUAL(res.xml.tag, SZ("foo"))); + xml_destroy(&res.xml); + } + + is_destroy(is); +} + +TEST("xml parse tag not closed") { + is_handle_t is = IS_WRAP_STRING(SZ("")); + xml_parse_result_t res = xml_parse(is, NULL); + + REQUIRE_EQ(res.status, KIT_ERROR_INTERNAL); + + if (res.status == KIT_OK) + xml_destroy(&res.xml); + + is_destroy(is); +} + +TEST("xml parse tag text") { + is_handle_t is = IS_WRAP_STRING(SZ(" bar ")); + xml_parse_result_t res = xml_parse(is, NULL); + + REQUIRE_EQ(res.status, KIT_OK); + + if (res.status == KIT_OK) { + REQUIRE(AR_EQUAL(res.xml.tag, SZ("foo"))); + REQUIRE(AR_EQUAL(res.xml.text, SZ(" bar "))); + xml_destroy(&res.xml); + } + + is_destroy(is); +} + +TEST("xml parse empty tag") { + is_handle_t is = IS_WRAP_STRING(SZ("")); + xml_parse_result_t res = xml_parse(is, NULL); + + REQUIRE_EQ(res.status, KIT_OK); + + if (res.status == KIT_OK) { + REQUIRE(AR_EQUAL(res.xml.tag, SZ("foo"))); + xml_destroy(&res.xml); + } + + is_destroy(is); +} + +#undef KIT_TEST_FILE -- cgit v1.2.3