blob: 20645807edc19abadfd288d062fa069ec1da5f15 (
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
|
<?php
if(isset($_REQUEST['project'])){
$selected=$_REQUEST['project'];
}
else{
$url = "http://testresults.opnfv.org:80/test/api/v1/projects";
$response = file_get_contents($url);
$data = json_decode($response);
$projects=$data->projects;
$selected=$projects[0]->name;
}
$new_url="http://testresults.opnfv.org:80/test/api/v1/projects/".$selected."/cases";
$response = file_get_contents($new_url);
$data = json_decode($response);
$testcases=$data->testcases;
$i=0;
$column_str="";
$column_str=$column_str."<table class=\"table table-striped\"><tr>";
$column_str=$column_str."<th>#</th><th>Test Case Name</th>";
$column_str=$column_str."<th>Creation Date</th>";
$column_str=$column_str."<th>Description</th></tr>";
foreach ( $testcases as $testcase ){
$i=$i+1;
$column_str=$column_str."<tr>";
$column_str=$column_str."<td>".$i."</td>";
$column_str=$column_str."<td>".$testcase->name."</td>";
$column_str=$column_str."<td>".$testcase->creation_date."</td>";
$column_str=$column_str."<td>".$testcase->description."</td>";
$column_str=$column_str."</tr>";
}
$column_str=$column_str."</table>";
echo $column_str;
?>
|