1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
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 <http://www.gnu.org/licenses/>.
*/
#include <gtest/gtest.h>
#include <core/XML.hpp>
#include <sstream>
namespace ousia {
namespace xml {
TEST(Node, testSerialize)
{
Manager mgr;
Rooted<Element> html{new Element{mgr, "html"}};
Rooted<Element> head{new Element{mgr, "head"}};
html->children.push_back(head);
Rooted<Element> title{new Element{mgr, "title"}};
head->children.push_back(title);
title->children.push_back(new Text(mgr, "my title"));
Rooted<Element> body{new Element{mgr, "body"}};
html->children.push_back(body);
// This div element contains our text.
Rooted<Element> div{
new Element{mgr, "div", {{"class", "content"}, {"id", "1"}}}};
body->children.push_back(div);
Rooted<Element> p{new Element{mgr, "p"}};
div->children.push_back(p);
p->children.push_back(new Text(mgr, "my text"));
Rooted<Element> 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{
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<html>\n"
"\t<head>\n"
"\t\t<title>\n"
"\t\t\tmy title\n"
"\t\t</title>\n"
"\t</head>\n"
"\t<body>\n"
"\t\t<div class=\"content\" id=\"1\">\n"
"\t\t\t<p>\n"
"\t\t\t\tmy text\n"
"\t\t\t</p>\n"
"\t\t\t<p>\n"
"\t\t\t\tmy text\n"
"\t\t\t</p>\n"
"\t\t</div>\n"
"\t</body>\n"
"</html>\n"};
// check if it is what we see
std::stringstream ss;
html->serialize(ss);
ASSERT_EQ(expected, ss.str());
}
}
}
|