* @package testtask * @version $Id: model.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $ * @link http://www.zentao.net */ ?> dao->insert(TABLE_TESTTASK)->data($testtask) ->autoCheck($skipFields = 'begin,end') ->batchcheck($this->config->testtask->create->requiredFields, 'notempty') ->checkIF(!empty($testtask->begin) && $testtask->begin != '', 'begin', 'date') ->checkIF(!empty($testtask->end) && $testtask->end != '', 'end', 'date') ->checkIF(!empty($testtask->begin) && $testtask->begin != '', 'end', 'ge', zget($testtask, 'begin', '')) ->checkFlow() ->exec(); if(dao::isError()) return false; $taskID = $this->dao->lastInsertID(); $this->loadModel('action')->create('testtask', $taskID, 'opened'); return $taskID; } /** * Get test tasks of a product. * * @param int $productID * @param string $branch * @param string $type * @param string $begin * @param string $end * @param string $orderBy * @param object $pager * @access public * @return array */ public function getProductTasks(int $productID, string $branch = 'all', string $type = '', string $begin = '', string $end = '', string $orderBy = 'id_desc', object $pager = null): array { $scopeAndStatus = explode(',', $type); $scope = !empty($scopeAndStatus[0]) ? $scopeAndStatus[0] : ''; $status = !empty($scopeAndStatus[1]) ? $scopeAndStatus[1] : ''; $branch = $scope == 'all' ? 'all' : $branch; $tasks = $this->fetchTesttaskList($productID, $branch, 0, '', $scope, $status, $begin, $end, $orderBy, $pager); foreach($tasks as $taskID => $task) { if($task->multiple) { if($task->projectName and $task->executionName) { $task->executionName = $task->projectName . '/' . $task->executionName; } elseif(!$task->executionName) { $task->executionName = $task->projectName; } } } return $tasks; } /** * 获取产品对应的单元测试类型的测试单。 * Get product unit tasks. * * @param int $productID * @param string $browseType * @param string $orderBy * @param object $pager * @access public * @return array */ public function getProductUnitTasks(int $productID, string $browseType = 'newest', string $orderBy = 'id_desc', object $pager = null): array { $begin = ''; $end = ''; $beginAndEnd = $this->loadModel('action')->computeBeginAndEnd($browseType); if($browseType != 'all' and $browseType != 'newest' and !empty($beginAndEnd)) { $begin = $beginAndEnd['begin']; $end = $beginAndEnd['end']; } if($browseType == 'newest') $orderBy = 'end_desc,' . $orderBy; $projectID = $this->lang->navGroup->testtask != 'qa' ? $this->session->project : 0; $tasks = $this->fetchTesttaskList($productID, '', 0, 'unit', 'local', '', $begin, $end, $orderBy, $pager); $resultGroups = $this->dao->select('t1.task, t2.*')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_TESTRESULT)->alias('t2')->on('t1.id=t2.run') ->where('t1.task')->in(array_keys($tasks)) ->fetchGroup('task', 'run'); /* 计算本测试单执行的用例数、成功数、失败数。 */ foreach($tasks as $taskID => $task) { $results = zget($resultGroups, $taskID, array()); $task->caseCount = count($results); $task->passCount = 0; $task->failCount = 0; foreach($results as $result) { if($result->caseResult == 'pass') $task->passCount ++; if($result->caseResult == 'fail') $task->failCount ++; } if($task->multiple) { if($task->projectName and $task->executionName) { $task->executionName = $task->projectName . '/' . $task->executionName; } elseif(!$task->executionName) { $task->executionName = $task->projectName; } } } return $tasks; } /** * Get test tasks of a project. * * @param int $projectID * @param string $orderBy * @param object $pager * @access public * @return array */ public function getProjectTasks($projectID, $orderBy = 'id_desc', $pager = null) { $tasks = $this->dao->select('t1.*, t5.multiple, IF(t4.shadow = 1, t5.name, t4.name) AS productName, t3.name as executionName, t2.name AS buildName, t2.branch AS branch, t5.name AS projectName') ->from(TABLE_TESTTASK)->alias('t1') ->leftJoin(TABLE_BUILD)->alias('t2')->on('t1.build = t2.id') ->leftJoin(TABLE_EXECUTION)->alias('t3')->on('t1.execution = t3.id') ->leftJoin(TABLE_PRODUCT)->alias('t4')->on('t1.product = t4.id') ->leftJoin(TABLE_PROJECT)->alias('t5')->on('t3.project = t5.id') ->where('t1.project')->eq((int)$projectID) ->andWhere('t1.auto')->ne('unit') ->andWhere('t1.deleted')->eq(0) ->orderBy($orderBy) ->page($pager) ->fetchAll('id'); foreach($tasks as $taskID => $task) { if($task->multiple) { if($task->projectName and $task->executionName) { $tasks[$taskID]->executionName = $task->projectName . '/' . $task->executionName; } elseif(!$task->executionName) { $tasks[$taskID]->executionName = $task->projectName; } } } return $tasks; } /** * Get test tasks of a execution. * * @param int $executionID * @param string $orderBy * @param object $pager * @access public * @return array */ public function getExecutionTasks($executionID, $objectType = 'execution', $orderBy = 'id_desc', $pager = null) { return $this->dao->select('t1.*, t2.name AS buildName, t3.name AS productName') ->from(TABLE_TESTTASK)->alias('t1') ->leftJoin(TABLE_BUILD)->alias('t2')->on('t1.build = t2.id') ->leftJoin(TABLE_PRODUCT)->alias('t3')->on('t1.product = t3.id') ->where('t1.deleted')->eq(0) ->beginIF($objectType == 'execution')->andWhere('t1.execution')->eq((int)$executionID)->fi() ->beginIF($objectType == 'project')->andWhere('t1.project')->eq((int)$executionID)->fi() ->andWhere('t1.auto')->ne('unit') ->orderBy($orderBy) ->page($pager) ->fetchAll('id'); } /** * 获取测试单键值对。 * Get key-value pairs of testtask. * * @param int $productID * @param int $executionID * @param string|array $appendIdList * @access public * @return array */ public function getPairs(int $productID, int $executionID = 0, string|array $appendIdList = ''): array { $pairs = $this->dao->select('id, name')->from(TABLE_TESTTASK) ->where('deleted')->eq('0') ->andWhere('product')->eq($productID) ->beginIF($executionID)->andWhere('execution')->eq($executionID)->fi() ->andWhere('auto')->ne('unit') ->orderBy('id_desc') ->fetchPairs(); if($appendIdList) $pairs += $this->dao->select('id, name')->from(TABLE_TESTTASK)->where('id')->in($appendIdList)->andWhere('auto')->ne('unit')->fetchPairs(); return $pairs; } /** * Get task by idList. * * @param array $idList * @access public * @return array */ public function getByList($idList) { return $this->dao->select('*')->from(TABLE_TESTTASK)->where('id')->in($idList)->fetchAll('id'); } /** * 根据ID获取单条测试单的数据。 * Get test task info by id. * * @param int $taskID * @param bool $setImgSize * @access public * @return object|false */ public function getByID(int $testtaskID, bool $setImgSize = false): object|false { $testtask = $this->dao->select('*')->from(TABLE_TESTTASK)->where('id')->eq($testtaskID)->fetch(); if($testtask) { $product = $this->dao->select('name,type')->from(TABLE_PRODUCT)->where('id')->eq($testtask->product)->fetch(); $testtask->productName = $product->name; $testtask->productType = $product->type; $testtask->branch = 0; $testtask->executionName = ''; $testtask->buildName = ''; if($testtask->execution) { $testtask->executionName = $this->dao->select('name')->from(TABLE_EXECUTION)->where('id')->eq($testtask->execution)->fetch('name'); $testtask->branch = $this->dao->select('branch')->from(TABLE_PROJECTPRODUCT)->where('project')->eq($testtask->execution)->andWhere('product')->eq($testtask->product)->fetch('branch'); } if($testtask->build) { $build = $this->dao->select('branch,name')->from(TABLE_BUILD)->where('id')->eq($testtask->build)->fetch(); $testtask->buildName = zget($build, 'name', ''); $testtask->branch = zget($build, 'branch', ''); } } if(!$testtask) return false; $testtask = $this->loadModel('file')->replaceImgURL($testtask, 'desc'); if($setImgSize) $testtask->desc = $this->loadModel('file')->setImgSize($testtask->desc); $testtask->files = $this->loadModel('file')->getByObject('testtask', $testtask->id); return $testtask; } /** * Get test tasks by user. * * @param string $account * @access public * @return array */ public function getByUser($account, $pager = null, $orderBy = 'id_desc', $type = '') { return $this->dao->select("t1.*, t2.name AS executionName, t2.multiple AS executionMultiple, t5.name AS projectName, t3.name AS buildName, t4.name AS productName") ->from(TABLE_TESTTASK)->alias('t1') ->leftJoin(TABLE_EXECUTION)->alias('t2')->on('t1.execution = t2.id') ->leftJoin(TABLE_BUILD)->alias('t3')->on('t1.build = t3.id') ->leftJoin(TABLE_PRODUCT)->alias('t4')->on('t1.product = t4.id') ->leftJoin(TABLE_PROJECT)->alias('t5')->on('t2.project = t5.id') ->where('t1.deleted')->eq(0) ->andWhere('t4.deleted')->eq(0) ->andWhere('t1.auto')->ne('unit') ->andWhere('t1.owner')->eq($account) ->andWhere('t2.id')->in($this->app->user->view->sprints) ->beginIF($type == 'wait')->andWhere('t1.status')->ne('done')->fi() ->beginIF($type == 'done')->andWhere('t1.status')->eq('done')->fi() ->orderBy($orderBy) ->page($pager) ->fetchAll(); } /** * Get taskrun by case id. * * @param int $taskID * @param int $caseID * @access public * @return void */ public function getRunByCase($taskID, $caseID) { return $this->dao->select('*')->from(TABLE_TESTRUN)->where('task')->eq($taskID)->andWhere('`case`')->eq($caseID)->fetch(); } /** * Get linkable casses. * * @param int $productID * @param object $task * @param int $taskID * @param string $type * @param string $param * @param object $pager * @access public * @return array */ public function getLinkableCases($productID, $task, $taskID, $type, $param, $pager) { if($this->session->testcaseQuery == false) $this->session->set('testcaseQuery', ' 1 = 1'); $query = $this->session->testcaseQuery; $allProduct = "`product` = 'all'"; if(strpos($query, '`product` =') === false && $type != 'bysuite') $query .= " AND `product` = $productID"; if(strpos($query, $allProduct) !== false) $query = str_replace($allProduct, '1', $query); $cases = array(); $linkedCases = $this->dao->select('`case`')->from(TABLE_TESTRUN)->where('task')->eq($taskID)->fetchPairs('case'); if($type == 'all') $cases = $this->getAllLinkableCases($task, $query, $linkedCases, $pager); if($type == 'bystory') $cases = $this->getLinkableCasesByStory($productID, $task, $query, $linkedCases, $pager); if($type == 'bybug') $cases = $this->getLinkableCasesByBug($productID, $task, $query, $linkedCases, $pager); if($type == 'bysuite') $cases = $this->getLinkableCasesBySuite($productID, $task, $query, $param, $linkedCases, $pager); if($type == 'bybuild') $cases = $this->getLinkableCasesByTestTask($param, $linkedCases, $query, $pager); return $cases; } /** * Get all linkable cases. * * @param object $task * @param string $query * @param array $linkedCases * @param object $pager * @access public * @return array */ public function getAllLinkableCases($task, $query, $linkedCases, $pager) { return $this->dao->select('*')->from(TABLE_CASE)->where($query) ->beginIF(!empty($linkedCases))->andWhere('id')->notIN($linkedCases)->fi() ->andWhere('status')->ne('wait') ->andWhere('type')->ne('unit') ->beginIF($task->branch !== '')->andWhere('branch')->in("0,$task->branch")->fi() ->andWhere('deleted')->eq(0) ->orderBy('id desc') ->page($pager) ->fetchAll(); } /** * Get linkable cases by story. * * @param int $productID * @param object $task * @param string $query * @param array $linkedCases * @param object $pager * @access public * @return array */ public function getLinkableCasesByStory($productID, $task, $query, $linkedCases, $pager) { $stories = $this->dao->select('stories')->from(TABLE_BUILD)->where('id')->eq($task->build)->fetch('stories'); $cases = array(); $query = preg_replace('/`(\w+)`/', 't1.`$1`', $query); if($stories) { $cases = $this->dao->select('t1.*,t2.title as storyTitle')->from(TABLE_CASE)->alias('t1') ->leftJoin(TABLE_STORY)->alias('t2')->on('t1.story = t2.id') ->where($query) ->beginIF($this->lang->navGroup->testtask != 'qa')->andWhere('t1.project')->eq($this->session->project)->fi() ->andWhere('t1.product')->eq($productID) ->andWhere('t1.status')->ne('wait') ->beginIF(!empty($linkedCases))->andWhere('t1.id')->notIN($linkedCases)->fi() ->beginIF($task->branch !== '')->andWhere('t1.branch')->in("0,$task->branch")->fi() ->andWhere('t1.story')->in(trim($stories, ',')) ->andWhere('t1.deleted')->eq(0) ->orderBy('t1.id desc') ->page($pager) ->fetchAll(); } return $cases; } /** * Get linkable cases by bug. * * @param int $productID * @param object $task * @param string $query * @param array $linkedCases * @param object $pager * @access public * @return array */ public function getLinkableCasesByBug($productID, $task, $query, $linkedCases, $pager) { $bugs = $this->dao->select('bugs')->from(TABLE_BUILD)->where('id')->eq($task->build)->fetch('bugs'); $cases = array(); if($bugs) { $cases = $this->dao->select('*')->from(TABLE_CASE)->where($query) ->beginIF($this->lang->navGroup->testtask != 'qa')->andWhere('project')->eq($this->session->project)->fi() ->andWhere('product')->eq($productID) ->andWhere('status')->ne('wait') ->beginIF($linkedCases)->andWhere('id')->notIN($linkedCases)->fi() ->beginIF($task->branch !== '')->andWhere('branch')->in("0,$task->branch")->fi() ->andWhere('fromBug')->in(trim($bugs, ',')) ->andWhere('deleted')->eq(0) ->orderBy('id desc') ->page($pager) ->fetchAll(); } return $cases; } /** * Get linkable cases by suite. * * @param int $productID * @param object $task * @param string $query * @param string $suite * @param array $linkedCases * @param object $pager * @access public * @return array */ public function getLinkableCasesBySuite($productID, $task, $query, $suite, $linkedCases, $pager) { if(strpos($query, '`product`') !== false) $query = str_replace('`product`', 't1.`product`', $query); return $this->dao->select('t1.*,t2.version as version')->from(TABLE_CASE)->alias('t1') ->leftJoin(TABLE_SUITECASE)->alias('t2')->on('t1.id=t2.case') ->where($query) ->beginIF($this->lang->navGroup->testtask != 'qa')->andWhere('t1.project')->eq($this->session->project)->fi() ->andWhere('t2.suite')->eq((int)$suite) ->andWhere('t1.product')->eq($productID) ->andWhere('status')->ne('wait') ->beginIF($linkedCases)->andWhere('t1.id')->notIN($linkedCases)->fi() ->beginIF($task->branch !== '')->andWhere('t1.branch')->in("0,$task->branch")->fi() ->andWhere('deleted')->eq(0) ->orderBy('id desc') ->page($pager) ->fetchAll(); } /** * Get linkeable cases by test task. * * @param string $testTask * @param array $linkedCases * @param string $query * @param object $pager * @access public * @return array */ public function getLinkableCasesByTestTask($testTask, $linkedCases, $query, $pager) { /* Format the query condition. */ $query = preg_replace('/`(\w+)`/', 't1.`$1`', $query); $query = str_replace('t1.`lastRunner`', 't2.`lastRunner`', $query); $query = str_replace('t1.`lastRunDate`', 't2.`lastRunDate`', $query); $query = str_replace('t1.`lastRunResult`', 't2.`lastRunResult`', $query); return $this->dao->select("t1.*,t2.lastRunner,t2.lastRunDate,t2.lastRunResult")->from(TABLE_CASE)->alias('t1') ->leftJoin(TABLE_TESTRUN)->alias('t2')->on('t1.id = t2.case') ->where($query) ->andWhere('t1.id')->notin($linkedCases) ->andWhere('t2.task')->eq($testTask) ->beginIF($this->lang->navGroup->testtask != 'qa')->andWhere('t1.project')->eq($this->session->project)->fi() ->andWhere('t1.status')->ne('wait') ->page($pager) ->fetchAll(); } /** * Get related test tasks. * * @param int $productID * @param int $testtaskID * @access public * @return array */ public function getRelatedTestTasks($productID, $testTaskID) { $beginDate = $this->dao->select('begin')->from(TABLE_TESTTASK)->where('id')->eq($testTaskID)->fetch('begin'); return $this->dao->select('id, name')->from(TABLE_TESTTASK) ->where('product')->eq($productID) ->andWhere('auto')->ne('unit') ->beginIF($beginDate)->andWhere('begin')->le($beginDate)->fi() ->andWhere('deleted')->eq('0') ->andWhere('id')->notin($testTaskID) ->orderBy('begin desc') ->fetchPairs('id', 'name'); } /** * Get report data of test task per run result. * * @param int $taskID * @access public * @return array */ public function getDataOfTestTaskPerRunResult($taskID) { $datas = $this->dao->select("t1.lastRunResult AS name, COUNT('t1.*') AS value")->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2') ->on('t1.case = t2.id') ->where('t1.task')->eq($taskID) ->andWhere('t2.deleted')->eq(0) ->groupBy('t1.lastRunResult') ->orderBy('value DESC') ->fetchAll('name'); if(!$datas) return array(); $this->app->loadLang('testcase'); foreach($datas as $result => $data) $data->name = isset($this->lang->testcase->resultList[$result])? $this->lang->testcase->resultList[$result] : $this->lang->testtask->unexecuted; return $datas; } /** * Get report data of test task per Type. * * @param int $taskID * @access public * @return array */ public function getDataOfTestTaskPerType($taskID) { $datas = $this->dao->select('t2.type as name,count(*) as value')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->where('t1.task')->eq($taskID) ->andWhere('t2.deleted')->eq(0) ->groupBy('t2.type') ->orderBy('value desc') ->fetchAll('name'); if(!$datas) return array(); foreach($datas as $result => $data) if(isset($this->lang->testcase->typeList[$result])) $data->name = $this->lang->testcase->typeList[$result]; return $datas; } /** * Get report data of test task per module * * @param int $taskID * @access public * @return array */ public function getDataOfTestTaskPerModule($taskID) { $datas = $this->dao->select('t2.module as name,count(*) as value')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->where('t1.task')->eq($taskID) ->andWhere('t2.deleted')->eq(0) ->groupBy('t2.module') ->orderBy('value desc') ->fetchAll('name'); if(!$datas) return array(); $modules = $this->loadModel('tree')->getModulesName(array_keys($datas)); foreach($datas as $moduleID => $data) $data->name = isset($modules[$moduleID]) ? $modules[$moduleID] : '/'; return $datas; } /** * Get report data of test task per runner * * @param int $taskID * @access public * @return array */ public function getDataOfTestTaskPerRunner($taskID) { $datas = $this->dao->select("t1.lastRunner AS name, COUNT('t1.*') AS value")->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->where('t1.task')->eq($taskID) ->andWhere('t2.deleted')->eq(0) ->groupBy('t1.lastRunner') ->orderBy('value DESC') ->fetchAll('name'); if(!$datas) return array(); $users = $this->loadModel('user')->getPairs('noclosed|noletter'); foreach($datas as $result => $data) $data->name = $result ? zget($users, $result, $result) : $this->lang->testtask->unexecuted; return $datas; } /** * Get bug info. * * @param int $taskID * @param int $productID * @access public * @return array */ public function getBugInfo($taskID, $productID) { $foundBugs = $this->dao->select('*')->from(TABLE_BUG)->where('product')->in($productID)->andWhere('testtask')->eq($taskID)->andWhere('deleted')->eq(0)->fetchAll(); $severityGroups = $statusGroups = $openedByGroups = $resolvedByGroups = $resolutionGroups = $moduleGroups = array(); $resolvedBugs = 0; foreach($foundBugs as $bug) { $severityGroups[$bug->severity] = isset($severityGroups[$bug->severity]) ? $severityGroups[$bug->severity] + 1 : 1; $statusGroups[$bug->status] = isset($statusGroups[$bug->status]) ? $statusGroups[$bug->status] + 1 : 1; $openedByGroups[$bug->openedBy] = isset($openedByGroups[$bug->openedBy]) ? $openedByGroups[$bug->openedBy] + 1 : 1; $moduleGroups[$bug->module] = isset($moduleGroups[$bug->module]) ? $moduleGroups[$bug->module] + 1 : 1; if($bug->resolvedBy) $resolvedByGroups[$bug->resolvedBy] = isset($resolvedByGroups[$bug->resolvedBy]) ? $resolvedByGroups[$bug->resolvedBy] + 1 : 1; if($bug->resolution) $resolutionGroups[$bug->resolution] = isset($resolutionGroups[$bug->resolution]) ? $resolutionGroups[$bug->resolution] + 1 : 1; if($bug->status == 'resolved' or $bug->status == 'closed') $resolvedBugs ++; } $bugInfo['bugConfirmedRate'] = empty($resolvedBugs) ? 0 : round((zget($resolutionGroups, 'fixed', 0) + zget($resolutionGroups, 'postponed', 0)) / $resolvedBugs * 100, 2); $bugInfo['bugCreateByCaseRate'] = empty($byCaseNum) ? 0 : round($byCaseNum / count($foundBugs) * 100, 2); $this->app->loadLang('bug'); $users = $this->loadModel('user')->getPairs('noclosed|noletter|nodeleted'); $data = array(); foreach($severityGroups as $severity => $count) { $data[$severity] = new stdclass(); $data[$severity]->name = zget($this->lang->bug->severityList, $severity); $data[$severity]->value = $count; } $bugInfo['bugSeverityGroups'] = $data; $data = array(); foreach($statusGroups as $status => $count) { $data[$status] = new stdclass(); $data[$status]->name = zget($this->lang->bug->statusList, $status); $data[$status]->value = $count; } $bugInfo['bugStatusGroups'] = $data; $data = array(); foreach($resolutionGroups as $resolution => $count) { $data[$resolution] = new stdclass(); $data[$resolution]->name = zget($this->lang->bug->resolutionList, $resolution); $data[$resolution]->value = $count; } $bugInfo['bugResolutionGroups'] = $data; $data = array(); foreach($openedByGroups as $openedBy => $count) { $data[$openedBy] = new stdclass(); $data[$openedBy]->name = zget($users, $openedBy); $data[$openedBy]->value = $count; } $bugInfo['bugOpenedByGroups'] = $data; $this->loadModel('tree'); $modules = $this->tree->getOptionMenu($productID, $viewType = 'bug'); $data = array(); foreach($moduleGroups as $moduleID => $count) { $data[$moduleID] = new stdclass(); $data[$moduleID]->name = zget($modules, $moduleID); $data[$moduleID]->value = $count; } $bugInfo['bugModuleGroups'] = $data; $data = array(); foreach($resolvedByGroups as $resolvedBy => $count) { $data[$resolvedBy] = new stdclass(); $data[$resolvedBy]->name = zget($users, $resolvedBy); $data[$resolvedBy]->value = $count; } $bugInfo['bugResolvedByGroups'] = $data; return $bugInfo; } /** * Merge the default chart settings and the settings of current chart. * * @param string $chartType * @access public * @return void */ public function mergeChartOption($chartType) { $chartOption = isset($this->lang->testtask->report->$chartType) ? $this->lang->testtask->report->$chartType : new stdclass(); $commonOption = $this->lang->testtask->report->options; if(!isset($chartOption->graph)) $chartOption->graph = new stdclass(); $chartOption->graph->caption = $this->lang->testtask->report->charts[$chartType]; if(!isset($chartOption->type)) $chartOption->type = $commonOption->type; if(!isset($chartOption->width)) $chartOption->width = $commonOption->width; if(!isset($chartOption->height)) $chartOption->height = $commonOption->height; /* 合并配置。*/ foreach($commonOption->graph as $key => $value) if(!isset($chartOption->graph->$key)) $chartOption->graph->$key = $value; return $chartOption; } /** * 更新测试单。 * Update a test task. * * @param object $task * @access public * @return array|bool */ public function update(object $task, object $oldTask): array|bool { $this->dao->update(TABLE_TESTTASK)->data($task, 'deleteFiles') ->autoCheck() ->batchcheck($this->config->testtask->edit->requiredFields, 'notempty') ->checkIF($task->end != '', 'end', 'ge', $task->begin) ->checkFlow() ->where('id')->eq($task->id) ->exec(); if(dao::isError()) return false; $this->loadModel('file')->processFile4Object('testtask', $oldTask, $task); return common::createChanges($oldTask, $task); } /** * 开始一个测试单。 * Start testtask. * * @param object $task * @access public * @return bool */ public function start(object $task): bool { $taskID = (int)$task->id; $oldTask = $this->fetchByID($taskID); if(!$oldTask || !self::isClickable($oldTask, 'start')) return false; $this->dao->update(TABLE_TESTTASK)->data($task, 'comment,uid') ->autoCheck() ->checkFlow() ->where('id')->eq($taskID) ->exec(); if(dao::isError()) return false; $changes = common::createChanges($oldTask, $task); if($changes || $task->comment) { $actionID = $this->loadModel('action')->create('testtask', $taskID, 'Started', $task->comment); $this->action->logHistory($actionID, $changes); } return !dao::isError(); } /** * 关闭一个测试单。 * Close a testtask. * * @param object $task * @access public * @return bool */ public function close(object $task): bool { $taskID = (int)$task->id; $oldTask = $this->fetchByID($taskID); if(!$oldTask || !self::isClickable($oldTask, 'close')) return false; if($task->realFinishedDate <= $oldTask->begin) dao::$errors['realFinishedDate'][] = sprintf($this->lang->testtask->finishedDateLess, $oldTask->begin); if($task->realFinishedDate > date("Y-m-d 00:00:00", strtotime("+1 day"))) dao::$errors['realFinishedDate'][] = $this->lang->testtask->finishedDateMore; if(dao::isError()) return false; $this->dao->update(TABLE_TESTTASK)->data($task, 'comment,uid') ->autoCheck() ->checkFlow() ->where('id')->eq($taskID) ->exec(); if(dao::isError()) return false; $changes = common::createChanges($oldTask, $task); if($changes || $task->comment) { $actionID = $this->loadModel('action')->create('testtask', $taskID, 'Closed', $task->comment); $this->action->logHistory($actionID, $changes); } return !dao::isError(); } /** * 阻塞一个测试单。 * Block a testtask. * * @param object $task * @access public * @return bool */ public function block(object $task): bool { $taskID = (int)$task->id; $oldTask = $this->fetchByID($taskID); if(!$oldTask || !self::isClickable($oldTask, 'block')) return false; $this->dao->update(TABLE_TESTTASK)->data($task, 'comment,uid') ->autoCheck() ->checkFlow() ->where('id')->eq($taskID) ->exec(); if(dao::isError()) return false; $changes = common::createChanges($oldTask, $task); if($changes || $task->comment) { $actionID = $this->loadModel('action')->create('testtask', $taskID, 'Blocked', $task->comment); $this->action->logHistory($actionID, $changes); } return !dao::isError(); } /** * 激活一个测试单。 * Activate a testtask. * * @param object $task * @access public * @return bool */ public function activate(object $task): bool { $taskID = (int)$task->id; $oldTask = $this->fetchByID($taskID); if(!$oldTask || !self::isClickable($oldTask, 'activate')) return false; $this->dao->update(TABLE_TESTTASK)->data($task, 'comment,uid') ->autoCheck() ->checkFlow() ->where('id')->eq($taskID) ->exec(); if(dao::isError()) return false; $changes = common::createChanges($oldTask, $task); if($changes || $task->comment) { $actionID = $this->loadModel('action')->create('testtask', $taskID, 'Activated', $task->comment); $this->action->logHistory($actionID, $changes); } return !dao::isError(); } /** * Link cases. * * @param int $taskID * @param string $type * @access public * @return void */ public function linkCase($taskID, $type) { if($this->post->cases == false) return; $postData = fixer::input('post')->get(); if($type == 'bybuild') $assignedToPairs = $this->dao->select('`case`, assignedTo')->from(TABLE_TESTRUN)->where('`case`')->in($postData)->fetchPairs('case', 'assignedTo'); foreach($postData->cases as $caseID) { $row = new stdclass(); $row->task = $taskID; $row->case = $caseID; $row->version = $postData->versions[$caseID]; $row->assignedTo = ''; $row->status = 'normal'; if($type == 'bybuild') $row->assignedTo = zget($assignedToPairs, $caseID, ''); $this->dao->replace(TABLE_TESTRUN)->data($row)->exec(); /* When the cases linked the testtask, the cases link to the project. */ if($this->app->tab != 'qa') { $projectID = $this->app->tab == 'project' ? $this->session->project : $this->session->execution; $lastOrder = (int)$this->dao->select('*')->from(TABLE_PROJECTCASE)->where('project')->eq($projectID)->orderBy('order_desc')->limit(1)->fetch('order'); $data = new stdclass(); $data->project = $projectID; $data->product = $this->session->product; $data->case = $caseID; $data->version = 1; $data->order = ++ $lastOrder; $this->dao->replace(TABLE_PROJECTCASE)->data($data)->exec(); } $this->loadModel('action')->create('case', $caseID, 'linked2testtask', '', $taskID); } } /** * 从测试单移除一个用例。 * Remove a case from a testtask. * * @param int $runID * @access public * @return bool */ public function unlinkCase(int $runID): bool { $run = $this->dao->select('t1.task,t1.`case`,t2.story')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case=t2.id') ->where('t1.id')->eq($runID) ->fetch(); if(!$run) return false; $linkedProjects = $run->story ? $this->dao->select('project')->from(TABLE_PROJECTSTORY)->where('story')->eq($run->story)->fetchPairs() : array(); if($linkedProjects) $this->dao->delete()->from(TABLE_PROJECTCASE)->where('`case`')->eq($run->case)->andWhere('project')->notin($linkedProjects)->exec(); $this->dao->delete()->from(TABLE_TESTRUN)->where('id')->eq($runID)->exec(); $this->loadModel('action')->create('case' ,$run->case, 'unlinkedfromtesttask', '', $run->task); return !dao::isError(); } /** * 批量从测试单移除用例。 * Batch remove cases from a testtask. * * @param int $taskID * @param array $caseIdList * @access public * @return bool */ public function batchUnlinkCases(int $taskID, array $caseIdList): bool { if(!$taskID || !$caseIdList) return false; $cases = $this->dao->select('`case`')->from(TABLE_TESTRUN)->where('task')->eq($taskID)->andWhere('`case`')->in($caseIdList)->fetchPairs(); if(!$cases) return false; $this->dao->delete()->from(TABLE_TESTRUN)->where('task')->eq($taskID)->andWhere('`case`')->in($cases)->exec(); if(dao::isError()) return false; $this->loadModel('action'); foreach($cases as $caseID) $this->action->create('case', $caseID, 'unlinkedfromtesttask', '', $taskID); return !dao::isError(); } /** * 批量指派一个测试单中的用例。 * Batch assign cases in a testtask. * * @param int $taskID * @param string $account * @param array $caseIdList * @access public * @return bool */ public function batchAssign(int $taskID, string $account, array $caseIdList): bool { if(!$taskID || !$account || !$caseIdList) return false; $cases = $this->dao->select('`case`')->from(TABLE_TESTRUN)->where('task')->eq($taskID)->andWhere('`case`')->in($caseIdList)->fetchPairs(); if(!$cases) return false; $this->dao->update(TABLE_TESTRUN)->set('assignedTo')->eq($account)->where('task')->eq($taskID)->andWhere('`case`')->in($cases)->exec(); if(dao::isError()) return false; $this->loadModel('action'); foreach($cases as $caseID) $this->action->create('case', $caseID, 'assigned', '', $account); return !dao::isError(); } /** * Get test runs of a test task. * * @param int $taskID * @param int $moduleID * @param object $pager * @access public * @return array */ public function getRuns($taskID, $moduleID, $orderBy, $pager = null) { /* Select the table for these special fields. */ $specialFields = ',assignedTo,status,lastRunResult,lastRunner,lastRunDate,'; $fieldToSort = substr($orderBy, 0, strpos($orderBy, '_')); $orderBy = strpos($specialFields, ',' . $fieldToSort . ',') !== false ? ('t1.' . $orderBy) : ('t2.' . $orderBy); return $this->dao->select('t2.*,t1.*,t2.version as caseVersion,t3.title as storyTitle,t2.status as caseStatus')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->leftJoin(TABLE_STORY)->alias('t3')->on('t2.story = t3.id') ->where('t1.task')->eq((int)$taskID) ->andWhere('t2.deleted')->eq(0) ->beginIF($moduleID)->andWhere('t2.module')->in($moduleID)->fi() ->orderBy($orderBy) ->page($pager) ->fetchAll('id'); } /** * Get test runs of a suite. * * @param int $taskID * @param int $suiteID * @param string $orderBy * @param object $pager * @access public * @return array */ public function getRunsBySuite($taskID, $suiteID, $orderBy, $pager = null) { /* Select the table for these special fields. */ $specialFields = ',assignedTo,status,lastRunResult,lastRunner,lastRunDate,'; $fieldToSort = substr($orderBy, 0, strpos($orderBy, '_')); $orderBy = strpos($specialFields, ',' . $fieldToSort . ',') !== false ? ('t1.' . $orderBy) : ('t2.' . $orderBy); $cases = $this->loadModel('testsuite')->getLinkedCasePairs($suiteID); return $this->dao->select('t2.*,t1.*,t2.version as caseVersion,t3.title as storyTitle,t2.status as caseStatus')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->leftJoin(TABLE_STORY)->alias('t3')->on('t2.story = t3.id') ->where('t1.task')->eq((int)$taskID) ->andWhere('t2.deleted')->eq(0) ->andWhere('t2.id')->in(array_keys($cases)) ->orderBy($orderBy) ->page($pager) ->fetchAll('id'); } /** * 按照测试单分组展示用例。 * Group case run by suite. * * @param int $taskID * @param string $orderBy * @param object $pager * @access public * @return array */ public function groupRunsBySuite(int $taskID, string $orderBy = 't1.id_desc', object $pager = null): array { return $this->dao->select('t2.*,t1.*,t2.version as caseVersion,t3.title as storyTitle,t2.status as caseStatus,t4.suite,t5.name as suiteTitle')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->leftJoin(TABLE_STORY)->alias('t3')->on('t2.story = t3.id') ->leftJoin(TABLE_SUITECASE)->alias('t4')->on('t1.case = t4.case') ->leftJoin(TABLE_TESTSUITE)->alias('t5')->on('t4.suite = t5.id') ->where('t1.task')->eq($taskID) ->andWhere('t2.deleted')->eq(0) ->orderBy($orderBy) ->page($pager) ->fetchAll(); } /** * Get test runs of a user. * * @param int $taskID * @param int $user * @param object $pager * @access public * @return array */ public function getUserRuns($taskID, $user, $modules = '', $orderBy = 'id_desc', $pager = null) { /* Select the table for these special fields. */ $specialFields = ',assignedTo,status,lastRunResult,lastRunner,lastRunDate,'; $fieldToSort = substr($orderBy, 0, strpos($orderBy, '_')); $orderBy = strpos($specialFields, ',' . $fieldToSort . ',') !== false ? ('t1.' . $orderBy) : ('t2.' . $orderBy); return $this->dao->select('t2.*,t1.*,t2.version as caseVersion,t3.title as storyTitle,t2.status as caseStatus')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->leftJoin(TABLE_STORY)->alias('t3')->on('t2.story = t3.id') ->where('t1.task')->eq((int)$taskID) ->andWhere('t1.assignedTo')->eq($user) ->andWhere('t2.deleted')->eq(0) ->beginIF($modules)->andWhere('t2.module')->in($modules)->fi() ->orderBy($orderBy) ->page($pager) ->fetchAll('id'); } /** * Get testtask linked cases. * * @param int $productID * @param string $browseType * @param int $queryID * @param int $moduleID * @param string $sort * @param object $pager * @param object $task * @access public * @return array */ public function getTaskCases($productID, $browseType, $queryID, $moduleID, $sort, $pager, $task) { /* Set modules and browse type. */ $modules = $moduleID ? $this->loadModel('tree')->getAllChildId($moduleID) : '0'; $browseType = ($browseType == 'bymodule' and $this->session->taskCaseBrowseType and $this->session->taskCaseBrowseType != 'bysearch') ? $this->session->taskCaseBrowseType : $browseType; $browseType = strtolower($browseType); if($browseType == 'bymodule' or $browseType == 'all') { $runs = $this->getRuns($task->id, $modules, $sort, $pager); } elseif($browseType == 'bysuite') { $runs = $this->getRunsBySuite($task->id, $queryID, $sort, $pager); } elseif($browseType == 'assignedtome') { $runs = $this->getUserRuns($task->id, $this->session->user->account, $modules, $sort, $pager); } /* By search. */ elseif($browseType == 'bysearch') { if($this->session->testtaskQuery == false) $this->session->set('testtaskQuery', ' 1 = 1'); if($queryID) { $query = $this->loadModel('search')->getQuery($queryID); if($query) { $this->session->set('testtaskQuery', $query->sql); $this->session->set('testtaskForm', $query->form); } } $queryProductID = $productID; $allProduct = "`product` = 'all'"; $caseQuery = $this->session->testtaskQuery; if(strpos($this->session->testtaskQuery, $allProduct) !== false) { $caseQuery = str_replace($allProduct, '1', $this->session->testtaskQuery); $caseQuery = $caseQuery . ' AND `product` ' . helper::dbIN($this->app->user->view->products); $queryProductID = 'all'; } $caseQuery = preg_replace('/`(\w+)`/', 't2.`$1`', $caseQuery); $caseQuery = str_replace(array('t2.`assignedTo`', 't2.`lastRunner`', 't2.`lastRunDate`', 't2.`lastRunResult`'), array('t1.`assignedTo`', 't1.`lastRunner`', 't1.`lastRunDate`', 't1.`lastRunResult`'), $caseQuery); /* Select the table for these special fields. */ $specialFields = ',assignedTo,status,lastRunResult,lastRunner,lastRunDate,'; $fieldToSort = substr($sort, 0, strpos($sort, '_')); $orderBy = strpos($specialFields, ',' . $fieldToSort . ',') !== false ? ('t1.' . $sort) : ('t2.' . $sort); $runs = $this->dao->select('t2.*,t1.*, t2.version as caseVersion,t3.title as storyTitle,t2.status as caseStatus')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->leftJoin(TABLE_STORY)->alias('t3')->on('t2.story = t3.id') ->where($caseQuery) ->andWhere('t1.task')->eq($task->id) ->andWhere('t2.deleted')->eq(0) ->beginIF($queryProductID != 'all')->andWhere('t2.product')->eq($queryProductID)->fi() ->beginIF($task->branch)->andWhere('t2.branch')->in("0,{$task->branch}")->fi() ->orderBy($orderBy) ->page($pager) ->fetchAll('id'); } return $runs; } /** * Get testtask pairs of a user. * * @param string $account * @param int $limit * @param string $status all|wait|doing|done|blocked * @param array $skipProductIDList * @param array $skipExecutionIDList * @access public * @return array */ public function getUserTestTaskPairs($account, $limit = 0, $status = 'all', $skipProductIDList = array(), $skipExecutionIDList = array()) { $stmt = $this->dao->select('t1.id, t1.name, t2.name as execution') ->from(TABLE_TESTTASK)->alias('t1') ->leftJoin(TABLE_EXTENSION)->alias('t2')->on('t1.execution = t2.id') ->leftJoin(TABLE_PRODUCT)->alias('t3')->on('t1.product=t3.id') ->where('t1.owner')->eq($account) ->andWhere('t1.deleted')->eq(0) ->andWhere('t3.deleted')->eq(0) ->beginIF($status != 'all')->andWhere('t1.status')->in($status)->fi() ->beginIF(!empty($skipProductIDList))->andWhere('t1.product')->notin($skipProductIDList)->fi() ->beginIF(!empty($skipExecutionIDList))->andWhere('t1.execution')->notin($skipExecutionIDList)->fi() ->beginIF($limit)->limit($limit)->fi() ->query(); $testtaskPairs = array(); while($testtask = $stmt->fetch()) { if($testtask->execution) $testtask->execution .= " / "; $testtaskPairs[$testtask->id] = $testtask->execution . $testtask->name; } return $testtaskPairs; } /** * 获取执行结果信息。 * Get information of a test run. * * @param int $runID * @access public * @return object */ public function getRunById(int $runID): object { $testRun = $this->dao->findById($runID)->from(TABLE_TESTRUN)->fetch(); $testRun->case = $this->loadModel('testcase')->getById($testRun->case, $testRun->version); return $testRun; } /** * Get testtasks by case id list. * * @param string|array $caseIDList * @access public * @return array */ public function getGroupByCases($caseIDList) { return $this->dao->select('t1.case, t2.*, t3.branch')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_TESTTASK)->alias('t2')->on('t1.task=t2.id') ->leftJoin(TABLE_BUILD)->alias('t3')->on('t2.build = t3.id') ->where('t1.case')->in($caseIDList) ->fetchGroup('case', 'id'); } /** * Init testtask result. * * @param int $runID * @param int $caseID * @param int $version * @param int $nodeID * @access public * @return void */ public function initResult($runID = 0, $caseID = 0, $version = 0, $nodeID = 0) { $result = new stdClass(); $result->run = $runID; $result->case = $caseID; $result->version = $version; $result->node = $nodeID; $result->date = helper::now(); $result->lastRunner = $this->app->user->account; $this->dao->insert(TABLE_TESTRESULT)->data($result)->autoCheck()->exec(); if(!dao::isError()) return $resultID = $this->dao->lastInsertID(); return false; } /** * Create test result * * @param int $runID * @access public * @return void */ public function createResult($runID = 0) { /* Compute the test result. * * 1. if there result in the post, use it. * 2. if no result, set default is pass. * 3. then check the steps to compute result. * * */ $postData = fixer::input('post')->get(); $caseResult = isset($postData->result) ? $postData->result : 'pass'; if(isset($postData->steps) and $postData->steps) { foreach($postData->steps as $stepID => $stepResult) { if($stepResult != 'pass' and $stepResult != 'n/a') $caseResult = $stepResult; if($stepResult == 'fail') { $caseResult = $stepResult; break; } } } /* Create result of every step. */ foreach($postData->steps as $stepID => $stepResult) { $step['result'] = $stepResult; $step['real'] = zget($postData->reals, $stepID, ''); $stepResults[$stepID] = $step; } /* Insert into testResult table. */ $now = helper::now(); $result = fixer::input('post') ->add('run', $runID) ->add('caseResult', $caseResult) ->setForce('stepResults', serialize($stepResults)) ->setDefault('lastRunner', $this->app->user->account) ->setDefault('date', $now) ->skipSpecial('stepResults') ->remove('steps,reals,result') ->get(); /* Remove files and labels field when uploading files for case result or step result. */ foreach($result as $fieldName => $field) { if((strpos($fieldName, 'files') !== false) or (strpos($fieldName, 'labels') !== false)) unset($result->$fieldName); } $this->dao->insert(TABLE_TESTRESULT)->data($result)->autoCheck()->exec(); /* Save upload files for case result or step result. */ if(!dao::isError()) { $resultID = $this->dao->lastInsertID(); foreach($stepResults as $stepID => $stepResult) $this->loadModel('file')->saveUpload('stepResult', $resultID, $stepID, "files{$stepID}", "labels{$stepID}"); } $this->dao->update(TABLE_CASE)->set('lastRunner')->eq($this->app->user->account)->set('lastRunDate')->eq($now)->set('lastRunResult')->eq($caseResult)->where('id')->eq($postData->case)->exec(); if($runID) { /* Update testRun's status. */ if(!dao::isError()) { $runStatus = $caseResult == 'blocked' ? 'blocked' : 'normal'; $this->dao->update(TABLE_TESTRUN) ->set('lastRunResult')->eq($caseResult) ->set('status')->eq($runStatus) ->set('lastRunner')->eq($this->app->user->account) ->set('lastRunDate')->eq($now) ->where('id')->eq($runID) ->exec(); } } if(!dao::isError()) $this->loadModel('score')->create('testtask', 'runCase', $runID); return $caseResult; } /** * Batch run case * * @param string $runCaseType * @access public * @return void */ public function batchRun($runCaseType = 'testcase', $taskID = 0) { $runs = array(); $postData = fixer::input('post')->get(); $caseIdList = isset($postData->caseIDList) ? array_keys($postData->caseIDList) : array_keys($postData->results); if($runCaseType == 'testtask') { $runs = $this->dao->select('id, `case`')->from(TABLE_TESTRUN) ->where('`case`')->in($caseIdList) ->beginIF($taskID)->andWhere('task')->eq($taskID)->fi() ->fetchPairs('case', 'id'); } $stepGroups = $this->dao->select('t1.*')->from(TABLE_CASESTEP)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->where('t1.case')->in($caseIdList) ->andWhere('t1.version=t2.version') ->andWhere('t2.status')->ne('wait') ->fetchGroup('case', 'id'); $now = helper::now(); foreach($postData->results as $caseID => $result) { $runID = isset($runs[$caseID]) ? $runs[$caseID] : (isset($postData->caseIDList) ? $caseID : 0); $version = $postData->version[$caseID]; $dbSteps = isset($stepGroups[$caseID]) ? $stepGroups[$caseID] : array(); $postSteps = isset($postData->steps[$caseID]) ? $postData->steps[$caseID] : array(); $postReals = $postData->reals[$caseID]; $caseResult = $result ? $result : 'pass'; if(!empty($postData->node)) $caseResult = ''; $stepResults = array(); if($dbSteps) { foreach($dbSteps as $stepID => $step) { $step = array(); $step['result'] = $caseResult == 'pass' ? $caseResult : $postSteps[$stepID]; $step['real'] = $caseResult == 'pass' ? '' : $postReals[$stepID]; $stepResults[$stepID] = $step; } } else { $step = array(); $step['result'] = $caseResult; $step['real'] = $caseResult == 'pass' ? '' : $postReals[0]; $stepResults[] = $step; } /* Replace caseID if caseID is runID. */ if(isset($postData->caseIDList[$caseID])) $caseID = $postData->caseIDList[$caseID]; $result = new stdClass(); $result->run = $runID; $result->case = $caseID; $result->version = $version; $result->caseResult = $caseResult; $result->stepResults = serialize($stepResults); $result->lastRunner = $this->app->user->account; $result->date = $now; $this->dao->insert(TABLE_TESTRESULT)->data($result)->autoCheck()->exec(); $this->dao->update(TABLE_CASE)->set('lastRunner')->eq($this->app->user->account)->set('lastRunDate')->eq($now)->set('lastRunResult')->eq($caseResult)->where('id')->eq($caseID)->exec(); if($runID) { /* Update testRun's status. */ if(!dao::isError()) { $runStatus = $caseResult == 'blocked' ? 'blocked' : 'normal'; $this->dao->update(TABLE_TESTRUN) ->set('lastRunResult')->eq($caseResult) ->set('status')->eq($runStatus) ->set('lastRunner')->eq($this->app->user->account) ->set('lastRunDate')->eq($now) ->where('id')->eq($runID) ->exec(); } } } } /** * Get results by runID or caseID * * @param int $runID * @param int $caseID * @param string $status all|done * @param string $type all|fail * @access public * @return void */ public function getResults($runID, $caseID = 0, $status = 'all', $type = 'all') { if($runID > 0) { $results = $this->dao->select('*')->from(TABLE_TESTRESULT) ->where('run')->eq($runID) ->beginIF($status == 'done')->andWhere('caseResult')->ne('')->fi() ->beginIF($type != 'all')->andWhere('caseResult')->eq($type)->fi() ->orderBy('id desc') ->fetchAll('id'); } else { $results = $this->dao->select('*')->from(TABLE_TESTRESULT) ->where('`case`')->eq($caseID) ->beginIF($status == 'done')->andWhere('caseResult')->ne('')->fi() ->beginIF($type != 'all')->andWhere('caseResult')->eq($type)->fi() ->orderBy('id desc') ->fetchAll('id'); } if(!$results) return array(); $relatedVersions = array(); $runIdList = array(); $nodeIdList = array(); foreach($results as $result) { $runIdList[$result->run] = $result->run; $relatedVersions[] = $result->version; $runCaseID = $result->case; if(!empty($result->node)) $nodeIdList[] = $result->node; } $relatedVersions = array_unique($relatedVersions); $relatedSteps = $this->dao->select('*')->from(TABLE_CASESTEP) ->where('`case`')->eq($runCaseID) ->andWhere('version')->in($relatedVersions) ->orderBy('id') ->fetchGroup('version', 'id'); $runs = $this->dao->select('t1.id,t1.task,t2.build')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_TESTTASK)->alias('t2')->on('t1.task=t2.id') ->where('t1.id')->in($runIdList) ->fetchPairs(); $nodes = $this->dao->select('id,name')->from(TABLE_ZAHOST) ->where('id')->in(array_unique($nodeIdList)) ->fetchPairs(); $this->loadModel('file'); $files = $this->dao->select('*')->from(TABLE_FILE) ->where("(objectType = 'caseResult' or objectType = 'stepResult')") ->andWhere('objectID')->in(array_keys($results)) ->andWhere('extra')->ne('editor') ->orderBy('id') ->fetchAll(); $resultFiles = array(); $stepFiles = array(); foreach($files as $file) { $this->file->setFileWebAndRealPaths($file); if($file->objectType == 'caseResult') { $resultFiles[$file->objectID][$file->id] = $file; } elseif($file->objectType == 'stepResult' and $file->extra !== '') { $stepFiles[$file->objectID][(int)$file->extra][$file->id] = $file; } } foreach($results as $resultID => $result) { $result->stepResults = unserialize($result->stepResults); $result->build = $result->run && !empty($runs[$result->run]->build) ? $runs[$result->run]->build : 0; $result->task = $result->run && !empty($runs[$result->run]->task) ? $runs[$result->run]->task : 0; $result->nodeName = $result->node ? zget($nodes, $result->node, '') : ''; if(!empty($result->ZTFResult)) { $result->ZTFResult = $this->formatZtfLog($result->ZTFResult, $result->stepResults); } $result->files = zget($resultFiles, $resultID, array()); //Get files of case result. if(isset($relatedSteps[$result->version])) { $preGrade = 1; $parentSteps = array(); $key = array(0, 0, 0); $relatedStep = $relatedSteps[$result->version]; foreach($relatedStep as $stepID => $step) { $parentSteps[$step->id] = $step->parent; $grade = 1; if(isset($parentSteps[$step->parent])) { $grade = isset($parentSteps[$parentSteps[$step->parent]]) ? 3 : 2; } if($grade > $preGrade) { $key[$grade - 1] = 1; } else { if($grade < $preGrade) { if($grade < 2) $key[1] = 0; if($grade < 3) $key[2] = 0; } $key[$grade - 1] ++; } $name = implode('.', $key); $name = str_replace('.0', '', $name); $relatedStep[$stepID] = (array)$step; $relatedStep[$stepID]['name'] = $name; $relatedStep[$stepID]['grade'] = $grade; $relatedStep[$stepID]['desc'] = html_entity_decode($relatedStep[$stepID]['desc']); $relatedStep[$stepID]['expect'] = html_entity_decode($relatedStep[$stepID]['expect']); if(isset($result->stepResults[$stepID])) { $relatedStep[$stepID]['result'] = $result->stepResults[$stepID]['result']; $relatedStep[$stepID]['real'] = $result->stepResults[$stepID]['real']; } $preGrade = $grade; } $result->stepResults = $relatedStep; } /* Get files of step result. */ if(!empty($result->stepResults)) foreach($result->stepResults as $stepID => $stepResult) $result->stepResults[$stepID]['files'] = isset($stepFiles[$resultID][$stepID]) ? $stepFiles[$resultID][$stepID] : array(); } return $results; } /** * Format ztf log. * * @param string $log * @access public * @return string */ public function formatZtfLog($result, $stepResults) { $logObj = json_decode($result); $logs = empty($logObj->log) ? '' : $logObj->log; if(empty($logs)) return ''; $logs = str_replace(array("\r", "\n", "\r\n"), "\n", $logs); $logList = explode("\n", $logs); $logHtml = ""; foreach($logList as $log) { $log = preg_replace("/^[\d\-:.\x20]+/", '', $log); $log = trim($log); if(empty($log)) continue; $failHtml = ': ' . $this->lang->testtask->fail . ''; $passHtml = ': ' . $this->lang->testtask->pass . ''; $log = preg_replace(array("/:\x20失败/", "/:\x20fail/", "/:\x20成功/", "/:\x20pass/"), array($failHtml, $failHtml, $passHtml, $passHtml), $log); $logHtml .= "