summaryrefslogtreecommitdiff
path: root/libxsd-tests/cxx/tree/basic/testscript
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd-tests/cxx/tree/basic/testscript')
-rw-r--r--libxsd-tests/cxx/tree/basic/testscript73
1 files changed, 73 insertions, 0 deletions
diff --git a/libxsd-tests/cxx/tree/basic/testscript b/libxsd-tests/cxx/tree/basic/testscript
new file mode 100644
index 0000000..2606688
--- /dev/null
+++ b/libxsd-tests/cxx/tree/basic/testscript
@@ -0,0 +1,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
+}