Salome HOME
'sat test': add the script and the script traces in the log
[tools/sat.git] / src / xsl / test.xsl
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5 <xsl:template match="/">
6 <html>
7 <head>
8 <title>Tests of <xsl:value-of select="//product/@name" /></title>
9 <style type="text/css">
10     .def        { font-family: Arial, Verdana, "Times New Roman", Times, serif;}
11     .OK         { background-color:#00FF00; }
12     .KO         { background-color:#FF0000; }
13     .KF         { background-color:#FFA500; }
14     .NA         { background-color:#BBBBBB; }
15     .PASS       { background-color:#00FF00; }
16     .FAILED     { background-color:#F22000; }
17     .TIMEOUT    { background-color:#DFFF00; }
18     .OK2        { color:#00FF00; }
19     .KO2        { color:#F22000; font-weight: bold; }
20     .NA2        { color:#BBBBBB; }
21     .CHECK2     { color:#FFA500; }
22     .ok         { color:#00AA00; }
23     .ko         { color:#AA0000; }
24     .new        { background-color:#FF5500; }
25     .undercontrol { background-color:#AA0000; }
26     .ignored    { color:#A0A0A0; }
27     div.pqlist  { -moz-column-count: 5;
28                   overflow: auto;
29                   max-height: 250px;
30                 }
31     table.pq    { width: 100%;
32                   margin:0px;
33                   padding:0px;
34                   border-collapse: collapse;
35                   empty-cells: show;
36                   border-style: hidden;
37                 }
38     table       { margin:0px;
39                   padding:0px;
40                   border-collapse:collapse;
41                   empty-cells: show;
42                   border: solid 1px;
43                 }
44     td.KO2      { border: solid 1px black; padding: 0px; }
45     td.OK2      { border: solid 1px black; padding: 0px; }
46     td          { border: solid 1px black; padding: 1px; }
47     h2          { text-align: center; }
48     .legend     { font-weight: bold;
49                   text-align: center;
50                 }
51     span.covered { display:-moz-inline-box; display: inline-block;
52                   height:18px;
53                   vertical-align:top;
54                   background: #00df00; 
55                 }
56     span.uncovered { display:-moz-inline-box; display: inline-block;
57                   height:18px;
58                   vertical-align:top;
59                   background: #df0000; 
60                 }
61     span.ignored { display:-moz-inline-box; display: inline-block;
62                   height:18px;
63                   vertical-align:top;
64                   background: #dfff00;
65                 }
66     span.knownfailure { display:-moz-inline-box; display: inline-block;
67                   height:18px;
68                   vertical-align:top;
69                   background: #ffa500;
70                 }
71     span.notApplicable { display:-moz-inline-box; display: inline-block;
72                   height:18px;
73                   vertical-align:top;
74                   background: #bbbbbb;
75                 }
76     span.zero   { color: #A0A0A0; }
77     a.node      { color:#0000FF; text-decoration: none; visited: #FF0000; }
78
79 </style>
80 <script language="JavaScript"><![CDATA[
81       function Toggle(id) {
82         collapsealltext();
83         var element = document.getElementById(id);
84
85         if ( element.style.display == "none" )
86           element.style.display = "block";
87         else 
88           element.style.display = "none";
89       }
90
91         function collapseall() {
92           var divlist = document.getElementsByName("mod");
93           for (i = 0; i < divlist.length; i++)
94           {
95               divlist[i].style.display = "none";
96           }
97           }
98         function collapsealltext() {
99           var divlist = document.getElementsByName("text");
100           for (i = 0; i < divlist.length; i++)
101           {
102               divlist[i].style.display = "none";
103           }          
104       }
105
106     ]]></script>
107 </head>
108
109 <body class="def">
110     
111   <xsl:apply-templates select="//product" mode="test" />
112
113   <br/>
114   <br/>
115
116   </body>
117   </html>
118 </xsl:template>
119
120 <xsl:template match="product" mode="test">
121
122   <h3>Tests</h3>
123     
124   <xsl:for-each select="tests/grid">
125     <b>grid <xsl:value-of select="@name" /></b><br/><br/>
126     <a name="test"/>
127     <xsl:apply-templates select="." mode="test-grid" />
128   </xsl:for-each>
129
130 </xsl:template>
131
132 <xsl:template match="grid" mode="test-grid">
133   <table>
134     <!-- Header -->
135     <tr bgcolor="#9acd32">
136       <th width="150">module</th>
137       <th width="100">success</th>
138       <th width="200"></th>
139       <th width="100">total</th>
140       <th width="100">pass</th>
141       <th width="100">failed</th>
142       <th width="100">timeout</th>
143       <th width="100">known failures</th>
144       <th width="100">not run</th>
145       <th width="100">N/A</th>
146       <th width="100">Time</th>
147     </tr>
148         
149     <xsl:for-each select="./module">
150       <xsl:variable name="total" select="count(.//test)"/>
151       <xsl:variable name="failureCount" select="count(.//test[@res='KO'])"/>
152       <xsl:variable name="successCount" select="count(.//test[@res='OK'])"/>
153       <xsl:variable name="timeoutCount" select="count(.//test[@res='TIMEOUT'])"/>
154       <xsl:variable name="knownFailures" select="count(.//test[@res='KF'])"/>
155       <xsl:variable name="notApplicable" select="count(.//test[@res='NA'])"/>
156       <xsl:variable name="ignoreCount" select="$total - $successCount - $failureCount - $knownFailures - $notApplicable"/>
157       <xsl:variable name="successRate" select="$successCount div $total"/>
158
159       <tr>
160         <td><a href="#test" class="node" title="voir">
161           <xsl:attribute name="onclick">javascript:collapseall();Toggle('mod_<xsl:value-of select="../@name"/>.<xsl:value-of select="@name"/>');</xsl:attribute>
162           <xsl:attribute name="id">img_<xsl:value-of select="@name"/></xsl:attribute><xsl:value-of select="@name"/>&#160;</a>
163         </td>
164
165         <td align="right">
166           <xsl:call-template name="display-percent">
167             <xsl:with-param name="value" select="$successRate"/>
168           </xsl:call-template>
169         </td>
170         <td width="210px" align="center">
171           <!-- Progress bar -->
172           <xsl:if test="round($successCount * 200 div $total) != 0">
173             <span class="covered">
174               <xsl:attribute name="style">width:<xsl:value-of select="round($successCount * 200 div $total)"/>px</xsl:attribute>&#160;
175             </span>
176           </xsl:if>
177           <xsl:if test="round($failureCount * 200 div $total) != 0">
178             <span class="uncovered">
179               <xsl:attribute name="style">width:<xsl:value-of select="round($failureCount * 200 div $total)"/>px</xsl:attribute>&#160;
180             </span>
181           </xsl:if>
182           <xsl:if test="round($knownFailures * 200 div $total) != 0">
183             <span class="knownfailure">
184                 <xsl:attribute name="style">width:<xsl:value-of select="round($knownFailures * 200 div $total)"/>px</xsl:attribute>&#160;
185             </span>
186           </xsl:if>
187           <xsl:if test="round($notApplicable * 200 div $total) != 0">
188             <span class="notApplicable">
189                 <xsl:attribute name="style">width:<xsl:value-of select="round($notApplicable * 200 div $total)"/>px</xsl:attribute>&#160;
190             </span>
191           </xsl:if>
192           <xsl:if test="round($ignoreCount * 200 div $total) != 0">
193             <span class="ignored">
194               <xsl:attribute name="style">width:<xsl:value-of select="round($ignoreCount * 200 div $total)"/>px</xsl:attribute>&#160;
195             </span>
196           </xsl:if>
197         </td>
198         <td align="right"><xsl:value-of select="$total" /></td>
199         <td align="right"><xsl:value-of select="$successCount" /></td>
200         <xsl:call-template name="display-count"><xsl:with-param name="value" select="$failureCount"/></xsl:call-template>
201
202         <xsl:call-template name="display-count"><xsl:with-param name="value" select="$timeoutCount"/></xsl:call-template>
203         <xsl:call-template name="display-count"><xsl:with-param name="value" select="$knownFailures"/></xsl:call-template>
204         <xsl:call-template name="display-count"><xsl:with-param name="value" select="$ignoreCount"/></xsl:call-template>
205         <xsl:call-template name="display-count"><xsl:with-param name="value" select="$notApplicable"/></xsl:call-template>
206         <td align="right"><xsl:value-of select="format-number(sum(.//test/@exec_time), '0.0')" /></td>
207       </tr>
208     </xsl:for-each>
209
210     <!-- Summary Row -->
211     <xsl:variable name="GrandTotal" select="count(//test)"/>
212     <xsl:variable name="TotalFailure" select="count(//test[@res='KO'])"/>
213     <xsl:variable name="TotalSuccess" select="count(//test[@res='OK'])"/>
214     <xsl:variable name="TotalTimeout" select="count(//test[@res='TIMEOUT'])"/>
215     <xsl:variable name="TotalKnownFailures" select="count(//test[@res='KF'])"/>
216     <xsl:variable name="TotalNA" select="count(//test[@res='NA'])"/>
217     <xsl:variable name="TotalIgnore" select="$GrandTotal - $TotalSuccess - $TotalFailure - $TotalKnownFailures - $TotalNA"/>
218     <xsl:variable name="TotalSuccessRate" select="$TotalSuccess div $GrandTotal"/>
219
220     <tr bgcolor="#EF9C9C">
221       <td>Total</td>
222       <td align="right">
223         <xsl:call-template name="display-percent">
224           <xsl:with-param name="value" select="$TotalSuccessRate"/>
225         </xsl:call-template>
226       </td>
227       <td width="210px" align="center">
228         <xsl:if test="round($TotalSuccess * 200 div $GrandTotal) != 0">
229           <span class="covered">
230             <xsl:attribute name="style">width:<xsl:value-of select="round($TotalSuccess * 200 div $GrandTotal)"/>px</xsl:attribute>&#160;
231           </span>
232         </xsl:if>
233         <xsl:if test="round($TotalFailure * 200 div $GrandTotal) != 0">
234           <span class="uncovered">
235             <xsl:attribute name="style">width:<xsl:value-of select="round($TotalFailure * 200 div $GrandTotal)"/>px</xsl:attribute>&#160;
236           </span>
237         </xsl:if>
238         <xsl:if test="round($TotalKnownFailures * 200 div $GrandTotal) != 0">
239           <span class="knownfailure">
240             <xsl:attribute name="style">width:<xsl:value-of select="round($TotalKnownFailures * 200 div $GrandTotal)"/>px</xsl:attribute>&#160;
241           </span>
242         </xsl:if>
243         <xsl:if test="round($TotalIgnore * 200 div $GrandTotal) != 0">
244           <span class="ignored">
245             <xsl:attribute name="style">width:<xsl:value-of select="round($TotalIgnore * 200 div $GrandTotal)"/>px</xsl:attribute>&#160;
246           </span>
247         </xsl:if>
248       </td>
249       <td align="right"><xsl:value-of select="$GrandTotal" /></td>
250       <td align="right"><xsl:value-of select="$TotalSuccess" /></td>
251       <td align="right"><xsl:value-of select="$TotalFailure" /></td>
252       <td align="right"><xsl:value-of select="$TotalTimeout" /></td>
253       <td align="right"><xsl:value-of select="$TotalKnownFailures" /></td>
254       <td align="right"><xsl:value-of select="$TotalIgnore" /></td>
255       <td align="right"><xsl:value-of select="$TotalNA" /></td>
256       <td align="right"><xsl:value-of select="format-number(sum(//test/@exec_time), '0.0')" /></td>
257     </tr>
258   </table>
259     
260   <br/>
261   <!-- Show details -->
262   <xsl:for-each select="./module">
263     <xsl:sort select="@name" />
264     <xsl:sort select="@type" />
265
266     <div style="display:none" name="mod"><xsl:attribute name="id">mod_<xsl:value-of select="../@name"/>.<xsl:value-of select="@name"/></xsl:attribute>
267     Tests of module <b><xsl:value-of select="@name"/></b>
268     <table width="100%">
269       <tr bgcolor="#9acd32">
270         <th width="100">type</th>
271         <th>script</th>
272         <th width="100">result</th>
273         <th width="100">time</th>
274       </tr>
275
276       <xsl:for-each select="./type">
277         <xsl:sort select="@name" />
278
279         <tr>
280           <td align="center"><xsl:attribute name="rowspan"><xsl:value-of select="count(./test)+count(.//callback)+1" /></xsl:attribute>
281             <xsl:value-of select="@name" />
282             <br/>(<xsl:value-of select="format-number(sum(./test/@exec_time), '0')" /> s)
283           </td>
284         </tr>
285
286       <xsl:for-each select="./test">
287         <xsl:sort select="@script" />
288
289         <xsl:choose>
290           <xsl:when test="count(./callback) != 0">
291             <tr>
292               <td align="left">
293                     <xsl:attribute name="class"><xsl:value-of select="@res" /></xsl:attribute>
294                     <a href="#content">
295                             <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@script"/>')</xsl:attribute>
296                             <xsl:attribute name="title">Click to see the script content</xsl:attribute>
297                             <xsl:value-of select="@script" />
298                     </a>
299                     &#160;
300                     <a href="#content">
301                             <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@script"/>log')</xsl:attribute>
302                             <xsl:attribute name="title">Click to see the execution log</xsl:attribute>
303                             log
304                     </a>
305               </td>
306               <td align="center"><xsl:attribute name="class"><xsl:value-of select="@res" /></xsl:attribute><xsl:value-of select="@res" /></td>
307               <td align="right"><xsl:value-of select="format-number(@exec_time, '0.0')" /></td>
308             </tr>
309             <tr>
310               <td align="left" colspan="3" class="linkification-disabled"><xsl:value-of select="./callback" /></td>
311             </tr>
312           </xsl:when>
313           <xsl:otherwise>
314             <tr>
315               <td align="left">
316                     <a href="#content">
317                             <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@script"/>')</xsl:attribute>
318                             <xsl:attribute name="title">Click to see the script content</xsl:attribute>
319                             <xsl:value-of select="@script" />
320                     </a>
321                     &#160;
322                     <a href="#content">
323                             <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@script"/>log')</xsl:attribute>
324                             <xsl:attribute name="title">Click to see the execution log</xsl:attribute>
325                             log
326                     </a>
327               </td>
328               <td align="center"><xsl:attribute name="class"><xsl:value-of select="@res" /></xsl:attribute><xsl:value-of select="@res" /></td>
329               <td align="right"><xsl:value-of select="format-number(@exec_time, '0.0')" /></td>
330             </tr>
331           </xsl:otherwise>
332         </xsl:choose>
333           <xsl:if test="count(./amend) != 0">
334             <tr>
335               <td class="ko"><b>Amended</b></td>        
336               <td align="left" colspan="3"><xsl:value-of select="./amend" /></td>
337             </tr>
338           </xsl:if>
339       </xsl:for-each>
340       </xsl:for-each>
341     
342     </table>
343     </div>
344   </xsl:for-each>
345   
346   <xsl:for-each select="./module">
347     <xsl:for-each select="./type">
348       <xsl:for-each select="./test">
349           <div style="display:none" name="text"><xsl:attribute name="id"><xsl:value-of select="@script"/></xsl:attribute>
350             <PRE><xsl:value-of select="./content"/></PRE>
351           </div>
352           <div style="display:none" name="text"><xsl:attribute name="id"><xsl:value-of select="@script"/>log</xsl:attribute>
353             <PRE><xsl:value-of select="./out"/></PRE>
354           </div>
355       </xsl:for-each>
356     </xsl:for-each>
357   </xsl:for-each>
358   
359 </xsl:template>
360
361 <xsl:template name="display-percent">
362     <xsl:param name="value"/>
363     <xsl:value-of select="format-number($value, '00.00 %')"/>
364 </xsl:template>
365
366 <xsl:template name="display-count">
367     <xsl:param name="value"/>
368     <td align="right">
369     <xsl:if test="$value &gt; 0">
370         <xsl:value-of select="$value"/>
371     </xsl:if>
372     <xsl:if test="$value = 0"><span class="zero">0</span></xsl:if>
373     </td>
374 </xsl:template>
375
376 </xsl:stylesheet>