+ Add testresult.
This commit is contained in:
88
api/v1/entries/testresults.php
Normal file
88
api/v1/entries/testresults.php
Normal file
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
/**
|
||||
* The testresults entry point of ZenTaoPMS.
|
||||
*
|
||||
* @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
||||
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
||||
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
||||
* @package entries
|
||||
* @version 1
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
class testresultsEntry extends entry
|
||||
{
|
||||
/**
|
||||
* GET method.
|
||||
*
|
||||
* @param int $productID
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function get($caseID = 0)
|
||||
{
|
||||
if(!$caseID) return $this->sendError(400, 'Need case id.');
|
||||
$version = $this->request('version', 0);
|
||||
$runID = $this->request('runID', 0);
|
||||
|
||||
$control = $this->loadController('testtask', 'results');
|
||||
$control->results($runID, $caseID, $version);
|
||||
|
||||
$data = $this->getData();
|
||||
|
||||
if(isset($data->status) and $data->status == 'success')
|
||||
{
|
||||
$results = array();
|
||||
foreach($data->data->results as $result)
|
||||
{
|
||||
$result->stepResults = array_values((array)$result->stepResults);
|
||||
$results[] = $result;
|
||||
}
|
||||
|
||||
return $this->send(200, array('results' => $results));
|
||||
}
|
||||
|
||||
if(isset($data->status) and $data->status == 'fail') return $this->sendError(zget($data, 'code', 400), $data->message);
|
||||
return $this->sendError(400, 'error');
|
||||
}
|
||||
|
||||
/**
|
||||
* POST method.
|
||||
*
|
||||
* @param int $caseID
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public function post($caseID = 0)
|
||||
{
|
||||
if(!$caseID) $caseID = $this->param('case');
|
||||
if(!$caseID) return $this->sendError(400, 'Need case id.');
|
||||
|
||||
$case = $this->loadModel('testcase')->getByID($caseID);
|
||||
$runID = $this->param('runID', 0);
|
||||
$version = $this->param('version', $case->version);
|
||||
|
||||
$this->setPost('case', $caseID);
|
||||
|
||||
/* Set steps and expects. */
|
||||
if(isset($this->requestBody->steps))
|
||||
{
|
||||
$results = array();
|
||||
$reals = array();
|
||||
foreach($this->requestBody->steps as $step)
|
||||
{
|
||||
$results[] = $step->result;
|
||||
$reals[] = $step->real;
|
||||
}
|
||||
$this->setPost('steps', $results);
|
||||
$this->setPost('reals', $reals);
|
||||
}
|
||||
|
||||
$control = $this->loadController('testtask', 'runCase');
|
||||
$control->runCase($runID, $caseID, $version);
|
||||
|
||||
$data = $this->getData();
|
||||
if(isset($data->result) and $data->result == 'fail') return $this->sendError(400, $data->message);
|
||||
|
||||
$this->send(200, array());
|
||||
}
|
||||
}
|
||||
@@ -97,6 +97,7 @@ $routes['/projects/:id/testcases'] = 'projectCases';
|
||||
$routes['/executions/:id/testcases'] = 'executionCases';
|
||||
$routes['/testcases'] = 'testcases';
|
||||
$routes['/testcases/:id'] = 'testcase';
|
||||
$routes['/testcases/:id/results'] = 'testresults';
|
||||
|
||||
$routes['/products/:id/testsuites'] = 'testsuites';
|
||||
$routes['/testsuites'] = 'testsuites';
|
||||
|
||||
Reference in New Issue
Block a user