diff options
author | raghavendracharik <raghavendrachari.kamsali@hpe.com> | 2016-07-20 04:10:13 -0700 |
---|---|---|
committer | Jose Lausuch <jose.lausuch@ericsson.com> | 2016-07-21 11:24:32 +0000 |
commit | fff0e399eb7b57ecd0ddce1b742da8c22968014c (patch) | |
tree | 2cf9c913288563494d7140a84d0608cb7cf67779 /utils/test/declaration/testcases.php | |
parent | a510a653663b917c7910b4934c580060837965d0 (diff) |
Implementation of testcase/pod declaration dashboard for adding tescases
JIRA: FUNCTEST-26
Change-Id: Iceb1c54ba8c245d43cc553533fdf4fd3284c7132
Signed-off-by: raghavendracharik <raghavendrachari.kamsali@hpe.com>
Diffstat (limited to 'utils/test/declaration/testcases.php')
-rw-r--r-- | utils/test/declaration/testcases.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/utils/test/declaration/testcases.php b/utils/test/declaration/testcases.php new file mode 100644 index 000000000..20645807e --- /dev/null +++ b/utils/test/declaration/testcases.php @@ -0,0 +1,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; + +?> + |