414 lines
15 KiB
PHP
414 lines
15 KiB
PHP
<?php
|
|
/**
|
|
* The control file of testsuite module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(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 testsuite
|
|
* @version $Id: control.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
class testsuite extends control
|
|
{
|
|
/**
|
|
* All products.
|
|
*
|
|
* @var array
|
|
* @access public
|
|
*/
|
|
public $products = array();
|
|
|
|
/**
|
|
* Construct function.
|
|
*
|
|
* @param string $moduleName
|
|
* @param string $methodName
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function __construct($moduleName = '', $methodName = '')
|
|
{
|
|
parent::__construct($moduleName, $methodName);
|
|
|
|
$this->view->products = $this->products = $this->loadModel('product')->getPairs('', 0, '', 'all');
|
|
if(empty($this->products) and !helper::isAjaxRequest()) return print($this->locate($this->createLink('product', 'showErrorNone', "moduleName=qa&activeMenu=testsuite")));
|
|
}
|
|
|
|
/**
|
|
* Index page, header to browse.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->locate($this->createLink('testsuite', 'browse'));
|
|
}
|
|
|
|
/**
|
|
* Browse test suites.
|
|
*
|
|
* @param int $productID
|
|
* @param string $type
|
|
* @param string $orderBy
|
|
* @param int $recTotal
|
|
* @param int $recPerPage
|
|
* @param int $pageID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function browse($productID = 0, $type = 'all', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1)
|
|
{
|
|
/* Save session. */
|
|
$this->session->set('testsuiteList', $this->app->getURI(true), 'qa');
|
|
|
|
/* Set menu. */
|
|
$productID = $this->product->saveState($productID, $this->products);
|
|
$this->loadModel('qa')->setMenu($this->products, $productID);
|
|
|
|
/* Load pager. */
|
|
$this->app->loadClass('pager', $static = true);
|
|
$pager = pager::init($recTotal, $recPerPage, $pageID);
|
|
|
|
/* Append id for secend sort. */
|
|
$sort = common::appendOrder($orderBy);
|
|
|
|
$productName = isset($this->products[$productID]) ? $this->products[$productID] : '';
|
|
$suites = $this->testsuite->getSuites($productID, $sort, $pager, $type);
|
|
if(empty($suites) and $pageID > 1)
|
|
{
|
|
$pager = pager::init(0, $recPerPage, 1);
|
|
$suites = $this->testsuite->getSuites($productID, $sort, $pager, $type);
|
|
}
|
|
$privateNum = 0;
|
|
foreach($suites as $suiteItem)
|
|
{
|
|
if($suiteItem->type == 'private')
|
|
{
|
|
$privateNum++;
|
|
}
|
|
}
|
|
$suitesNum = !empty($suites) ? count($suites) : 0;
|
|
$publicNum = $suitesNum - $privateNum;
|
|
$summary = str_replace(array('%total%', '%public%', '%private%'), array($suitesNum, $publicNum, $privateNum), $this->lang->testsuite->summary);
|
|
|
|
$this->view->title = $productName . $this->lang->testsuite->common;
|
|
$this->view->position[] = html::a($this->createLink('testsuite', 'browse', "productID=$productID"), $productName);
|
|
$this->view->position[] = $this->lang->testsuite->common;
|
|
|
|
$this->view->productID = $productID;
|
|
$this->view->productName = $productName;
|
|
$this->view->orderBy = $orderBy;
|
|
$this->view->suites = $suites;
|
|
$this->view->type = $type;
|
|
$this->view->users = $this->loadModel('user')->getPairs('noclosed|noletter');
|
|
$this->view->pager = $pager;
|
|
$this->view->product = $this->product->getByID($productID);
|
|
$this->view->summary = $summary;
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Create a test suite.
|
|
*
|
|
* @param int $productID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function create($productID)
|
|
{
|
|
if(!empty($_POST))
|
|
{
|
|
$response['result'] = 'success';
|
|
$response['message'] = $this->lang->testsuite->successSaved;
|
|
$suiteID = $this->testsuite->create($productID);
|
|
if(dao::isError())
|
|
{
|
|
$response['result'] = 'fail';
|
|
$response['message'] = dao::getError();
|
|
return $this->send($response);
|
|
}
|
|
$actionID = $this->loadModel('action')->create('testsuite', $suiteID, 'opened');
|
|
|
|
$message = $this->executeHooks($suiteID);
|
|
if($message) $response['message'] = $message;
|
|
|
|
if($this->viewType == 'json') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'id' => $suiteID));
|
|
|
|
$response['locate'] = $this->createLink('testsuite', 'browse', "productID=$productID");
|
|
return $this->send($response);
|
|
}
|
|
|
|
/* Set menu. */
|
|
$productID = $this->product->saveState($productID, $this->products);
|
|
$this->loadModel('qa')->setMenu($this->products, $productID);
|
|
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->testsuite->create;
|
|
$this->view->position[] = html::a($this->createLink('testsuite', 'browse', "productID=$productID"), $this->products[$productID]);
|
|
$this->view->position[] = $this->lang->testsuite->common;
|
|
$this->view->position[] = $this->lang->testsuite->create;
|
|
|
|
$this->view->productID = $productID;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* View a test suite.
|
|
*
|
|
* @param int $suiteID
|
|
* @param string $orderBy
|
|
* @param int $recTotal
|
|
* @param int $recPerPage
|
|
* @param int $pageID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function view($suiteID, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1)
|
|
{
|
|
$this->app->loadLang('testtask');
|
|
|
|
/* Get test suite, and set menu. */
|
|
$suite = $this->testsuite->getById($suiteID, true);
|
|
if(!$suite) return print(js::error($this->lang->notFound) . js::locate('back'));
|
|
if($suite->type == 'private' and $suite->addedBy != $this->app->user->account and !$this->app->user->admin) return print(js::error($this->lang->error->accessDenied) . js::locate('back'));
|
|
|
|
/* Set product session. */
|
|
$productID = $this->product->saveState($suite->product, $this->products);
|
|
$this->loadModel('qa')->setMenu($this->products, $productID);
|
|
|
|
/* Save session. */
|
|
$this->session->set('caseList', $this->app->getURI(true), 'qa');
|
|
|
|
/* Append id for secend sort. */
|
|
$sort = common::appendOrder($orderBy);
|
|
|
|
/* Load pager. */
|
|
$this->app->loadClass('pager', $static = true);
|
|
$pager = pager::init($recTotal, $recPerPage, $pageID);
|
|
|
|
$this->executeHooks($suiteID);
|
|
|
|
$this->view->title = "SUITE #$suite->id $suite->name";
|
|
$this->view->position[] = html::a($this->createLink('testsuite', 'browse', "productID=$productID"));
|
|
$this->view->position[] = $this->lang->testsuite->common;
|
|
$this->view->position[] = $this->lang->testsuite->view;
|
|
|
|
$this->view->productID = $productID;
|
|
$this->view->suite = $suite;
|
|
$this->view->users = $this->loadModel('user')->getPairs('noclosed|noletter');
|
|
$this->view->actions = $this->loadModel('action')->getList('testsuite', $suiteID);
|
|
$this->view->cases = $this->testsuite->getLinkedCases($suiteID, $sort, $pager);
|
|
$this->view->orderBy = $orderBy;
|
|
$this->view->pager = $pager;
|
|
$this->view->modules = $this->loadModel('tree')->getOptionMenu($suite->product, 'case', 0, 'all');
|
|
$this->view->branches = $this->loadModel('branch')->getPairs($suite->product);
|
|
$this->view->canBeChanged = common::canBeChanged('testsuite', $suite);
|
|
$this->view->automation = $this->loadModel('zanode')->getAutomationByProduct($productID);
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Edit a test suite.
|
|
*
|
|
* @param int $suiteID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function edit($suiteID)
|
|
{
|
|
$suite = $this->testsuite->getById($suiteID);
|
|
if(!empty($_POST))
|
|
{
|
|
$response['result'] = 'success';
|
|
$response['message'] = $this->lang->testsuite->successSaved;
|
|
$changes = $this->testsuite->update($suiteID);
|
|
if(dao::isError())
|
|
{
|
|
$response['result'] = 'fail';
|
|
$response['message'] = dao::getError();
|
|
return $this->send($response);
|
|
}
|
|
if($changes)
|
|
{
|
|
$actionID = $this->loadModel('action')->create('testsuite', $suiteID, 'edited');
|
|
$this->action->logHistory($actionID, $changes);
|
|
}
|
|
|
|
$messgae = $this->executeHooks($suiteID);
|
|
if($message) $response['message'] = $message;
|
|
|
|
$response['locate'] = inlink('view', "suiteID=$suiteID");
|
|
return $this->send($response);
|
|
}
|
|
|
|
if($suite->type == 'private' and $suite->addedBy != $this->app->user->account and !$this->app->user->admin) return print(js::error($this->lang->error->accessDenied) . js::locate('back'));
|
|
|
|
/* Set product session. */
|
|
$productID = $this->product->saveState($suite->product, $this->products);
|
|
$this->loadModel('qa')->setMenu($this->products, $productID);
|
|
|
|
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->testsuite->edit;
|
|
$this->view->position[] = html::a($this->createLink('testsuite', 'browse', "productID=$productID"));
|
|
$this->view->position[] = $this->lang->testsuite->common;
|
|
$this->view->position[] = $this->lang->testsuite->edit;
|
|
|
|
$this->view->suite = $suite;
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Delete a test suite.
|
|
*
|
|
* @param int $suiteID
|
|
* @param string $confirm yes|no
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function delete($suiteID, $confirm = 'no')
|
|
{
|
|
if($confirm == 'no')
|
|
{
|
|
return print(js::confirm($this->lang->testsuite->confirmDelete, inlink('delete', "suiteID=$suiteID&confirm=yes")));
|
|
}
|
|
else
|
|
{
|
|
$suite = $this->testsuite->getById($suiteID);
|
|
if($suite->type == 'private' and $suite->addedBy != $this->app->user->account and !$this->app->user->admin) return print(js::error($this->lang->error->accessDenied) . js::locate('back'));
|
|
|
|
$this->testsuite->delete($suiteID);
|
|
|
|
$message = $this->executeHooks($suiteID);
|
|
if($message) $response['message'] = $message;
|
|
|
|
/* if ajax request, send result. */
|
|
if($this->server->ajax)
|
|
{
|
|
if(dao::isError())
|
|
{
|
|
$response['result'] = 'fail';
|
|
$response['message'] = dao::getError();
|
|
}
|
|
else
|
|
{
|
|
$response['result'] = 'success';
|
|
$response['message'] = '';
|
|
}
|
|
return $this->send($response);
|
|
}
|
|
return print(js::reload('parent'));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Link cases to a test suite.
|
|
*
|
|
* @param int $suiteID
|
|
* @param int $param
|
|
* @param int $recTotal
|
|
* @param int $recPerPage
|
|
* @param int $pageID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function linkCase($suiteID, $param = 0, $recTotal = 0, $recPerPage = 20, $pageID = 1)
|
|
{
|
|
/* Save session. */
|
|
$this->session->set('caseList', $this->app->getURI(true), 'qa');
|
|
|
|
if(!empty($_POST))
|
|
{
|
|
$this->testsuite->linkCase($suiteID);
|
|
$this->locate(inlink('view', "suiteID=$suiteID"));
|
|
}
|
|
|
|
$suite = $this->testsuite->getById($suiteID);
|
|
|
|
/* Set product session. */
|
|
$productID = $this->product->saveState($suite->product, $this->products);
|
|
$this->loadModel('qa')->setMenu($this->products, $productID);
|
|
|
|
/* Load pager. */
|
|
$this->app->loadClass('pager', $static = true);
|
|
$pager = pager::init($recTotal, $recPerPage, $pageID);
|
|
|
|
/* Build the search form. */
|
|
$this->loadModel('testcase');
|
|
$this->config->testcase->search['params']['module']['values'] = $this->loadModel('tree')->getOptionMenu($productID, $viewType = 'case', 0, 'all');
|
|
$this->config->testcase->search['module'] = 'testsuite';
|
|
$this->config->testcase->search['actionURL'] = inlink('linkCase', "suiteID=$suiteID¶m=myQueryID");
|
|
unset($this->config->testcase->search['fields']['product']);
|
|
unset($this->config->testcase->search['params']['product']);
|
|
unset($this->config->testcase->search['fields']['branch']);
|
|
unset($this->config->testcase->search['params']['branch']);
|
|
|
|
if(!$this->config->testcase->needReview) unset($this->config->testcase->search['params']['status']['values']['wait']);
|
|
$this->loadModel('search')->setSearchParams($this->config->testcase->search);
|
|
|
|
$this->view->title = $suite->name . $this->lang->colon . $this->lang->testsuite->linkCase;
|
|
$this->view->position[] = html::a($this->createLink('testsuite', 'browse', "productID=$productID"));
|
|
$this->view->position[] = $this->lang->testsuite->common;
|
|
$this->view->position[] = $this->lang->testsuite->linkCase;
|
|
|
|
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
|
$this->view->cases = $this->testsuite->getUnlinkedCases($suite, $param, $pager);
|
|
$this->view->suiteID = $suiteID;
|
|
$this->view->pager = $pager;
|
|
$this->view->suite = $suite;
|
|
|
|
$this->display();
|
|
}
|
|
|
|
/**
|
|
* Remove a case from test suite.
|
|
*
|
|
* @param int $suiteID
|
|
* @param int $rowID
|
|
* @param string $confirm
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function unlinkCase($suiteID, $rowID, $confirm = 'no')
|
|
{
|
|
if($confirm == 'no')
|
|
{
|
|
return print(js::confirm($this->lang->testsuite->confirmUnlinkCase, $this->createLink('testsuite', 'unlinkCase', "rowID=$rowID&confirm=yes")));
|
|
}
|
|
else
|
|
{
|
|
$response['result'] = 'success';
|
|
$response['message'] = '';
|
|
|
|
$this->dao->delete()->from(TABLE_SUITECASE)->where('`case`')->eq((int)$rowID)->andWhere('suite')->eq($suiteID)->exec();
|
|
if(dao::isError())
|
|
{
|
|
$response['result'] = 'fail';
|
|
$response['message'] = dao::getError();
|
|
}
|
|
return $this->send($response);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Batch unlink cases.
|
|
*
|
|
* @param int $suiteID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function batchUnlinkCases($suiteID)
|
|
{
|
|
if(isset($_POST['caseIDList']))
|
|
{
|
|
$this->dao->delete()->from(TABLE_SUITECASE)
|
|
->where('suite')->eq((int)$suiteID)
|
|
->andWhere('`case`')->in($this->post->caseIDList)
|
|
->exec();
|
|
}
|
|
|
|
return print(js::locate($this->createLink('testsuite', 'view', "suiteID=$suiteID")));
|
|
}
|
|
}
|