forked from apache/jmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschematic.xsl
More file actions
136 lines (123 loc) · 4.67 KB
/
schematic.xsl
File metadata and controls
136 lines (123 loc) · 4.67 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to you under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
Stylesheet to display the basic details of a JMX test plan
-->
<xsl:template match="jmeterTestPlan">
<html>
<title>Test Plan Schematic</title>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="hashTree">
<ul>
<xsl:apply-templates/>
</ul>
</xsl:template>
<xsl:template match="TestPlan">
<xsl:call-template name="header"/>
<xsl:call-template name="comment"/>
<xsl:for-each select='elementProp/collectionProp/elementProp'>
<br/>
<xsl:value-of select='stringProp[@name="Argument.name"]'/>
<xsl:value-of select='stringProp[@name="Argument.metadata"]'/>
<xsl:value-of select='stringProp[@name="Argument.value"]'/>
</xsl:for-each>
</xsl:template>
<xsl:template match="ThreadGroup">
<xsl:call-template name="header"/>
<xsl:call-template name="comment"/>
<br/>
<xsl:text>Threads: </xsl:text>
<xsl:value-of select='stringProp[@name="ThreadGroup.num_threads"]'/>
<xsl:text> Loops: </xsl:text>
<xsl:value-of select='elementProp/*[@name="LoopController.loops"]'/>
<xsl:text> Ramp up: </xsl:text>
<xsl:value-of select='stringProp[@name="ThreadGroup.ramp_time"]'/>
</xsl:template>
<xsl:template match="HTTPSampler|HTTPSampler2|ConfigTestElement[@guiclass='HttpDefaultsGui']">
<xsl:call-template name="header"/>
<xsl:call-template name="comment"/>
<br/>
<xsl:value-of select='stringProp[@name="HTTPSampler.method"]'/>
<xsl:text> </xsl:text>
<xsl:value-of select='stringProp[@name="HTTPSampler.protocol"]'/>
<xsl:text>://</xsl:text>
<xsl:value-of select='stringProp[@name="HTTPSampler.domain"]'/>
<xsl:text>:</xsl:text>
<xsl:value-of select='stringProp[@name="HTTPSampler.port"]'/>
<xsl:text>/</xsl:text>
<xsl:value-of select='stringProp[@name="HTTPSampler.path"]'/>
</xsl:template>
<xsl:template match="ResultCollector">
<xsl:call-template name="header"/>
<xsl:call-template name="comment"/>
<xsl:if test='stringProp[@name="filename"]!=""'>
<br/>
Output: <xsl:value-of select='stringProp[@name="filename"]'/>
XML: <xsl:value-of select='objProp/value/xml'/>
</xsl:if>
</xsl:template>
<xsl:template match="*">
<xsl:call-template name="header"/>
<xsl:call-template name="comment"/>
</xsl:template>
<xsl:template name="comment">
<xsl:if test='stringProp/@name="TestPlan.comments"'>
<br/>
<i>
<xsl:value-of select='stringProp[@name="TestPlan.comments"]'/>
</i>
</xsl:if>
</xsl:template>
<xsl:template name="header">
<xsl:if test="@enabled = 'false'">
(
</xsl:if>
<b>
<xsl:choose>
<xsl:when test="name() = 'GenericController'">
<xsl:text>SimpleController</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="name()"/>
</xsl:otherwise>
</xsl:choose>
</b> : <xsl:value-of select="@testname"/>
<xsl:if test="@enabled = 'false'">
)
</xsl:if>
</xsl:template>
</xsl:stylesheet>