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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "test_global.hpp"
#include "orcus/xml_writer.hpp"
#include "orcus/xml_namespace.hpp"
#include "orcus/sax_parser.hpp"
#include <iostream>
#include <sstream>
using namespace orcus;
void test_encoded_content()
{
const std::vector<std::string> test_contents = {
"1 < 2 but 3 > 2",
"ladies & gentlemen",
"'testing single quotes'",
"\"testing double quotes\"",
};
struct _handler : public sax_handler
{
std::ostringstream os_content;
void characters(std::string_view val, bool /*transient*/)
{
os_content << val;
}
};
for (const std::string& test_content : test_contents)
{
xmlns_repository repo;
std::ostringstream os;
{
xml_writer writer(repo, os);
auto scope_root = writer.push_element_scope({nullptr, "root"});
writer.add_content(test_content);
}
std::string stream = os.str();
_handler hdl;
sax_parser<_handler> parser(stream, hdl);
parser.parse();
std::string content_read = hdl.os_content.str();
assert(test_content == content_read);
}
}
void test_move()
{
xmlns_repository repo;
{
std::ostringstream os;
xml_writer writer(repo, os);
writer.push_element({nullptr, "foo"});
{
xml_writer moved(std::move(writer)); // move constructor
moved.add_content("stuff");
}
std::string stream = os.str();
assert(stream == "<?xml version=\"1.0\"?><foo>stuff</foo>");
}
{
std::ostringstream os;
xml_writer writer(repo, os);
writer.push_element({nullptr, "foo2"});
{
std::ostringstream os2;
xml_writer moved(repo, os2);
moved = std::move(writer); // move assignment.
moved.add_content("stuff2");
}
std::string stream = os.str();
assert(stream == "<?xml version=\"1.0\"?><foo2>stuff2</foo2>");
}
}
int main()
{
test_encoded_content();
test_move();
return EXIT_SUCCESS;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|