blob: 3c77eea6cae69d2c2f93d1263824c2f962bb661c (
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
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
|
// file : tests/cxx/parser/validation/built-in/qname/driver.cxx
// copyright : Copyright (c) 2006-2014 Code Synthesis Tools CC
// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
// Test the built-in QName type validation.
//
#include <cassert>
#include <xsd/cxx/parser/validating/exceptions.hxx>
#include <xsd/cxx/parser/validating/xml-schema-pimpl.hxx>
using namespace xsd::cxx::parser::validating;
bool
test_post_fail (qname_pimpl<char>& p)
{
try
{
p._post ();
}
catch (invalid_value<char> const&)
{
return true;
}
return false;
}
int
main ()
{
typedef xsd::cxx::parser::qname<char> qname;
// Good.
//
{
qname_pimpl<char> p;
p.pre ();
p._pre ();
p._characters (" xsi");
p._characters (":");
p._characters ("schemaLocation");
p._post ();
assert (p.post_qname () == qname ("xsi", "schemaLocation"));
}
{
qname_pimpl<char> p;
p.pre ();
p._pre ();
p._characters ("schemaLocation");
p._post ();
assert (p.post_qname () == qname ("schemaLocation"));
}
// Bad
//
{
qname_pimpl<char> p;
p.pre ();
p._pre ();
//p._characters ("");
assert (test_post_fail (p));
}
{
qname_pimpl<char> p;
p.pre ();
p._pre ();
p._characters (":");
assert (test_post_fail (p));
}
{
qname_pimpl<char> p;
p.pre ();
p._pre ();
p._characters ("xsi:");
assert (test_post_fail (p));
}
{
qname_pimpl<char> p;
p.pre ();
p._pre ();
p._characters (":schemaLocation");
assert (test_post_fail (p));
}
{
qname_pimpl<char> p;
p.pre ();
p._pre ();
p._characters ("x?i:schemaLocation");
assert (test_post_fail (p));
}
{
qname_pimpl<char> p;
p.pre ();
p._pre ();
p._characters ("xsi:schema Location");
assert (test_post_fail (p));
}
}
|