aboutsummaryrefslogtreecommitdiff
path: root/tests/cxx/parser/validation/built-in/qname/driver.cxx
blob: 51c6e4a544b9c7cf7398bf367f33a213765702a5 (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
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
// file      : tests/cxx/parser/validation/built-in/qname/driver.cxx
// copyright : Copyright (c) 2006-2011 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

// Test the built-in QName type validation.
//
#include <cassert>

#include <xsde/config.h>

// Let the runtime header sort out which version (stl/no-stl) to
// include.
//
#include <xsde/cxx/parser/validating/xml-schema-pimpl.hxx>

using namespace xsde::cxx;
using namespace xsde::cxx::parser;
using namespace xsde::cxx::parser::validating;

#ifdef XSDE_STL
bool
compare (const qname& x, const char* p, const char* n)
{
  return x == qname (p, n);
}
#else
bool
compare (qname* x, const char* p, const char* n)
{
  qname y;
  y.prefix_copy (p);
  y.name_copy (n);

  bool r = *x == y;
  delete x;
  return r;
}
#endif

int
main ()
{
  // Good.
  //
  {
    context c;
    qname_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters (" xsi");
    p._characters (":");
    p._characters ("schemaLocation");
    p._post ();
    assert (!c.error_type () &&
            compare (p.post_qname (), "xsi", "schemaLocation"));
  }

  {
    context c;
    qname_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters ("schemaLocation");
    p._post ();
    assert (!c.error_type () &&
            compare (p.post_qname (), "", "schemaLocation"));
  }


  // Bad
  //
  {
    context c;
    qname_pimpl p;
    p.pre ();
    p._pre_impl (c);
    //p._characters ("");
    p._post ();
    assert (c.schema_error () == schema_error::invalid_qname_value);
  }

  {
    context c;
    qname_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters (":");
    p._post ();
    assert (c.schema_error () == schema_error::invalid_qname_value);
  }

  {
    context c;
    qname_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters ("xsi:");
    p._post ();
    assert (c.schema_error () == schema_error::invalid_qname_value);
  }

  {
    context c;
    qname_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters (":schemaLocation");
    p._post ();
    assert (c.schema_error () == schema_error::invalid_qname_value);
  }

  {
    context c;
    qname_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters ("x?i:schemaLocation");
    p._post ();
    assert (c.schema_error () == schema_error::invalid_qname_value);
  }

  {
    context c;
    qname_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters ("xsi:schema Location");
    p._post ();
    assert (c.schema_error () == schema_error::invalid_qname_value);
  }

  return 0;
}