| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- * The testtask 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 testtaskEntry extends entry
- {
- /**
- * GET method.
- *
- * @param int $testtaskID
- * @access public
- * @return string
- */
- public function get($testtaskID)
- {
- $control = $this->loadController('testtask', 'cases');
- $control->cases($testtaskID, 'all', 0, $this->param('order', 'id_desc'), $this->param('total', 0), $this->param('limit', 20), $this->param('page', 1));
- $data = $this->getData();
- if(isset($data->status) and $data->status == 'fail') return $this->sendError(zget($data, 'code', 400), $data->message);
- if(!isset($data->data->task)) $this->sendError(400, 'error');
- $testtask = $data->data->task;
- $testtask->testcases = array();
- foreach($data->data->runs as $run)
- {
- $testtask->testcases[] = $this->format($run, 'openedBy:user,openedDate:time,reviewedBy:user,reviewedDate:date,lastEditedBy:user,lastEditedDate:time');
- }
- return $this->send(200, $this->format($testtask, 'begin:date,end:date,mailto:userList,owner:user,realFinishedDate:time'));
- }
- /**
- * DELETE method.
- *
- * @param int $testtaskID
- * @access public
- * @return string
- */
- public function delete($testtaskID)
- {
- $control = $this->loadController('testtask', 'delete');
- $control->delete($testtaskID, 'yes');
- $this->getData();
- return $this->sendSuccess(200, 'success');
- }
- }
|