blob: 0b00d0c95fdbaf096bba65398aeb272ecc24517c (
plain)
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
|
#include "dgunit.h"
#include <configparser.h>
class ConfigParserTest
: public DGUnit
{
public:
ConfigParserTest()
{
DGUNIT_TEST(ConfigParserTest::test);
DGUNIT_TEST(ConfigParserTest::invalid);
}
void test()
{
std::string xml =
"<?xml version='1.0' encoding='UTF-8'?>\n" \
"<config>\n" \
" <value name=\"foo\">42</value>\n" \
" <value name=\"bar\">true</value>\n" \
" <value name=\"bas\">"<</value>\n" \
"</config>";
ConfigParser parser;
DGUNIT_ASSERT(parser.parseString(xml));
DGUNIT_ASSERT_EQUAL(std::string("42"), parser.value("foo", "-"));
DGUNIT_ASSERT_EQUAL(std::string("true"), parser.value("bar", "-"));
DGUNIT_ASSERT_EQUAL(std::string("\"<"), parser.value("bas", "-"));
DGUNIT_ASSERT_EQUAL(std::string("-"), parser.value("bas2", "-"));
}
void invalid()
{
std::string xml =
"<?xml version='1.0' encoding='UTF-8'?>\n" \
"<config\n" \
" <value name=\"foo\">42</value>\n" \
" <value name=\"bar\">true</value>\n" \
" <value name=\"bas\">"<</value>\n" \
"</config>";
ConfigParser parser;
DGUNIT_ASSERT(!parser.parseString(xml));
}
};
static ConfigParserTest test;
|