aboutsummaryrefslogtreecommitdiff
path: root/test/transform/transformation.xsl
blob: 99933badc9e97bb9321da6c52dde66eaf9057416 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
	version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:dyn="http://exslt.org/dynamic"
	xmlns:xalan="http://xml.apache.org/xalan"
	xmlns:InputXSLT="function.inputxslt.application"
	exclude-result-prefixes="dyn xalan InputXSLT"
>

<xsl:import href="[testcase.xsl]"/>

<xsl:template name="transformer">
	<xsl:param name="transformation"/>
	<xsl:param name="parameters"/>

	<xsl:variable name="stylesheet" select="
		InputXSLT:read-file(string($transformation))
	"/>

	<xsl:choose>
		<xsl:when test="$stylesheet/self::file/@result = 'success'">
			<transformation result="success">
				<xsl:copy-of select="
					InputXSLT:transform(
						$stylesheet/self::file/*,
						xalan:nodeset($parameters)
					)/self::transformation/text()
				"/>
			</transformation>
		</xsl:when>
		<xsl:otherwise>
			<transformation result="error">
				<xsl:copy-of select="$stylesheet/self::file/*"/>
			</transformation>
		</xsl:otherwise>
	</xsl:choose>
</xsl:template>

<xsl:template name="generator">
	<xsl:param name="transformation"/>
	<xsl:param name="target"/>
	<xsl:param name="parameters"/>

	<xsl:variable name="result">
		<xsl:call-template name="transformer">
			<xsl:with-param name="transformation" select="$transformation"/>
			<xsl:with-param name="parameters" select="$parameters"/>
		</xsl:call-template>
	</xsl:variable>

	<xsl:choose>
		<xsl:when test="xalan:nodeset($result)/transformation/@result = 'success'">
			<xsl:variable name="writeResult" select="
				InputXSLT:write-file(
					string($target),
					xalan:nodeset($result)/transformation/text()
				)
			"/>

			<transformation result="success" target="{$target}"/>
		</xsl:when>
		<xsl:otherwise>
			<transformation result="error" target="{$target}"/>
		</xsl:otherwise>
	</xsl:choose>
</xsl:template>

<xsl:template name="implementation">
	<xsl:variable name="result">
		<xsl:call-template name="generator">
			<xsl:with-param name="transformation">test.xsl</xsl:with-param>
			<xsl:with-param name="target">test_actual.xml</xsl:with-param>
			<xsl:with-param name="parameters">
				<test>21</test>
			</xsl:with-param>
		</xsl:call-template>
	</xsl:variable>

	<xsl:choose>
		<xsl:when test="xalan:nodeset($result)/transformation/@result = 'success'">
			<xsl:copy-of select="
				InputXSLT:read-file('test_actual.xml')/test_case/transform_test/*
			"/>
		</xsl:when>
		<xsl:otherwise>
			<xsl:copy-of select="xalan:nodeset($result)/transformation/*"/>
		</xsl:otherwise>
	</xsl:choose>
</xsl:template>

</xsl:stylesheet>