From fd8ce97afb16e17102ec8f109103ed334ad0e939 Mon Sep 17 00:00:00 2001 From: Benjamin Paassen Date: Tue, 6 Jan 2015 22:38:49 +0100 Subject: added XML classes including Serialization functions and added a test for it. I tried not to include Managed.hpp to prevent further overhead but I failed miserably. --- test/core/XMLTest.cpp | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 test/core/XMLTest.cpp (limited to 'test') diff --git a/test/core/XMLTest.cpp b/test/core/XMLTest.cpp new file mode 100644 index 0000000..aeedb86 --- /dev/null +++ b/test/core/XMLTest.cpp @@ -0,0 +1,77 @@ +/* + Ousía + Copyright (C) 2014, 2015 Benjamin Paaßen, Andreas Stöckel + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ + +#include + +#include + +#include + +namespace ousia { +namespace xml { + +TEST(Node, testSerialize) +{ + Manager mgr; + + Rooted html{new Element{mgr, "html"}}; + Rooted head{new Element{mgr, "head"}}; + html->children.push_back(head); + Rooted title{new Element{mgr, "title"}}; + head->children.push_back(title); + title->children.push_back(new Text(mgr, "my title")); + Rooted body{new Element{mgr, "body"}}; + html->children.push_back(body); + // This div element contains our text. + Rooted div{ + new Element{mgr, "div", {{"class", "content"}, {"id", "1"}}}}; + body->children.push_back(div); + Rooted p{new Element{mgr, "p"}}; + div->children.push_back(p); + p->children.push_back(new Text(mgr, "my text")); + Rooted p2{new Element{mgr, "p"}}; + div->children.push_back(p2); + p2->children.push_back(new Text(mgr, "my text")); + + // Now this is what we expect to see: + std::string expected{ + "\n" + "\t\n" + "\t\t\n" + "\t\t\tmy title\n" + "\t\t\n" + "\t\n" + "\t\n" + "\t\t
\n" + "\t\t\t

\n" + "\t\t\t\tmy text\n" + "\t\t\t

\n" + "\t\t\t

\n" + "\t\t\t\tmy text\n" + "\t\t\t

\n" + "\t\t
\n" + "\t\n" + "\n"}; + + // check if it is what we see + std::stringstream ss; + html->serialize(ss); + ASSERT_EQ(expected, ss.str()); +} +} +} -- cgit v1.2.3