summaryrefslogtreecommitdiff
path: root/tools/regression/xsl_reports/xsl/issues_page.xsl
blob: 4faa410d0d89cadbfafa728412c1d7bbb3a82953 (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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?xml version="1.0" encoding="utf-8"?>
<!--

Copyright MetaCommunications, Inc. 2003-2004.

Distributed under the Boost Software License, Version 1.0. (See
accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)

-->

<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:exsl="http://exslt.org/common"
    xmlns:func="http://exslt.org/functions"
    xmlns:str="http://exslt.org/strings"
    xmlns:set="http://exslt.org/sets"
    xmlns:meta="http://www.meta-comm.com"
    extension-element-prefixes="func exsl"
    exclude-result-prefixes="set str meta"
    version="1.0">

    <xsl:import href="common.xsl"/>

    <xsl:output method="html" 
        doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" 
        encoding="utf-8" 
        indent="yes"
        />


    <xsl:param name="links_file"/>
    <xsl:param name="mode"/>
    <xsl:param name="source"/>
    <xsl:param name="run_date"/>
    <xsl:param name="comment_file"/>
    <xsl:param name="expected_results_file"/>
    <xsl:param name="explicit_markup_file"/>

    <!-- the author-specified expected test results -->
    <xsl:variable name="explicit_markup" select="document( $explicit_markup_file )"/>
    <xsl:variable name="expected_results" select="document( $expected_results_file )" />
     
    <!-- necessary indexes -->
    <xsl:key 
        name="test_name_key" 
        match="test-log" 
        use="concat( @library, '@', @test-name )"/>
                    <xsl:key 
                        name="a" 
                        match="." 
                        use="concat( @library, '@', @test-name )"/>

    <xsl:key 
        name="library_key" 
        match="test-log" 
        use="@library"/>
    <xsl:key name="toolset_key" match="test-log" use="@toolset"/>

    <!-- toolsets -->

    <xsl:variable name="required_toolsets" select="$explicit_markup//mark-toolset[ @status='required' ]"/>
    <xsl:variable name="required_toolset_names" select="$explicit_markup//mark-toolset[ @status='required' ]/@name"/>
    <!-- libraries -->
    <xsl:variable name="libraries" select="//test-log[ @library != '' and generate-id(.) = generate-id( key('library_key',@library)[1] )  ]/@library"/>

    <xsl:variable name="unexpected_test_cases" select="//test-log[ @status='unexpected' and @result='fail' and @toolset = $required_toolset_names and meta:is_test_log_a_test_case(.)]"/>

    <func:function name="meta:get_library_tests">
        <xsl:param name="tests"/>
        <xsl:param name="library"/>
          
        <xsl:variable name="a">                  
            <xsl:for-each select="$tests[ @library=$library ]">
                <xsl:sort select="@test-name" order="ascending"/>
                <xsl:copy-of select="."/>
            </xsl:for-each>
        </xsl:variable>
        <func:result select="exsl:node-set( $a )/*"/>
    </func:function>


    <xsl:template match="/">

        <xsl:variable name="issues_list" select="'issues_.html'"/>

        <!-- Issues page -->
        <html>
        <head>
            <link rel="stylesheet" type="text/css" href="../master.css" title="master" />
            <title>Boost regression unresolved issues: <xsl:value-of select="$source"/></title>
        </head>
        <frameset cols="190px,*" frameborder="0" framespacing="0" border="0">
        <frame name="tocframe" src="toc.html" scrolling="auto"/>
        <frame name="docframe" src="{$issues_list}" scrolling="auto"/>
        </frameset>
        </html>

        <!-- Issues list -->
        <xsl:message>Writing document <xsl:value-of select="$issues_list"/></xsl:message>
        
        <exsl:document href="{$issues_list}"
            method="html" 
            doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" 
            encoding="utf-8"
            indent="yes">

            <html>
            <head>
                <link rel="stylesheet" type="text/css" href="../master.css" title="master" />
            </head>
            <body>

                <h1 class="page-title">
                    <xsl:text>Unresolved Issues: </xsl:text>
                    <a class="hover-link" href="summary.html" target="_top"><xsl:value-of select="$source"/></a>
                </h1>

                <div class="report-info">
                    <div>
                        <b>Report Time: </b> <xsl:value-of select="$run_date"/>
                    </div>
                    <div>
                        <b>Purpose: </b> Provides a list of current unresolved test failures. 
                    </div>
                </div>

                <xsl:for-each select="$libraries">
                    <xsl:sort select="." order="ascending"/>
                    <xsl:variable name="library" select="."/>
                    <xsl:variable name="library_page" select="meta:encode_path( $library )" />
                
                    <xsl:variable name="library_tests" select="meta:get_library_tests( $unexpected_test_cases, $library )"/>
                    <xsl:if test="count( $library_tests ) > 0">
                        <xsl:variable name="library_test_names" select="set:distinct( $library_tests/@test-name )"/>

                        <h2>
                            <a class="hover-link" href="{$library_page}.html" target="_top">
                                <xsl:value-of select="$library"/>
                            </a>
                        </h2>
                        
                        <table class="library-issues-table" summary="issues">
                            <thead>
                                <tr valign="middle">
                                    <td class="head">test</td>
                                    <td class="head">failures</td>
                                </tr>
                            </thead>
                            <tfoot>
                                <tr valign="middle">
                                    <td class="head">test</td>
                                    <td class="head">failures</td>
                                </tr>
                            </tfoot>

                            <tbody>
                            <xsl:for-each select="$library_test_names">
                                <xsl:sort select="." order="ascending"/>
                                <xsl:variable name="test_name" select="."/>
                                
                                <xsl:variable name="unexpected_toolsets" select="$library_tests[ @test-name = $test_name and not (meta:is_unusable( $explicit_markup, $library, @toolset )) ]/@toolset"/>
                                
                                <xsl:if test="count( $unexpected_toolsets ) > 0">
                                    <xsl:variable name="test_program"  select="$library_tests[@test-name = $test_name]/@test-program"/>
                                    <tr>
                                        <td class="test-name">
                                            <a href="../../../{$test_program}" class="test-link">
                                                <xsl:value-of select="$test_name"/>
                                            </a>
                                        </td>
                                        <td class="failures-row">
                                            <table summary="unexpected fail legend" class="issue-box">
                                                <tr class="library-row-single">
                                                
                                                <xsl:for-each select="$unexpected_toolsets">
                                                    <xsl:sort select="." order="ascending"/>
                                                    <xsl:variable name="toolset" select="."/>
                                                    <xsl:variable name="test_result" select="$library_tests[@test-name = $test_name and @toolset = $toolset]"/>
                                                    <xsl:variable name="log_link" select="meta:output_file_path( $test_result/@target-directory )"/>
                                                    <xsl:variable name="class">
                                                        <xsl:choose>
                                                            <xsl:when test="$test_result/@is-new = 'yes'">
                                                                <xsl:text>library-fail-unexpected-new</xsl:text>
                                                            </xsl:when>
                                                            <xsl:otherwise>
                                                                <xsl:text>library-fail-unexpected</xsl:text>
                                                            </xsl:otherwise>
                                                        </xsl:choose>
                                                    </xsl:variable>

                                                    <td class="{$class}">
                                                        <span>
                                                        <a href="{$log_link}" class="log-link" target="_top">
                                                            <xsl:value-of select="."/>
                                                        </a>
                                                        </span>
                                                    </td>
                                                </xsl:for-each>
                                                
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </xsl:if>
                            </xsl:for-each>
                            </tbody>

                            </table>


                        </xsl:if>
                    </xsl:for-each>

            <xsl:copy-of select="document( 'html/issues_legend.html' )"/>
            <xsl:copy-of select="document( 'html/make_tinyurl.html' )"/>

            </body>
            </html>
        </exsl:document>  

    </xsl:template>
</xsl:stylesheet>