Files
EasySoft-ZenTaoPMS/module/testtask/zen.php
T

271 lines
12 KiB
PHP

<?php
class testtaskZen extends testtask
{
/**
* 根据不同情况设置菜单。
* Set menu according different situations.
*
* @param int $productID
* @param int $branch
* @param int $projectID
* @param int $executionID
* @access protected
* @return void
*/
protected function setMenu(int $productID, int $branch, int $projectID, int $executionID)
{
if($this->app->tab == 'project') return $this->loadModel('project')->setMenu($projectID);
if($this->app->tab == 'execution') return $this->loadModel('execution')->setMenu($executionID);
return $this->loadModel('qa')->setMenu($productID, $branch);
}
/**
* 设置测试单用例列表页面搜索表单的参数。
* Set congiruration of search form in cases page of testtask.
*
* @param object $product
* @param int $moduleID
* @param int $testtaskID
* @param int $queryID
* @access protected
* @return void
*/
protected function setSearchParamsForCases(object $product, int $moduleID, int $testtaskID, int $queryID): void
{
$searchConfig = $this->config->testcase->search;
$searchConfig['module'] = 'testtask';
$searchConfig['queryID'] = $queryID;
$searchConfig['actionURL'] = helper::createLink('testtask', 'cases', "taskID=$testtaskID&browseType=bySearch&queryID=myQueryID");
$searchConfig['params']['scene']['values'] = $this->loadModel('testcase')->getSceneMenu($product->id, $moduleID, 'case', 0, 0);
$searchConfig['params']['module']['values'] = $this->loadModel('tree')->getOptionMenu($product->id, $viewType = 'case');
$searchConfig['params']['lib']['values'] = $this->loadModel('caselib')->getLibraries();
$searchConfig['params']['status']['values'] = $this->lang->testcase->statusList;
$searchConfig['params']['product']['values'] = array($product->id => $product->name, 'all' => $this->lang->testcase->allProduct);
$searchConfig['fields']['assignedTo'] = $this->lang->testtask->assignedTo;
$searchConfig['params']['assignedTo'] = array('operator' => '=', 'control' => 'select', 'values' => 'users');
if(!$this->config->testcase->needReview) unset($searchConfig['params']['status']['values']['wait']);
if($product->shadow) unset($searchConfig['fields']['product']);
unset($searchConfig['fields']['branch']);
unset($searchConfig['params']['branch']);
$this->loadModel('search')->setSearchParams($searchConfig);
}
/**
* 构建编辑的测试单数据。
* Build task for editing.
*
* @param int $taskID
* @param int $productID
* @access protected
* @return object
*/
protected function buildTaskForEdit(int $taskID, int $productID): object
{
$task = form::data($this->config->testtask->form->edit)
->add('id', $taskID)
->add('product', $productID)
->stripTags($this->config->testtask->editor->edit['id'], $this->config->allowedTags)
->get();
$task = $this->loadModel('file')->processImgURL($task, $this->config->testtask->editor->edit['id'], $this->post->uid);
return $task;
}
/**
* 构建开始测试单的数据。
* Build task for start a testtask.
*
* @param int $taskID
* @access protected
* @return object
*/
protected function buildTaskForStart(int $taskID): object
{
$task = form::data($this->config->testtask->form->start)
->add('id', $taskID)
->stripTags($this->config->testtask->editor->start['id'], $this->config->allowedTags)
->get();
return $this->loadModel('file')->processImgURL($task, $this->config->testtask->editor->start['id'], $task->uid);
}
/**
* 构建关闭测试单的数据。
* Build task for close a testtask.
*
* @param int $taskID
* @access protected
* @return object
*/
protected function buildTaskForClose(int $taskID): object
{
$task = form::data($this->config->testtask->form->close)
->add('id', $taskID)
->stripTags($this->config->testtask->editor->close['id'], $this->config->allowedTags)
->get();
return $this->loadModel('file')->processImgURL($task, $this->config->testtask->editor->close['id'], $task->uid);
}
/**
* 构建激活测试单的数据。
* Build task for activate a testtask.
*
* @param int $taskID
* @access protected
* @return object
*/
protected function buildTaskForActivate(int $taskID): object
{
$task = form::data($this->config->testtask->form->activate)
->add('id', $taskID)
->stripTags($this->config->testtask->editor->activate['id'], $this->config->allowedTags)
->get();
return $this->loadModel('file')->processImgURL($task, $this->config->testtask->editor->activate['id'], $task->uid);
}
/**
* 构建阻塞测试单的数据。
* Build task for block a testtask.
*
* @param int $taskID
* @access protected
* @return object
*/
protected function buildTaskForBlock(int $taskID): object
{
$task = form::data($this->config->testtask->form->block)
->add('id', $taskID)
->stripTags($this->config->testtask->editor->block['id'], $this->config->allowedTags)
->get();
return $this->loadModel('file')->processImgURL($task, $this->config->testtask->editor->block['id'], $task->uid);
}
/**
* 检查编辑的测试单数据是否符合要求。
* Check task for editing.
*
* @param object $task
* @access protected
* @return void
*/
protected function checkTaskForEdit(object $task): bool
{
$requiredErrors = array();
/* Check required fields of editing task . */
foreach(explode(',', $this->config->testtask->edit->requiredFields) as $requiredField)
{
if(!isset($task->{$requiredField}) || strlen(trim($task->{$requiredField})) == 0) $requiredErrors[$requiredField][] = sprintf($this->lang->error->notempty, isset($this->lang->testtask->{$requiredField}) ? $this->lang->testtask->$requiredField : $requiredField);
}
if(!empty($requiredErrors)) dao::$errors = $requiredErrors;
if($task->end && $task->begin > $task->end) dao::$errors['end'][] = sprintf($this->lang->error->ge, $this->lang->testtask->end, $this->lang->testtask->begin);
return !dao::isError();
}
/**
* 分配变量给一个测试单的用例列表页。
* Assign variables for cases page of a testtask.
*
* @param object $produc
* @param object $testtask
* @param array $runs
* @param string $browseType
* @param int $param
* @param string $orderBy
* @param object $pager
* @access protected
* @return void
*/
protected function assignForCases(object $product, object $testtask, array $runs, string $browseType, int $param, string $orderBy, object $pager): void
{
$suites = $this->loadModel('testsuite')->getSuitePairs($product->id);
/* Get assignedToList based on the execution. */
$execution = $this->loadModel('execution')->getById($testtask->execution);
if($execution and $execution->acl == 'private')
{
$assignedToList = $this->loadModel('user')->getTeamMemberPairs($execution->id, 'execution', 'nodeleted');
}
else
{
$assignedToList = $this->loadModel('user')->getPairs('noclosed|noletter|nodeleted|qafirst');
}
$this->view->title = $product->name . $this->lang->colon . $this->lang->testtask->cases;
$this->view->runs = $this->loadModel('testcase')->appendData($runs, 'run');
$this->view->users = $this->loadModel('user')->getPairs('noclosed|qafirst|noletter');
$this->view->moduleTree = $this->loadModel('tree')->getTreeMenu($product->id, 'case', 0, array('treeModel', 'createTestTaskLink'), $testtask->id, $testtask->branch);
$this->view->automation = $this->loadModel('zanode')->getAutomationByProduct($product->id);
$this->view->suiteName = $browseType == 'bysuite' ? zget($suites, $param, $this->lang->testtask->browseBySuite) : $this->lang->testtask->browseBySuite;
$this->view->canBeChanged = common::canBeChanged('testtask', $testtask);
$this->view->assignedToList = $assignedToList;
$this->view->suites = $suites;
$this->view->productID = $product->id;
$this->view->task = $testtask;
$this->view->browseType = $browseType;
$this->view->param = $param;
$this->view->orderBy = $orderBy;
$this->view->pager = $pager;
$this->view->setModule = false;
}
/**
* Assign variables for editing test task.
*
* @param object $task
* @param int $productID
* @access protected
* @return void
*/
protected function assignForEdit(object $task, int $productID): void
{
/* Create testtask from testtask of test.*/
$this->loadModel('project');
$productID = $productID ? $productID : key($this->products);
$projectID = $this->lang->navGroup->testtask == 'qa' ? 0 : $this->session->project;
$executionID = $task->execution;
$executions = empty($productID) ? array() : $this->product->getExecutionPairsByProduct($productID, 0, 'id_desc', $projectID);
if($executionID && !isset($executions[$executionID]))
{
$execution = $this->loadModel('execution')->getById($executionID);
$executions[$executionID] = $execution->name;
if(empty($execution->multiple))
{
$project = $this->project->getById($execution->project);
$executions[$executionID] = "{$project->name}({$this->lang->project->disableExecution})";
}
}
$this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->testtask->edit;
$this->view->task = $task;
$this->view->project = $this->project->getByID($projectID);
$this->view->productID = $productID;
$this->view->executions = $executions;
$this->view->builds = empty($productID) ? array() : $this->loadModel('build')->getBuildPairs($productID, 'all', 'noempty,notrunk,withexecution', $executionID ? $executionID : $task->project, $executionID ? 'execution' : 'project', $task->build, false);
$this->view->testreports = $this->loadModel('testreport')->getPairs($task->product, $task->testreport);
$this->view->users = $this->loadModel('user')->getPairs('nodeleted|noclosed', $task->owner);
$this->view->contactLists = $this->user->getContactLists($this->app->user->account, 'withnote');
}
/**
* 根据不同情况获取产品键值对,大多用于1.5级导航。
* Get product key-value pairs according to different situations.
*
* @access protected
* @return array
*/
protected function getProducts(): array
{
/* 如果是在非弹窗页面的项目或执行应用下打开的测试单,则获取当前项目或执行对应的产品。 */
$tab = $this->app->tab;
if(!isonlybody() && ($tab == 'project' || $tab == 'execution')) return $this->loadModel('product')->getProducts($this->session->$tab, 'all', '', false);
/* 如果是在弹窗页面或者测试应用下打开的测试单,则获取所有产品。 */
return $this->loadModel('product')->getPairs('', 0, '', 'all');
}
}