-
Notifications
You must be signed in to change notification settings - Fork 0
/
sr_form.php
241 lines (220 loc) · 6.41 KB
/
sr_form.php
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<?php
/*
HTML FORM
2017-02-14(Cyril SANTUNE): Fix infinite loop and bad algorithm
2017-02-10(Cyril SANTUNE): Diplay "filter" on the testplans based on its first letter
2017-01-12(Cyril SANTUNE): Code cleaning
2017-01-11(Cyril SANTUNE): Modification de la partie testplans
2015-10-12(Cyril SANTUNE): ajouter *executed %* dans la légende
2015-10-08(Cyril SANTUNE): ajouter la légende
2015-10-07(Cyril SANTUNE): cocher la checkbox(low level testsuite)
par défaut
2015-06-19(Cyril SANTUNE): modification de la mise en page pour le partie
"display" et ajout de la checkbox "full passed testsuite". onload actif sur
les testplans à nouveau.
2015-06-18(Cyril SANTUNE): ajouter un bouton pour cacher les testsuites executés
à 100 pourcent
2015-06-18(Cyril SANTUNE): supprimer le onload pour les testplans
*/
echo("
<FORM ID='sr_form' METHOD=\"get\" ACTION=\"#\">
<BR><FIELDSET>
<LEGEND>Project & Testplan</LEGEND>
Project :
<SELECT
ID='pj_id'
NAME='pj_id'
ACTION='#'
onchange='reload(\"pj_id\",\"\")'>
<OPTION VALUE=''></OPTION>");
// pour tous les projets
foreach($db_table_projects as &$project) {
// après avoir recharger le page, placer la liste sur la bonne option
if(isset($_GET['pj_id'])) {
if($project["id"] == $_GET['pj_id']) {
// utf8_decode remplace le utf8 en ISO-8859-1 pour l'affiche dans le
// browser, problème avec le caractère numéro
echo("<OPTION SELECTED
VALUE='".$project["id"]."'>"
.utf8_decode($project["name"])."</OPTION>");
}
else {
echo("<OPTION VALUE='".$project["id"]."'>"
.utf8_decode($project["name"])."</OPTION>");
}
}
else {
echo("<OPTION VALUE='".$project["id"]."'>"
.utf8_decode($project["name"])."</OPTION>");
}
}
echo("</SELECT>");
// testplan list
// FIXME lorsqu'il y a un build de selectionné si l'on change de testplan,
// le champs build n'est pas effacé donc il reste sur un build d'un testplan
// non selectionné
// verify if the project is set
if(isset($_GET['pj_id'])) {
$db_table_testplans = get_table_testplans($_GET['pj_id']);
$checkbox_grid = "<BR>Testplan: ";
// filter the testplan by the first letter
$prefix = "A";
// flag to know what to do about the ul tag (open, close, in)
$ul_state = "open";
foreach($db_table_testplans as &$testplan) {
if($testplan["name"][0] != $prefix) {
$prefix = $testplan["name"][0];
if($ul_state == "in")
$ul_state = "close";
}
if($ul_state == "close") {
$checkbox_grid .= "</UL>";
$ul_state = "open";
}
if($ul_state == "open") {
$checkbox_grid .= "<P>".$prefix."...</P>";
$checkbox_grid .= "<UL CLASS='checkbox_grid'>";
$ul_state = "in";
}
$checkbox_grid .= "<LI><INPUT TYPE='checkbox' NAME='tp_id[]'";
// verify if the testplan is selected
if(isset($_GET["tp_id"])) {
if(in_array($testplan["id"], $_GET["tp_id"]))
$checkbox_grid .= " CHECKED";
}
$checkbox_grid .= " VALUE='".$testplan["id"]."'/>";
$checkbox_grid .= utf8_decode($testplan["name"]);
$checkbox_grid .= "</LI>";
}
if($ul_state == "in")
$checkbox_grid .= "</UL>";
echo($checkbox_grid);
}
echo("</FIELDSET>");
// afficher uniquement si le testplan est selectionné
if(isset($_GET['tp_id'])) {
// pour les builds
// plutot qu'un select multiple faire plusieurs checkbox
echo("<BR><FIELDSET>");
echo("<LEGEND>Build</LEGEND>");
// recuperer la liste de build pour ce testplan
$db_table_builds = get_table_builds($_GET['tp_id']);
// pour toutes les builds
// pour la présentation sauter une ligne toutes les 4 builds
$i = 1;
$input = "<TABLE><TR>";
foreach($db_table_builds as &$build) {
$input = $input."<TD>";
$input = $input."<INPUT TYPE='checkbox' NAME='bd_id[]'
onchange='clean_build()'";
// vérifier si la build est selectionnée
// le tableau dans l'url "bd_id" contient les builds selectionnées
// in_array permet de verifier si une valeur existe dans un tableau
if(isset($_GET["bd_id"])) {
if(in_array($build["id"], $_GET["bd_id"]))
$input = $input." CHECKED";
}
$input = $input." value='".$build["id"]."'>";
$input = $input.$build["name"]." (".$build["release_date"].")";
$input = $input."</INPUT></TD>";
// sauter une ligne toutes les 4 builds
if($i == 4) {
$input = $input."</TR><TR>";
$i = 0;
}
$i+=1;
}
$input = $input."</TR></TABLE>";
echo($input);
echo("</FIELDSET>");
// pour la couverture
echo("<BR><FIELDSET>");
echo("<LEGEND>Coverage</LEGEND>");
echo("Show coverage (increase report loading time):");
// après avoir recharger le page, placer la liste sur la bonne option
$input = "<INPUT TYPE='checkbox' NAME='show_coverage'";
if(isset($_GET['show_coverage']))
$input = $input." CHECKED";
$input = $input."></INPUT>";
echo($input);
echo("</FIELDSET>");
}
// Légende
echo("
<BR>
<TABLE>
<TR>
<TD>
<BR>
<FIELDSET>
<LEGEND>Display</LEGEND>
Hide:
<UL>
<LI>low level testsuite:");
$input = "<INPUT
TYPE='checkbox'
ID='checkbox_hide_level'
NAME='checkbox_hide_level'";
// cocher la checkbox si dans l'url il y a *checkbox_hide_level=on* ou
// si le testplan id n'est pas défini. Cela permet d'avoir la checkbox cocher par défaut.
if(isset($_GET['checkbox_hide_level']) or (! isset($_GET['tp_id'])))
$input = $input." CHECKED";
$input = $input." ONCLICK='toggle_testsuite()'></INPUT>";
echo($input);
echo("
</LI>
<LI>complete testsuite (100% executed):
<INPUT TYPE='checkbox' ID='checkbox_hide_complete'
ONCLICK='toggle_testsuite()'></INPUT>
</LI>
<LI>full passed testsuite (all executed tests are passed):
<INPUT TYPE='checkbox' ID='checkbox_hide_passed'
ONCLICK='toggle_testsuite()'></INPUT>
</LI>
</UL>
</FIELDSET>
</TD>
<TD STYLE='width:10%'></TD>
<TD><FIELDSET>
<LEGEND>Legend</LEGEND>
<TABLE>
<TR>
<TD>Not run</TD>
<TD CLASS='sr_table_status_not_run sr_form_table_legend_td'></TD>
</TR>
<TR>
<TD>Passed</TD>
<TD CLASS='sr_table_status_passed sr_form_table_legend_td'></TD>
</TR>
<TR>
<TD>Failed</TD>
<TD CLASS='sr_table_status_failed sr_form_table_legend_td'></TD>
</TR>
<TR>
<TD>Blocked</TD>
<TD CLASS='sr_table_status_blocked sr_form_table_legend_td'></TD>
</TR>
<TR>
<TD>Executed %</TD>
<TD CLASS='sr_form_table_legend_td'>=</TD>
<TD>
(<SPAN CLASS='sr_table_status_passed'>Passed</SPAN> +
<SPAN CLASS='sr_table_status_failed'>Failed</SPAN>) / Total </TD>
</TR>
</TABLE>
</FIELDSET>
</TD>
</TR>
</TABLE>
<BR>
<INPUT
CLASS='sr_form_button'
NAME='submit'
TYPE='submit'
VALUE=' Apply '/>
<A HREF='sr_testlink.php?session_reset=yes'>
<BUTTON type='button' CLASS='sr_form_button'> Reset </BUTTON>
</A>
</FORM>
");
?>