89 lines
2.7 KiB
PHP
89 lines
2.7 KiB
PHP
<?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) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.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->param('version', 0);
|
|
$runID = $this->param('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());
|
|
}
|
|
}
|