* @package case * @version $Id: control.php 5112 2013-07-12 02:51:33Z chencongzhi520@gmail.com $ * @link http://www.zentao.net */ class testcase extends control { public $products = array(); /** * Construct function, load product, tree, user auto. * * @access public * @return void */ public function __construct() { parent::__construct(); $this->loadModel('product'); $this->loadModel('tree'); $this->loadModel('user'); $this->view->products = $this->products = $this->product->getPairs('nocode'); } /** * Index page. * * @access public * @return void */ public function index() { $this->locate($this->createLink('testcase', 'browse')); } /** * Browse cases. * * @param int $productID * @param string $browseType * @param int $param * @param string $orderBy * @param int $recTotal * @param int $recPerPage * @param int $pageID * @access public * @return void */ public function browse($productID = 0, $branch = '', $browseType = 'all', $param = 0, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { /* Set browseType, productID, moduleID and queryID. */ $browseType = strtolower($browseType); $productID = $this->product->saveState($productID, $this->products); $branch = ($branch === '') ? $this->session->branch : $branch; $moduleID = ($browseType == 'bymodule') ? (int)$param : 0; $queryID = ($browseType == 'bysearch') ? (int)$param : 0; /* Set menu, save session. */ $this->testcase->setMenu($this->products, $productID, $branch); $this->session->set('caseList', $this->app->getURI(true)); $this->session->set('productID', $productID); $this->session->set('moduleID', $moduleID); $this->session->set('browseType', $browseType); $this->session->set('orderBy', $orderBy); /* Load lang. */ $this->app->loadLang('testtask'); /* Load pager. */ $this->app->loadClass('pager', $static = true); $pager = pager::init($recTotal, $recPerPage, $pageID); $sort = $this->loadModel('common')->appendOrder($orderBy); /* Get test cases. */ $cases = $this->testcase->getTestCases($productID, $branch, $browseType, $queryID, $moduleID, $sort, $pager); /* save session .*/ $this->loadModel('common')->saveQueryCondition($this->dao->get(), 'testcase', $browseType != 'bysearch' ? false : true); /* Process case for check story changed. */ $cases = $this->loadModel('story')->checkNeedConfirm($cases); /* Build the search form. */ $actionURL = $this->createLink('testcase', 'browse', "productID=$productID&branch=$branch&browseType=bySearch&queryID=myQueryID"); $this->testcase->buildSearchForm($productID, $this->products, $queryID, $actionURL); $this->loadModel('search')->setSearchParams($this->config->testcase->search); /* Assign. */ $this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->testcase->common; $this->view->position[] = html::a($this->createLink('testcase', 'browse', "productID=$productID&branch=$branch"), $this->products[$productID]); $this->view->position[] = $this->lang->testcase->common; $this->view->productID = $productID; $this->view->productName = $this->products[$productID]; $this->view->moduleTree = $this->tree->getTreeMenu($productID, $viewType = 'case', $startModuleID = 0, array('treeModel', 'createCaseLink'), '', $branch); $this->view->moduleID = $moduleID; $this->view->pager = $pager; $this->view->users = $this->user->getPairs('noletter'); $this->view->orderBy = $orderBy; $this->view->browseType = $browseType; $this->view->param = $param; $this->view->cases = $cases; $this->view->branch = $branch; $this->view->branches = $this->loadModel('branch')->getPairs($productID); $this->display(); } /** * Group case. * * @param int $productID * @param string $groupBy * @access public * @return void */ public function groupCase($productID = 0, $branch = '', $groupBy = 'stroy') { $groupBy = empty($groupBy) ? 'stroy' : $groupBy; $productID = $this->product->saveState($productID, $this->products); if($branch === '') $branch = $this->session->branch; $this->app->loadLang('testtask'); $this->testcase->setMenu($this->products, $productID, $branch); $this->session->set('caseList', $this->app->getURI(true)); $cases = $this->testcase->getModuleCases($productID, $branch, 0, $groupBy); $this->loadModel('common')->saveQueryCondition($this->dao->get(), 'testcase', false); $groupCases = array(); $groupByList = array(); foreach($cases as $case) { if($groupBy == 'story') { $groupCases[$case->story][] = $case; $groupByList[$case->story] = $case->storyTitle; } } $this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->testcase->common; $this->view->position[] = html::a($this->createLink('testcase', 'groupTask', "productID=$productID&groupBy=$groupBy"), $this->products[$productID]); $this->view->position[] = $this->lang->testcase->common; $this->view->productID = $productID; $this->view->productName = $this->products[$productID]; $this->view->users = $this->user->getPairs('noletter'); $this->view->browseType = 'group'; $this->view->groupBy = $groupBy; $this->view->groupByList = $groupByList; $this->view->cases = $groupCases; $this->display(); } /** * Create a test case. * * @param int $productID * @param int $moduleID * @param string $from * @param int $param * @access public * @return void */ public function create($productID, $branch = '', $moduleID = 0, $from = '', $param = 0, $storyID = 0) { $testcaseID = $from == 'testcase' ? $param : 0; $bugID = $from == 'bug' ? $param : 0; $this->loadModel('story'); if(!empty($_POST)) { $response['result'] = 'success'; $response['message'] = ''; $caseResult = $this->testcase->create($bugID); if(!$caseResult or dao::isError()) { $response['result'] = 'fail'; $response['message'] = dao::getError(); $this->send($response); } $caseID = $caseResult['id']; if($caseResult['status'] == 'exists') { $response['message'] = sprintf($this->lang->duplicate, $this->lang->testcase->common); $response['locate'] = $this->createLink('testcase', 'view', "caseID=$caseID"); $this->send($response); } $this->loadModel('action'); $this->action->create('case', $caseID, 'Opened'); $response['locate'] = $this->createLink('testcase', 'browse', "productID={$_POST['product']}&branch=" . (isset($_POST['branch']) ? $_POST['branch'] : '') . "&browseType=byModule&args={$_POST['module']}"); $this->send($response); } if(empty($this->products)) $this->locate($this->createLink('product', 'create')); /* Set productID and currentModuleID. */ $productID = $this->product->saveState($productID, $this->products); if($branch === '') $branch = $this->session->branch; if($storyID and empty($moduleID)) { $story = $this->loadModel('story')->getByID($storyID); $moduleID = $story->module; } $currentModuleID = (int)$moduleID; /* Set menu. */ $this->testcase->setMenu($this->products, $productID, $branch); /* Init vars. */ $type = 'feature'; $stage = ''; $pri = 0; $caseTitle = ''; $precondition = ''; $keywords = ''; $steps = array(); /* If testcaseID large than 0, use this testcase as template. */ if($testcaseID > 0) { $testcase = $this->testcase->getById($testcaseID); $productID = $testcase->product; $type = $testcase->type ? $testcase->type : 'feature'; $stage = $testcase->stage; $pri = $testcase->pri; $storyID = $testcase->story; $caseTitle = $testcase->title; $precondition = $testcase->precondition; $keywords = $testcase->keywords; $steps = $testcase->steps; } /* If bugID large than 0, use this bug as template. */ if($bugID > 0) { $bug = $this->loadModel('bug')->getById($bugID); $type = $bug->type; $pri = $bug->pri ? $bug->pri : $bug->severity; $storyID = $bug->story; $caseTitle= $bug->title; $keywords = $bug->keywords; $steps = $this->testcase->createStepsFromBug($bug->steps); } /* Padding the steps to the default steps count. */ if(count($steps) < $this->config->testcase->defaultSteps) { $paddingCount = $this->config->testcase->defaultSteps - count($steps); $step = new stdclass(); $step->desc = ''; $step->expect = ''; for($i = 1; $i <= $paddingCount; $i ++) $steps[] = $step; } $title = $this->products[$productID] . $this->lang->colon . $this->lang->testcase->create; $position[] = html::a($this->createLink('testcase', 'browse', "productID=$productID&branch=$branch"), $this->products[$productID]); $position[] = $this->lang->testcase->common; $position[] = $this->lang->testcase->create; /* Get the status of stories are not closed. */ $storyStatus = $this->lang->story->statusList; unset($storyStatus['closed']); $modules = array(); if($currentModuleID) { $modules = $this->loadModel('tree')->getStoryModule($currentModuleID); $modules = $this->tree->getAllChildID($modules); } $stories = $this->story->getProductStoryPairs($productID, $branch, $modules, array_keys($storyStatus), 'id_desc', 50); $this->view->title = $title; $this->view->caseTitle = $caseTitle; $this->view->position = $position; $this->view->productID = $productID; $this->view->productName = $this->products[$productID]; $this->view->moduleOptionMenu = $this->tree->getOptionMenu($productID, $viewType = 'case', $startModuleID = 0, $branch); $this->view->currentModuleID = $currentModuleID ? $currentModuleID : (isset($stories[$storyID]) ? $stories[$storyID]->module : 0); $this->view->stories = $stories; $this->view->type = $type; $this->view->stage = $stage; $this->view->pri = $pri; $this->view->storyID = $storyID; $this->view->title = $title; $this->view->precondition = $precondition; $this->view->keywords = $keywords; $this->view->steps = $steps; $this->view->branch = $branch; $this->view->branches = $this->session->currentProductType != 'normal' ? $this->loadModel('branch')->getPairs($productID) : array(); $this->display(); } /** * Create a batch test case. * * @param int $productID * @param int $moduleID * @param int $storyID * @access public * @return void */ public function batchCreate($productID, $branch = '', $moduleID = 0, $storyID = 0) { $this->loadModel('story'); if(!empty($_POST)) { $caseID = $this->testcase->batchCreate($productID, $branch, $storyID); if(dao::isError()) die(js::error(dao::getError())); die(js::locate($this->createLink('testcase', 'browse', "productID=$productID&branch=$branch&browseType=byModule¶m=$moduleID"), 'parent')); } if(empty($this->products)) $this->locate($this->createLink('product', 'create')); /* Set productID and currentModuleID. */ $productID = $this->product->saveState($productID, $this->products); if($branch === '') $branch = $this->session->branch; if($storyID and empty($moduleID)) { $story = $this->loadModel('story')->getByID($storyID); $moduleID = $story->module; } $currentModuleID = (int)$moduleID; /* Set menu. */ $this->testcase->setMenu($this->products, $productID, $branch); /* Init vars. */ $type = 'feature'; $title = ''; $title = $this->products[$productID] . $this->lang->colon . $this->lang->testcase->batchCreate; $position[] = html::a($this->createLink('testcase', 'browse', "productID=$productID&branch=$branch"), $this->products[$productID]); $position[] = $this->lang->testcase->common; $position[] = $this->lang->testcase->batchCreate; $story = $storyID ? $this->story->getByID($storyID) : ''; $storyList = $storyID ? array($storyID => $story->id . ':' . $story->title . '(' . $this->lang->story->pri . ':' . $story->pri . ',' . $this->lang->story->estimate . ':' . $story->estimate . ')') : array(''); $this->view->title = $title; $this->view->position = $position; $this->view->productID = $productID; $this->view->story = $story; $this->view->storyList = $storyList; $this->view->productName = $this->products[$productID]; $this->view->moduleOptionMenu = $this->tree->getOptionMenu($productID, $viewType = 'case', $startModuleID = 0, $branch); $this->view->currentModuleID = $currentModuleID; $this->view->type = $type; $this->view->title = $title; $this->view->branch = $branch; $this->view->branches = $this->loadModel('branch')->getPairs($productID); $this->display(); } /** * Create bug. * * @param int $productID * @param string $extras * @access public * @return void */ public function createBug($productID, $branch = 0, $extras = '') { parse_str(str_replace(array(',', ' '), array('&', ''), $extras)); $this->loadModel('testtask'); $case = ''; if($runID) { $case = $this->testtask->getRunById($runID)->case; $results = $this->testtask->getResults($runID); } elseif($caseID) { $case = $this->testcase->getById($caseID); $results = $this->testtask->getResults(0, $caseID); } if(!$case) die(js::error($this->lang->notFound) . js::locate('back', 'parent')); if(empty($case->steps)) die(js::locate($this->createLink('bug', 'create', "product=$productID&branch=$branch&extras=$extras"), 'parent')); $this->view->title = $this->products[$productID] . $this->lang->colon . $this->lang->testcase->createBug; $this->view->case = $case; $this->view->result = reset($results); $this->view->extras = $extras; $this->view->productID = $productID; $this->view->branch = $branch; $this->display(); } /** * View a test case. * * @param int $caseID * @param int $version * @param string $from * @access public * @return void */ public function view($caseID, $version = 0, $from = 'testcase', $taskID = 0) { $case = $this->testcase->getById($caseID, $version); if(!$case) die(js::error($this->lang->notFound) . js::locate('back')); if($from == 'testtask') $run = $this->loadModel('testtask')->getRunByCase($taskID, $caseID); $productID = $case->product; $this->testcase->setMenu($this->products, $productID, $case->branch); $this->view->title = "CASE #$case->id $case->title - " . $this->products[$productID]; $this->view->position[] = html::a($this->createLink('testcase', 'browse', "productID=$productID"), $this->products[$productID]); $this->view->position[] = $this->lang->testcase->common; $this->view->position[] = $this->lang->testcase->view; $this->view->case = $case; $this->view->from = $from; $this->view->taskID = $taskID; $this->view->version = $version ? $version : $case->version; $this->view->productName = $this->products[$productID]; $this->view->branchName = $this->session->currentProductType == 'normal' ? '' : $this->loadModel('branch')->getById($case->branch); $this->view->modulePath = $this->tree->getParents($case->module); $this->view->users = $this->user->getPairs('noletter'); $this->view->actions = $this->loadModel('action')->getList('case', $caseID); $this->view->preAndNext = $this->loadModel('common')->getPreAndNextObject('testcase', $caseID); $this->view->runID = $from == 'testcase' ? 0 : $run->id; $this->display(); } /** * Edit a case. * * @param int $caseID * @access public * @return void */ public function edit($caseID, $comment = false) { $this->loadModel('story'); if(!empty($_POST)) { $changes = array(); $files = array(); if($comment == false) { $changes = $this->testcase->update($caseID); if(dao::isError()) die(js::error(dao::getError())); $files = $this->loadModel('file')->saveUpload('testcase', $caseID); } if($this->post->comment != '' or !empty($changes) or !empty($files)) { $this->loadModel('action'); $action = !empty($changes) ? 'Edited' : 'Commented'; $fileAction = ''; if(!empty($files)) $fileAction = $this->lang->addFiles . join(',', $files) . "\n"; $actionID = $this->action->create('case', $caseID, $action, $fileAction . $this->post->comment); $this->action->logHistory($actionID, $changes); } die(js::locate($this->createLink('testcase', 'view', "caseID=$caseID"), 'parent')); } $case = $this->testcase->getById($caseID); if(empty($case->steps)) { $step = new stdclass(); $step->desc = ''; $step->expect = ''; $case->steps[] = $step; } $productID = $case->product; $currentModuleID = $case->module; $title = $this->products[$productID] . $this->lang->colon . $this->lang->testcase->edit; $position[] = html::a($this->createLink('testcase', 'browse', "productID=$productID"), $this->products[$productID]); $position[] = $this->lang->testcase->common; $position[] = $this->lang->testcase->edit; /* Set menu. */ $this->testcase->setMenu($this->products, $productID, $case->branch); $this->view->title = $title; $this->view->position = $position; $this->view->productID = $productID; $this->view->branches = $this->session->currentProductType == 'normal' ? array() : $this->loadModel('branch')->getPairs($productID); $this->view->productName = $this->products[$productID]; $this->view->moduleOptionMenu = $this->tree->getOptionMenu($productID, $viewType = 'case', $startModuleID = 0, $case->branch); $this->view->currentModuleID = $currentModuleID; $this->view->users = $this->user->getPairs('noletter'); $this->view->stories = $this->story->getProductStoryPairs($productID, $case->branch); $this->view->case = $case; $this->view->actions = $this->loadModel('action')->getList('case', $caseID); $this->display(); } /** * Batch edit case. * * @param int $productID * @access public * @return void */ public function batchEdit($productID = 0, $branch = 0) { if($this->post->titles) { $allChanges = $this->testcase->batchUpdate(); if($allChanges) { foreach($allChanges as $caseID => $changes ) { if(empty($changes)) continue; $actionID = $this->loadModel('action')->create('case', $caseID, 'Edited'); $this->action->logHistory($actionID, $changes); } } die(js::locate($this->session->caseList, 'parent')); } $caseIDList = $this->post->caseIDList ? $this->post->caseIDList : die(js::locate($this->session->caseList)); /* Get the edited cases. */ $cases = $this->dao->select('*')->from(TABLE_CASE)->where('id')->in($caseIDList)->fetchAll('id'); /* The cases of a product. */ if($productID) { $this->testcase->setMenu($this->products, $productID, $branch); $product = $this->product->getByID($productID); $this->view->moduleOptionMenu = $this->tree->getOptionMenu($productID, $viewType = 'case', $startModuleID = 0, $branch); $this->view->position[] = html::a($this->createLink('testcase', 'browse', "productID=$productID"), $this->products[$productID]); $this->view->title = $product->name . $this->lang->colon . $this->lang->testcase->batchEdit; } /* The cases of my. */ else { $this->lang->testcase->menu = $this->lang->my->menu; $this->lang->set('menugroup.testcase', 'my'); $this->lang->testcase->menuOrder = $this->lang->my->menuOrder; $this->loadModel('my')->setMenu(); $this->view->position[] = html::a($this->server->http_referer, $this->lang->my->testCase); $this->view->title = $this->lang->testcase->batchEdit; } /* Judge whether the editedTasks is too large and set session. */ $showSuhosinInfo = false; $showSuhosinInfo = $this->loadModel('common')->judgeSuhosinSetting(count($cases), $this->config->testcase->batchEdit->columns); $this->app->session->set('showSuhosinInfo', $showSuhosinInfo); if($showSuhosinInfo) $this->view->suhosinInfo = $this->lang->suhosinInfo; /* Assign. */ $this->view->position[] = $this->lang->testcase->common; $this->view->position[] = $this->lang->testcase->batchEdit; $this->view->caseIDList = $caseIDList; $this->view->productID = $productID; $this->view->cases = $cases; $this->display(); } /** * Delete a test case * * @param int $caseID * @param string $confirm yes|noe * @access public * @return void */ public function delete($caseID, $confirm = 'no') { if($confirm == 'no') { die(js::confirm($this->lang->testcase->confirmDelete, inlink('delete', "caseID=$caseID&confirm=yes"))); } else { $this->testcase->delete(TABLE_CASE, $caseID); /* 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'] = ''; } $this->send($response); } die(js::locate($this->session->caseList, 'parent')); } } /** * Batch delete cases. * * @param int $productID * @access public * @return void */ public function batchDelete($productID = 0) { $caseIDList = $this->post->caseIDList ? $this->post->caseIDList : die(js::locate($this->session->caseList)); foreach($caseIDList as $caseID) $this->testcase->delete(TABLE_CASE, $caseID); die(js::locate($this->session->caseList)); } /** * Link related cases. * * @param int $caseID * @param string $cases * @param string $browseType * @param int $param * @access public * @return void */ public function linkCases($caseID, $cases, $browseType = '', $param = 0) { /* Link cases. */ if(!empty($_POST)) { $cases = $this->testcase->linkCases($caseID, $cases); if(isonlybody()) die(js::closeModal('parent.parent', '', "function(){parent.parent.loadLinkedCases('$caseID', '$cases')}")); die($this->locate(inlink('edit', "caseID=$caseID"), 'parent')); } /* Get test cases, and queryID. */ $case = $this->testcase->getById($caseID); $queryID = ($browseType == 'bysearch') ? (int)$param : 0; /* Set menu. */ $this->testcase->setMenu($this->products, $case->product, $case->branch); /* Get cases to link. */ $allCases = array(); $allCases = $this->testcase->getBySearch($case->product, $queryID, 'id', null); /* Build the search form. */ $actionURL = $this->createLink('testcase', 'linkCases', "caseID=$caseID&cases=$cases&browseType=bySearch&queryID=myQueryID" ); $this->testcase->buildSearchForm($case->product, $this->products, $queryID, $actionURL); $this->loadModel('search')->setSearchParams($this->config->testcase->search); /* Assign. */ $this->view->title = $case->title . $this->lang->colon . $this->lang->testcase->linkCases; $this->view->position[] = html::a($this->createLink('product', 'view', "productID=$case->product"), $this->products[$case->product]); $this->view->position[] = html::a($this->createLink('testcase', 'view', "caseID=$caseID"), $case->title); $this->view->position[] = $this->lang->testcase->linkCases; $this->view->case = $case; $this->view->allCases = $allCases; $this->view->users = $this->loadModel('user')->getPairs('noletter'); $this->display(); } /** * AJAX: Get linked cases. * * @param int $caseID * @param string $cases * @access public * @return string */ public function ajaxGetLinkedCases($caseID, $linkedCases = '') { /* Get case and linked cases. */ $case = $this->testcase->getById($caseID); $cases = $this->testcase->getLinkedCases($linkedCases); /* Build linkCase list. */ $output = "