summaryrefslogtreecommitdiff
path: root/tests/exslt/strings/padding.1.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/exslt/strings/padding.1.xsl')
-rw-r--r--tests/exslt/strings/padding.1.xsl40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/exslt/strings/padding.1.xsl b/tests/exslt/strings/padding.1.xsl
new file mode 100644
index 00000000..c5d621d3
--- /dev/null
+++ b/tests/exslt/strings/padding.1.xsl
@@ -0,0 +1,40 @@
+<?xml version="1.0"?>
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:str="http://exslt.org/strings"
+ exclude-result-prefixes="str">
+
+<xsl:output indent="yes"/>
+
+<xsl:template match="test-cases">
+ <test-results>
+ <xsl:apply-templates select="test-case"/>
+ </test-results>
+</xsl:template>
+
+<xsl:template match="test-case">
+ <test-result>
+ <xsl:variable name="padding">
+ <xsl:choose>
+ <xsl:when test="string(.)">
+ <xsl:value-of select="str:padding(@length, .)"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="str:padding(@length)"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+ <padding>
+ <xsl:value-of select="$padding"/>
+ </padding>
+ <length-check>
+ <xsl:choose>
+ <xsl:when test="string-length($padding) = @length">OK</xsl:when>
+ <xsl:otherwise>FAIL</xsl:otherwise>
+ </xsl:choose>
+ </length-check>
+ </test-result>
+</xsl:template>
+
+</xsl:stylesheet>
+