summaryrefslogtreecommitdiff
path: root/libxsd-tests/cxx/tree/basic/testscript
blob: 26066885ba9afb19ce3f6c2de76837fa67d431b0 (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
# file      : cxx/tree/basic/testscript
# license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

: basic
:
{
  cat <<EOI >=hello.xsd;
    <?xml version="1.0"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <xsd:complexType name="hello_t">

        <xsd:annotation>
          <xsd:documentation>
            The hello_t type consists of a greeting phrase and a
            collection of names to which this greeting applies.
          </xsd:documentation>
        </xsd:annotation>

        <xsd:sequence>

          <xsd:element name="greeting" type="xsd:string">
            <xsd:annotation>
              <xsd:documentation>
                The greeting element contains the greeting phrase
                for this hello object.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:element>

          <xsd:element name="name" type="xsd:string" maxOccurs="unbounded">
            <xsd:annotation>
              <xsd:documentation>
                The name elements contains names to be greeted.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:element>

        </xsd:sequence>
      </xsd:complexType>

      <xsd:element name="hello" type="hello_t">
        <xsd:annotation>
          <xsd:documentation>
            The hello element is a root of the Hello XML vocabulary.
            Every conforming document should start with this element.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
    </xsd:schema>
    EOI

  cat <<EOI >=hello.xml;
    <?xml version="1.0"?>
    <hello xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:noNamespaceSchemaLocation="hello.xsd">

      <greeting>Hello</greeting>

      <name>sun</name>
      <name>moon</name>
      <name>world</name>

    </hello>
    EOI

  $* hello.xml >>EOO
    greeting Hello
    name sun
    name moon
    name world
    EOO
}