aboutsummaryrefslogtreecommitdiff
path: root/test/write_file/transformation.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'test/write_file/transformation.xsl')
-rw-r--r--test/write_file/transformation.xsl26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/write_file/transformation.xsl b/test/write_file/transformation.xsl
new file mode 100644
index 0000000..f65e62d
--- /dev/null
+++ b/test/write_file/transformation.xsl
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:xalan="http://xml.apache.org/xalan"
+ xmlns:InputXSLT="function.inputxslt.application"
+ exclude-result-prefixes="InputXSLT xalan"
+>
+
+<xsl:import href="[testcase.xsl]"/>
+
+<xsl:template name="implementation">
+ <xsl:variable name="result" select="InputXSLT:write-file('test.txt', 'Hello world!')"/>
+ <xsl:variable name="content" select="InputXSLT:read-file('test.txt')"/>
+
+ <xsl:choose>
+ <xsl:when test="$content/self::file/@result = 'success'">
+ <xsl:value-of select="$content/self::file/text()"/>
+ </xsl:when>
+ <xsl:otherwise>
+ Error during file io
+ </xsl:otherwise>
+ </xsl:choose>
+</xsl:template>
+
+</xsl:stylesheet>