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

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

// 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::parser;
using namespace xsde::cxx::parser::validating;

int
main ()
{
  using std::string;

  // Good.
  //
  {
    context c;
    uri_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters ("  ");
    p._post ();
    assert (!c.error_type () && p.post_uri () == string (""));
  }

  {
    context c;
    uri_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters ("relative");
    p._post ();
    assert (!c.error_type () && p.post_uri () == string ("relative"));
  }

  {
    context c;
    uri_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters ("#id");
    p._post ();
    assert (!c.error_type () && p.post_uri () == string ("#id"));
  }

  {
    context c;
    uri_pimpl p;
    p.pre ();
    p._pre_impl (c);
    p._characters ("http://www.example.com/foo#bar");
    p._post ();
    assert (!c.error_type () &&
            p.post_uri () == string ("http://www.example.com/foo#bar"));
  }

  return 0;
}