Skip to content
Snippets Groups Projects
Commit 9a106be9 authored by Goik Martin's avatar Goik Martin
Browse files

New XSLT unit test based exercise

parent 77cca3c2
No related branches found
No related tags found
No related merge requests found
Showing
with 952 additions and 0 deletions
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Book2Html</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.oxygenxml.editor.xmlbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.oxygenxml.editor.xmlnature</nature>
</natures>
</projectDescription>
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" elementFormDefault="qualified"
vc:minVersion="1.0" vc:maxVersion="1.1">
<xs:element name="book">
<xs:complexType>
<xs:sequence>
<xs:element ref="title"/>
<xs:element ref="chapter" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="title" type="xs:string"/>
<xs:element name="chapter">
<xs:complexType>
<xs:sequence>
<xs:element ref="title"/>
<xs:element name="para" type="xs:string" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- Handling missing templates -->
<xsl:template match="*">
<p>
<xsl:text>No template defined for element '</xsl:text>
<xsl:value-of select="name(.)"/>
<xsl:text>'</xsl:text>
</p>
</xsl:template>
</xsl:stylesheet>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<x:description xmlns:x="http://www.jenitennison.com/xslt/xspec"
stylesheet="book2html.xsl">
<x:scenario label="Testing 'title' being immediate child of 'book'">
<x:context select="/book/title">
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>Abcd</title>
<chapter>
<title></title>
<para></para>
</chapter>
</book>
</x:context>
<x:expect label="'title' text being wrapped in a 'h1' element" >
<h1>Abcd</h1>
</x:expect>
</x:scenario>
<x:scenario label="Testing 'title' being immediate child of 'chapter'">
<x:context select="/book/chapter/title">
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>Abcd</title>
<chapter>
<title>Defg</title>
<para></para>
</chapter>
</book>
</x:context>
<x:expect label="'title' text being wrapped in a 'h2' element" >
<h2>Defg</h2>
</x:expect>
</x:scenario>
<x:scenario label="Testing basic 'chapter' structure">
<x:context select="/book/chapter">
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>Abc</title>
<chapter>
<title>Def</title>
<para>Ghi</para>
<para>Jkl</para>
</chapter>
</book>
</x:context>
<x:expect label="Expecting 'h2' containing AbC and two 'p' tags containing X and Y">
<h2>Def</h2>
<p>Ghi</p>
<p>Jkl</p>
</x:expect>
</x:scenario>
<x:scenario label="Testing multiple 'chapter' nodes">
<x:context select="/book/chapter">
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>Abc</title>
<chapter>
<title>Def</title>
<para>Ghi</para>
<para>Jkl</para>
</chapter>
<chapter>
<title>Lmn</title>
<para>Opq</para>
<para>Rst</para>
</chapter>
</book>
</x:context>
<x:expect label="Expecting 'h2' followed by 'p'. Repetition with corresponding values B and Y">
<h2>Def</h2>
<p>Ghi</p>
<p>Jkl</p>
<h2>Lmn</h2>
<p>Opq</p>
<p>Rst</p>
</x:expect>
</x:scenario>
<x:scenario label="Testing minimal html root skeleton">
<x:context>
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title/>
<chapter>
<title/>
<para/>
<para/>
</chapter>
</book>
</x:context>
<x:expect label="Expecting HTML root structure">
<html>
<head><title/></head>
<body>
<h1/>
<h2/>
<p/>
<p/>
</body>
</html>
</x:expect>
</x:scenario>
<x:scenario label="Testing complete example">
<x:context>
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>AbC</title>
<chapter>
<title>Def</title>
<para>Ghi</para>
</chapter>
</book>
</x:context>
<x:expect label="Expecting HTML root structure">
<html>
<head>
<title>AbC</title>
</head>
<body>
<h1>AbC</h1>
<h2>Def</h2>
<p>Ghi</p>
</body>
</html>
</x:expect>
</x:scenario>
</x:description>
<?xml version="1.0" encoding="UTF-8"?>
<html>
<head>
<title>Beginning XSL</title>
</head>
<body>
<h1>Beginning XSL</h1>
<h2>Basic structure</h2>
<p>An XSLT consists of a stylesheet declaration and a set of templates.</p>
<p>Do not forget: template elements must not be nested!</p>
<h2>Important elements</h2>
<p>Some more text.</p>
<p>The first chapter explains basic structures.</p>
</body>
</html>
<?xml version="1.0" encoding="UTF-8"?>
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="book.xsd">
<title>Beginning XSL</title>
<chapter>
<title>Basic structure</title>
<para>An XSLT consists of a stylesheet declaration and a set of templates.</para>
<para>Do not forget: template elements must not be nested!</para>
</chapter>
<chapter>
<title >Important elements</title>
<para>Some more text.</para>
<para>The first chapter explains basic structures.</para>
</chapter>
</book>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" elementFormDefault="qualified"
vc:minVersion="1.0" vc:maxVersion="1.1">
<xs:element name="book">
<xs:complexType>
<xs:sequence>
<xs:element ref="title"/>
<xs:element ref="chapter" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="xs:ID" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="title" type="xs:string"/>
<xs:element name="chapter">
<xs:complexType>
<xs:sequence>
<xs:element ref="title"/>
<xs:element ref="para" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="xs:ID" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="para" >
<xs:complexType mixed="true">
<xs:sequence>
<xs:element ref="emphasis" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="link" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="xs:ID" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="emphasis" type="xs:string"/>
<xs:element name="link">
<xs:complexType mixed="true">
<xs:attribute name="linkend" type="xs:IDREF" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- Handling missing templates -->
<xsl:template match="*">
<p>
<xsl:text>No template defined for element '</xsl:text>
<xsl:value-of select="name(.)"/>
<xsl:text>'</xsl:text>
</p>
</xsl:template>
</xsl:stylesheet>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<x:description xmlns:x="http://www.jenitennison.com/xslt/xspec"
stylesheet="book2html.xsl">
<x:import href="../Book1/bookBasicTest.xspec" />
<x:scenario label="Testing @id in 'chapter'">
<x:context select="/chapter/title">
<chapter id='idValue'>
<title>Abc</title>
</chapter>
</x:context>
<x:expect label="'title' text being wrapped in a 'h2' element">
<h2 id='idValue'>Abc</h2>
</x:expect>
</x:scenario>
<x:scenario label="Testing @id in 'para'">
<x:context>
<para id='idValue'>Abc</para>
</x:context>
<x:expect label="'para' text being wrapped in a 'p' element supplying @id">
<p id='idValue'>Abc</p>
</x:expect>
</x:scenario>
<x:scenario label="Testing @id in 'book'">
<x:context>
<book id='idValue'>
<title>Abc</title>
<chapter>
<title>Def</title>
<para>Ghi</para>
</chapter>
</book>
</x:context>
<x:expect label="Transfer @id value in 'book' to 'body' tag">
<html>
<head>
<title>Abc</title>
</head>
<body id='idValue'>
<h1>Abc</h1>
<h2>Def</h2>
<p>Ghi</p>
</body>
</html>
</x:expect>
</x:scenario>
<x:scenario label="Testing element content of 'emphasis'">
<x:context>
<emphasis>AbC</emphasis>
</x:context>
<x:expect label="'emphasis' text being wrapped in a 'em' element">
<em>AbC</em>
</x:expect>
</x:scenario>
<x:scenario label="Testing 'para' mixed text with 'emphasis'">
<x:context>
<para>Some <emphasis>important</emphasis> text</para>
</x:context>
<x:expect label="'para' components being wrapped in a 'p' element containing 'em'">
<p>Some <em>important</em> text</p>
</x:expect>
</x:scenario>
<x:scenario label="Testing @linkend and element content of 'link'">
<x:context>
<link linkend='DeF'>AbC</link>
</x:context>
<x:expect label="'link' text being wrapped in a 'a' element providing @href attribute">
<a href='#DeF'>AbC</a>
</x:expect>
</x:scenario>
<x:scenario label="Testing mixed 'para' content">
<x:context>
<para>See <emphasis>important hint</emphasis> in <link linkend='firstChapter'>start chapter</link></para>
</x:context>
<x:expect label="'em' and 'a' tags being wrapped in a 'p' element">
<p>See <em>important hint</em> in <a href='#firstChapter'>start chapter</a></p>
</x:expect>
</x:scenario>
</x:description>
\ No newline at end of file
<html>
<head>
<title>Beginning XSL</title>
</head>
<body id="top">
<h1>Beginning XSL</h1>
<h2 id="firstChapter">Basic structure</h2>
<p>An XSLT consists of a stylesheet declaration and a set of templates.</p>
<p>Do <em>not forget</em>: template elements must not be nested!</p>
<h2>Important elements</h2>
<p id="someText">Some more text.</p>
<p>The <a href="#firstChapter">first chapter</a> explains basic structures.</p>
</body>
</html>
<?xml version="1.0" encoding="UTF-8"?>
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="book.xsd">
<title>Beginning XSL</title>
<chapter id="firstChapter">
<title>Basic structure</title>
<para>An XSLT consists of a stylesheet declaration and a set of templates.</para>
<para>Do <emphasis>not forget</emphasis>: template elements must not be nested!</para>
</chapter>
<chapter>
<title>Important elements</title>
<para id="someText">Some more text.</para>
<para>The <link linkend="firstChapter">first chapter</link> explains basic structures.</para>
</chapter>
</book>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Solution</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.oxygenxml.editor.xmlbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.oxygenxml.editor.xmlnature</nature>
</natures>
</projectDescription>
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" elementFormDefault="qualified"
vc:minVersion="1.0" vc:maxVersion="1.1">
<xs:element name="book">
<xs:complexType>
<xs:sequence>
<xs:element ref="title"/>
<xs:element ref="chapter" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="title" type="xs:string"/>
<xs:element name="chapter">
<xs:complexType>
<xs:sequence>
<xs:element ref="title"/>
<xs:element name="para" type="xs:string" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/book">
<html>
<head>
<title>
<xsl:value-of select="title"/>
</title>
</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="book/title">
<h1>
<xsl:value-of select="."/>
</h1>
</xsl:template>
<xsl:template match="chapter/title">
<h2>
<xsl:value-of select="."/>
</h2>
</xsl:template>
<xsl:template match="chapter">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="para">
<p>
<xsl:value-of select="."/>
</p>
</xsl:template>
<!-- Handling missing templates -->
<xsl:template match="*">
<p>
<xsl:text>No template defined for element '</xsl:text>
<xsl:value-of select="name(.)"/>
<xsl:text>'</xsl:text>
</p>
</xsl:template>
</xsl:stylesheet>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<x:description xmlns:x="http://www.jenitennison.com/xslt/xspec"
stylesheet="book2html.xsl">
<x:scenario label="Testing 'title' being immediate child of 'book'">
<x:context select="/book/title">
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>Abcd</title>
<chapter>
<title></title>
<para></para>
</chapter>
</book>
</x:context>
<x:expect label="'title' text being wrapped in a 'h1' element" >
<h1>Abcd</h1>
</x:expect>
</x:scenario>
<x:scenario label="Testing 'title' being immediate child of 'chapter'">
<x:context select="/book/chapter/title">
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>Abcd</title>
<chapter>
<title>Defg</title>
<para></para>
</chapter>
</book>
</x:context>
<x:expect label="'title' text being wrapped in a 'h2' element" >
<h2>Defg</h2>
</x:expect>
</x:scenario>
<x:scenario label="Testing basic 'chapter' structure">
<x:context select="/book/chapter">
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>Abc</title>
<chapter>
<title>Def</title>
<para>Ghi</para>
<para>Jkl</para>
</chapter>
</book>
</x:context>
<x:expect label="Expecting 'h2' containing AbC and two 'p' tags containing X and Y">
<h2>Def</h2>
<p>Ghi</p>
<p>Jkl</p>
</x:expect>
</x:scenario>
<x:scenario label="Testing multiple 'chapter' nodes">
<x:context select="/book/chapter">
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>Abc</title>
<chapter>
<title>Def</title>
<para>Ghi</para>
<para>Jkl</para>
</chapter>
<chapter>
<title>Lmn</title>
<para>Opq</para>
<para>Rst</para>
</chapter>
</book>
</x:context>
<x:expect label="Expecting 'h2' followed by 'p'. Repetition with corresponding values B and Y">
<h2>Def</h2>
<p>Ghi</p>
<p>Jkl</p>
<h2>Lmn</h2>
<p>Opq</p>
<p>Rst</p>
</x:expect>
</x:scenario>
<x:scenario label="Testing minimal html root skeleton">
<x:context>
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title/>
<chapter>
<title/>
<para/>
<para/>
</chapter>
</book>
</x:context>
<x:expect label="Expecting HTML root structure">
<html>
<head><title/></head>
<body>
<h1/>
<h2/>
<p/>
<p/>
</body>
</html>
</x:expect>
</x:scenario>
<x:scenario label="Testing complete example">
<x:context>
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd">
<title>AbC</title>
<chapter>
<title>Def</title>
<para>Ghi</para>
</chapter>
</book>
</x:context>
<x:expect label="Expecting HTML root structure">
<html>
<head>
<title>AbC</title>
</head>
<body>
<h1>AbC</h1>
<h2>Def</h2>
<p>Ghi</p>
</body>
</html>
</x:expect>
</x:scenario>
</x:description>
<?xml version="1.0" encoding="UTF-8"?>
<book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="book.xsd">
<title>Beginning XSL</title>
<chapter>
<title>Basic structure</title>
<para>An XSLT consists of a stylesheet declaration and a set of templates.</para>
<para>Do not forget: template elements must not be nested!</para>
</chapter>
<chapter>
<title >Important elements</title>
<para>Some more text.</para>
<para>The first chapter explains basic structures.</para>
</chapter>
</book>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" elementFormDefault="qualified"
vc:minVersion="1.0" vc:maxVersion="1.1">
<xs:element name="book">
<xs:complexType>
<xs:sequence>
<xs:element ref="title"/>
<xs:element ref="chapter" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="xs:ID" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="title" type="xs:string"/>
<xs:element name="chapter">
<xs:complexType>
<xs:sequence>
<xs:element ref="title"/>
<xs:element ref="para" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="xs:ID" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="para" >
<xs:complexType mixed="true">
<xs:sequence>
<xs:element ref="emphasis" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="link" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="xs:ID" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="emphasis" type="xs:string"/>
<xs:element name="link">
<xs:complexType mixed="true">
<xs:attribute name="linkend" type="xs:IDREF" use="required"/>
</xs:complexType>
</xs:element>
</xs:schema>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/book">
<html>
<head>
<title>
<xsl:value-of select="title"/>
</title>
</head>
<body>
<!--Element <book> may contain an @id attribute -->
<xsl:apply-templates select="*|@id"/>
</body>
</html>
</xsl:template>
<xsl:template match="book/title">
<h1>
<xsl:value-of select="."/>
</h1>
</xsl:template>
<xsl:template match="chapter/title">
<h2>
<!-- Parent element <chapter> may contain an @id attribute -->
<xsl:apply-templates select="text()|parent::chapter/@id"/>
</h2>
</xsl:template>
<xsl:template match="chapter">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="para">
<p>
<!-- Element <para> may contain an @id attribute-->
<xsl:apply-templates select="*|text()|@id"/>
</p>
</xsl:template>
<xsl:template match="emphasis">
<em>
<xsl:value-of select="."/>
</em>
</xsl:template>
<xsl:template match="link">
<a href='#{@linkend}'>
<xsl:value-of select="."/>
</a>
</xsl:template>
<xsl:template match="@id">
<xsl:attribute name="id" select="."/>
</xsl:template>
<!-- Handling missing templates -->
<xsl:template match="*">
<p>
<xsl:text>No template defined for element '</xsl:text>
<xsl:value-of select="name(.)"/>
<xsl:text>'</xsl:text>
</p>
</xsl:template>
</xsl:stylesheet>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<x:description xmlns:x="http://www.jenitennison.com/xslt/xspec"
stylesheet="book2html.xsl">
<x:import href="../Book1/bookBasicTest.xspec" />
<x:scenario label="Testing @id in 'chapter'">
<x:context select="/chapter/title">
<chapter id='idValue'>
<title>Abc</title>
<para>Def</para>
</chapter>
</x:context>
<x:expect label="'title' text being wrapped in a 'h2' element">
<h2 id='idValue'>Abc</h2>
</x:expect>
</x:scenario>
<x:scenario label="Testing @id in 'para'">
<x:context>
<para id='idValue'>Abc</para>
</x:context>
<x:expect label="'para' text being wrapped in a 'p' element supplying @id">
<p id='idValue'>Abc</p>
</x:expect>
</x:scenario>
<x:scenario label="Testing @id in 'book'">
<x:context>
<book id='idValue'>
<title>Abc</title>
<chapter>
<title>Def</title>
<para>Ghi</para>
</chapter>
</book>
</x:context>
<x:expect label="Transfer @id value in 'book' to 'body' tag">
<html>
<head>
<title>Abc</title>
</head>
<body id='idValue'>
<h1>Abc</h1>
<h2>Def</h2>
<p>Ghi</p>
</body>
</html>
</x:expect>
</x:scenario>
<x:scenario label="Testing element content of 'emphasis'">
<x:context>
<emphasis>AbC</emphasis>
</x:context>
<x:expect label="'emphasis' text being wrapped in a 'em' element">
<em>AbC</em>
</x:expect>
</x:scenario>
<x:scenario label="Testing 'para' mixed text with 'emphasis'">
<x:context>
<para>Some <emphasis>important</emphasis> text</para>
</x:context>
<x:expect label="'para' components being wrapped in a 'p' element containing 'em'">
<p>Some <em>important</em> text</p>
</x:expect>
</x:scenario>
<x:scenario label="Testing @linkend and element content of 'link'">
<x:context>
<link linkend='DeF'>AbC</link>
</x:context>
<x:expect label="'link' text being wrapped in a 'a' element providing @href attribute">
<a href='#DeF'>AbC</a>
</x:expect>
</x:scenario>
<x:scenario label="Testing mixed 'para' content">
<x:context>
<para>See <emphasis>important hint</emphasis> in <link linkend='firstChapter'>start chapter</link></para>
</x:context>
<x:expect label="'em' and 'a' tags being wrapped in a 'p' element">
<p>See <em>important hint</em> in <a href='#firstChapter'>start chapter</a></p>
</x:expect>
</x:scenario>
</x:description>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<book id="top" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="book.xsd">
<title>Beginning XSL</title>
<chapter id="firstChapter">
<title>Basic structure</title>
<para>An XSLT consists of a stylesheet declaration and a set of templates.</para>
<para>Do <emphasis>not forget</emphasis>: template elements must not be nested!</para>
</chapter>
<chapter>
<title>Important elements</title>
<para id="someText">Some more text.</para>
<para>The <link linkend="firstChapter">first chapter</link> explains basic structures.</para>
</chapter>
</book>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment