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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
#include "sax_decoder.hh"
#include "sax_decoder_factory.hh"
#include "sax_processor.hh"
#include "sax_delegate.hh"
#include <memory>
#include <gtest/gtest.h>
namespace {
class TestDelegate : public modxml::sax::Delegate {
public:
~TestDelegate() override = default;
void empty_element(std::string_view name,
modxml::sax::Attributes const&) override {
EXPECT_EQ(name, "root");
if (name == "root") {
EXPECT_FALSE(have_root_);
have_root_ = true;
}
}
void error(std::string_view message) override {
have_error_ = true;
FAIL() << message;
}
bool have_root() const { return have_root_; }
bool have_error() const { return have_error_; }
private:
bool have_root_{false};
bool have_error_{false};
};
bool process_all(modxml::sax::Processor& processor,
TestDelegate& delegate,
std::span<uint8_t const> data) {
std::size_t offset = 0;
while (offset < data.size()) {
auto consumed = processor.process(data, offset);
if (consumed == 0 || delegate.have_error())
return false;
offset += consumed;
}
return true;
}
} // namespace
TEST(sax, decoder_utf8) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::string input = R"(<?xml version="1.0" encoding="utf-8"?><root />)";
std::cerr << input << std::endl;
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(reinterpret_cast<uint8_t const*>(input.data()),
input.size())));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf8_bom) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::string input =
"\xef\xbb\xbf" R"(<?xml version="1.0" encoding="utf-8"?><root />)";
std::cerr << input << std::endl;
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(reinterpret_cast<uint8_t const*>(input.data()),
input.size())));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf16) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u16string input = uR"(<?xml version="1.0" encoding="utf-16"?><root />)";
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(reinterpret_cast<uint8_t const*>(input.data()),
input.size() * sizeof(char16_t))));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf16be) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u16string str = uR"(<?xml version="1.0" encoding="utf-16"?><root />)";
std::vector<uint8_t> input;
for (char16_t c : str) {
input.push_back(c >> 8);
input.push_back(c & 0xff);
}
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(input.data(), input.size())));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf16le) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u16string str = uR"(<?xml version="1.0" encoding="utf-16"?><root />)";
std::vector<uint8_t> input;
for (char16_t c : str) {
input.push_back(c & 0xff);
input.push_back(c >> 8);
}
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(input.data(), input.size())));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf16be_bom) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u16string str =
u"\ufffe" uR"(<?xml version="1.0" encoding="utf-16"?><root />)";
std::vector<uint8_t> input;
for (char16_t c : str) {
input.push_back(c >> 8);
input.push_back(c & 0xff);
}
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(input.data(), input.size())));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf16le_bom) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u16string str =
u"\ufffe" uR"(<?xml version="1.0" encoding="utf-16"?><root />)";
std::vector<uint8_t> input;
for (char16_t c : str) {
input.push_back(c & 0xff);
input.push_back(c >> 8);
}
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(input.data(), input.size())));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf32) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u32string input = UR"(<?xml version="1.0" encoding="utf-32"?><root />)";
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(reinterpret_cast<uint8_t const*>(input.data()),
input.size() * sizeof(char32_t))));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf32be) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u32string str = UR"(<?xml version="1.0" encoding="utf-32"?><root />)";
std::vector<uint8_t> input;
for (char32_t c : str) {
input.push_back(c >> 24);
input.push_back((c >> 16) & 0xff);
input.push_back((c >> 8) & 0xff);
input.push_back(c & 0xff);
}
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(input.data(), input.size())));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf32le) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u32string str = UR"(<?xml version="1.0" encoding="utf-32"?><root />)";
std::vector<uint8_t> input;
for (char32_t c : str) {
input.push_back(c & 0xff);
input.push_back((c >> 8) & 0xff);
input.push_back((c >> 16) & 0xff);
input.push_back(c >> 24);
}
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(input.data(), input.size())));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf32be_bom) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u32string str =
U"\ufffe" UR"(<?xml version="1.0" encoding="utf-32"?><root />)";
std::vector<uint8_t> input;
for (char32_t c : str) {
input.push_back(c >> 24);
input.push_back((c >> 16) & 0xff);
input.push_back((c >> 8) & 0xff);
input.push_back(c & 0xff);
}
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(input.data(), input.size())));
EXPECT_TRUE(delegate->have_root());
}
TEST(sax, decoder_utf32le_bom) {
auto delegate = std::make_shared<TestDelegate>();
auto processor = modxml::sax::Processor::create(delegate);
std::u32string str =
U"\ufffe" R"(<?xml version="1.0" encoding="utf-32"?><root />)";
std::vector<uint8_t> input;
for (char32_t c : str) {
input.push_back(c & 0xff);
input.push_back((c >> 8) & 0xff);
input.push_back((c >> 16) & 0xff);
input.push_back(c >> 24);
}
EXPECT_TRUE(process_all(
*processor.get(),
*delegate.get(),
std::span<uint8_t const>(input.data(), input.size())));
EXPECT_TRUE(delegate->have_root());
}
|