#include "catch.hpp" #include #include TEST_CASE("Test basic XML parsing") { XmppParser xml; const std::string doc = "innertail"; auto check_stanza = [](const Stanza& stanza) { CHECK(stanza.get_name() == "stanza"); CHECK(stanza.get_tag("xmlns") == "stream_ns"); CHECK(stanza.get_tag("b") == "c"); CHECK(stanza.get_inner() == "inner"); CHECK(stanza.get_tail() == ""); CHECK(stanza.get_child("child1", "stream_ns") != nullptr); CHECK(stanza.get_child("child2", "stream_ns") == nullptr); CHECK(stanza.get_child("child2", "child2_ns") != nullptr); CHECK(stanza.get_child("child2", "child2_ns")->get_tail() == "tail"); }; xml.add_stanza_callback([check_stanza](const Stanza& stanza) { check_stanza(stanza); // Do the same checks on a copy of that stanza. Stanza copy(stanza); check_stanza(copy); // And do the same checks on moved-constructed stanza Stanza moved(std::move(copy)); }); xml.feed(doc.data(), doc.size(), true); const std::string doc2 = "coucou\r\n\a"; xml.add_stanza_callback([](const Stanza& stanza) { CHECK(stanza.get_inner() == "coucou\r\n"); }); xml.feed(doc2.data(), doc.size(), true); } TEST_CASE("XML escape") { const std::string unescaped = R"('coucou'/&"gaga")"; CHECK(xml_escape(unescaped) == "'coucou'<cc>/&"gaga""); } TEST_CASE("handshake_digest") { const auto res = get_handshake_digest("id1234", "S4CR3T"); CHECK(res == "c92901b5d376ad56269914da0cce3aab976847df"); } TEST_CASE("substanzas") { Stanza a("a"); { XmlSubNode b(a, "b"); { CHECK(!a.has_children()); XmlSubNode c(b, "c"); XmlSubNode d(b, "d"); CHECK(!c.has_children()); CHECK(!d.has_children()); } CHECK(b.has_children()); } CHECK(a.has_children()); }