| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?php
- /**
- * The testresults entry point of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) 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 https://www.zentao.net
- */
- class testresultsEntry extends entry
- {
- /**
- * GET method.
- *
- * @param int $productID
- * @access public
- * @return string
- */
- 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 string
- */
- public function post($caseID = 0)
- {
- if(!$caseID) $caseID = $this->param('case');
- if(!$caseID) return $this->sendError(400, 'Need case id.');
- $control = $this->loadController('testtask', 'runCase');
- $case = $this->loadModel('testcase')->getByID($caseID);
- $taskID = $this->param('testtask', 0);
- $version = $this->param('version', $case->version);
- list($runID, $steps) = $this->getStepIDList($taskID, $caseID, $version);
- $this->setPost('case', $caseID);
- $this->setPost('version', $version);
- /* Set steps and expects. */
- if(isset($this->requestBody->steps))
- {
- $results = array();
- $reals = array();
- $count = 0;
- foreach($this->requestBody->steps as $index => $step)
- {
- /* When post data more than case steps, break after take useful data. */
- $count ++;
- if($count > count($steps)) break;
- $stepID = $steps[$index];
- $results[$stepID] = $step->result;
- $reals[$stepID] = $step->real;
- }
- $this->setPost('result', $results);
- $this->setPost('real', $reals);
- }
- $control->runCase($runID, $caseID, $version);
- $data = $this->getData();
- if(isset($data->result) and $data->result == 'fail') return $this->sendError(400, $data->message);
- return $this->send(200, array());
- }
- /**
- * Get steps key.
- *
- * @param int $taskID
- * @access public
- * @return array
- */
- public function getStepIDList($taskID, $caseID, $version)
- {
- if($taskID)
- {
- $run = $this->loadModel('testtask')->getRunByCase($taskID, $caseID);
- $run->case = $this->loadModel('testcase')->getById($caseID, $version);
- }
- else
- {
- $run = new stdclass();
- $run->id = 0;
- $run->case = $this->loadModel('testcase')->getById($caseID, $version);
- }
- $caseIDList = array();
- foreach($run->case->steps as $key => $step)
- {
- /* Unset step if step is a group. */
- if($step->type == 'group')
- {
- unset($run->case->steps[$key]);
- }
- $caseIDList[] = $step->id;
- }
- return array($run->id, $caseIDList);
- }
- }
|