* @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 { public $products = array(); /** * 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 $orderBy * @param int $recTotal * @param int $recPerPage * @param int $pageID * @access public * @return void */ public function browse($productID = 0, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { /* Save session. */ $this->session->set('testsuiteList', $this->app->getURI(true)); /* Set menu. */ $this->view->products = $this->products = $this->loadModel('product')->getPairs('nocode'); $productID = $this->product->saveState($productID, $this->products); $this->testsuite->setMenu($this->products, $productID); /* Load pager. */ $this->app->loadClass('pager', $static = true); $pager = pager::init($recTotal, $recPerPage, $pageID); /* Append id for secend sort. */ $sort = $this->loadModel('common')->appendOrder($orderBy); $productName = isset($this->products[$productID]) ? $this->products[$productID] : ''; $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 = $this->testsuite->getSuites($productID, $sort, $pager); $this->view->users = $this->loadModel('user')->getPairs('noclosed|noletter'); $this->view->pager = $pager; $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'] = ''; $suiteID = $this->testsuite->create($productID); if(dao::isError()) { $response['result'] = 'fail'; $response['message'] = dao::getError(); $this->send($response); } $actionID = $this->loadModel('action')->create('testsuite', $suiteID, 'opened'); $response['locate'] = $this->createLink('testsuite', 'browse', "productID=$productID"); $response['message'] = $this->lang->testsuite->successSaved; $this->send($response); } /* Set menu. */ $this->view->products = $this->products = $this->loadModel('product')->getPairs('nocode'); $productID = $this->product->saveState($productID, $this->products); $this->testsuite->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) { /* Get test suite, and set menu. */ $suite = $this->testsuite->getById($suiteID, true); if(!$suite) die(js::error($this->lang->notFound) . js::locate('back')); if($suite->type == 'private' and $suite->addedBy != $this->app->user->account and !$this->app->user->admin) die(js::error($this->lang->error->accessDenied) . js::locate('back')); $productID = $suite->product; $this->view->products = $this->products = $this->loadModel('product')->getPairs('nocode'); $this->testsuite->setMenu($this->products, $productID); /* Save session. */ $this->session->set('caseList', $this->app->getURI(true)); /* Append id for secend sort. */ $sort = $this->loadModel('common')->appendOrder($orderBy); /* Load pager. */ $this->app->loadClass('pager', $static = true); $pager = pager::init($recTotal, $recPerPage, $pageID); $this->view->title = "SUITE #$suite->id $suite->name/" . $this->products[$productID]; $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->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'); $this->view->branches = $this->loadModel('branch')->getPairs($suite->product, 'noempty'); $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'] = ''; $changes = $this->testsuite->update($suiteID); if(dao::isError()) { $response['result'] = 'fail'; $response['message'] = dao::getError(); $this->send($response); } if($changes) { $objectType = $suite->type == 'library' ? 'caselib' : 'testsuite'; $actionID = $this->loadModel('action')->create($objectType, $suiteID, 'edited'); $this->action->logHistory($actionID, $changes); } $method = $suite->type == 'library' ? 'libView' : 'view'; $response['locate'] = inlink($method, "suiteID=$suiteID"); $response['message'] = $this->lang->testsuite->successSaved; $this->send($response); } if($suite->type == 'library') { /* Set lib menu. */ if($this->config->global->flow == 'onlyTest') $this->lang->menugroup->testsuite = 'caselib'; $libraries = $this->testsuite->getLibraries(); $suiteID = $this->testsuite->saveLibState($suiteID, $libraries); $this->testsuite->setLibMenu($libraries, $suiteID); $this->view->title = $libraries[$suiteID] . $this->lang->colon . $this->lang->testsuite->edit; $this->view->position[] = html::a($this->createLink('testsuite', 'library', "libID=$suiteID"), $libraries[$suiteID]); $this->view->position[] = $this->lang->caselib->common; } else { if($suite->type == 'private' and $suite->addedBy != $this->app->user->account and !$this->app->user->admin) die(js::error($this->lang->error->accessDenied) . js::locate('back')); /* Get suite info. */ $this->view->products = $this->products = $this->loadModel('product')->getPairs('nocode'); $productID = $this->product->saveState($suite->product, $this->products); /* Set menu. */ $this->testsuite->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->products[$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') { die(js::confirm($this->lang->testsuite->libraryDelete, inlink('delete', "suiteID=$suiteID&confirm=yes"))); } else { if($suite->type == 'private' and $suite->addedBy != $this->app->user->account and !$this->app->user->admin) die(js::error($this->lang->error->accessDenied) . js::locate('back')); $this->testsuite->delete($suiteID); /* 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::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) { if(!empty($_POST)) { $this->testsuite->linkCase($suiteID); $this->locate(inlink('view', "suiteID=$suiteID")); } /* Save session. */ $this->session->set('caseList', $this->app->getURI(true)); /* Get suite and product id. */ $this->view->products = $this->products = $this->loadModel('product')->getPairs('nocode'); $suite = $this->testsuite->getById($suiteID); $productID = $this->product->saveState($suite->product, $this->products); /* Save session. */ $this->testsuite->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'); $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->products[$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') { die(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(); } $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(); } die(js::locate($this->createLink('testsuite', 'view', "suiteID=$suiteID"))); } /** * Show library case. * * @param int $libID * @param string $browseType * @param int $param * @param string $orderBy * @param int $recTotal * @param int $recPerPage * @param int $pageID * @access public * @return void */ public function library($libID = 0, $browseType = 'all', $param = 0, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { /* Set browse type. */ $browseType = strtolower($browseType); $libraries = $this->testsuite->getLibraries(); if(empty($libraries)) $this->locate(inlink('createLib')); /* Save session. */ $this->session->set('caseList', $this->app->getURI(true)); /* Set menu. */ $libID = $this->testsuite->saveLibState($libID, $libraries); setcookie('preCaseLibID', $libID, $this->config->cookieLife, $this->config->webRoot); if($this->cookie->preCaseLibID != $libID) { $_COOKIE['libCaseModule'] = 0; setcookie('libCaseModule', 0, 0, $this->config->webRoot); } if($browseType == 'bymodule') setcookie('libCaseModule', (int)$param, 0, $this->config->webRoot); if($browseType != 'bymodule') $this->session->set('libBrowseType', $browseType); $moduleID = ($browseType == 'bymodule') ? (int)$param : ($browseType == 'bysearch' ? 0 : ($this->cookie->libCaseModule ? $this->cookie->libCaseModule : 0)); $queryID = ($browseType == 'bysearch') ? (int)$param : 0; /* Set lib menu. */ $this->testsuite->setLibMenu($libraries, $libID, $moduleID); if($this->config->global->flow == 'onlyTest') $this->lang->menugroup->testsuite = 'caselib'; /* Load pager. */ $this->app->loadClass('pager', $static = true); $pager = pager::init($recTotal, $recPerPage, $pageID); /* Build the search form. */ $this->loadModel('testcase'); $actionURL = $this->createLink('testsuite', 'library', "libID=$libID&browseType=bySearch&queryID=myQueryID"); $this->testsuite->buildSearchForm($libID, $libraries, $queryID, $actionURL); /* Append id for secend sort. */ $sort = $this->loadModel('common')->appendOrder($orderBy); /* save session .*/ $cases = $this->testsuite->getLibCases($libID, $browseType, $queryID, $moduleID, $sort, $pager); $this->loadModel('common')->saveQueryCondition($this->dao->get(), 'testcase', true); $this->loadModel('datatable'); $this->loadModel('tree'); $showModule = !empty($this->config->datatable->testsuiteLibrary->showModule) ? $this->config->datatable->testsuiteLibrary->showModule : ''; $this->view->modulePairs = $showModule ? $this->tree->getModulePairs($libID, 'caselib', $showModule) : array(); $this->view->title = $this->lang->caselib->common . $this->lang->colon . $libraries[$libID]; $this->view->position[] = html::a($this->createLink('testsuite', 'library', "libID=$libID"), $libraries[$libID]); $this->view->libID = $libID; $this->view->libName = $libraries[$libID]; $this->view->cases = $cases; $this->view->orderBy = $orderBy; $this->view->users = $this->loadModel('user')->getPairs('noclosed|noletter'); $this->view->modules = $this->tree->getOptionMenu($libID, $viewType = 'caselib', $startModuleID = 0); $this->view->moduleTree = $this->tree->getTreeMenu($libID, $viewType = 'caselib', $startModuleID = 0, array('treeModel', 'createCaseLibLink')); $this->view->pager = $pager; $this->view->browseType = $browseType; $this->view->moduleID = $moduleID; $this->view->moduleName = $moduleID ? $this->tree->getById($moduleID)->name : $this->lang->tree->all; $this->view->param = $param; $this->view->setShowModule = true; $this->display(); } /** * Create lib * * @access public * @return void */ public function createLib() { if(!empty($_POST)) { $response['result'] = 'success'; $response['message'] = ''; $libID = $this->testsuite->createLib(); if(dao::isError()) { $response['result'] = 'fail'; $response['message'] = dao::getError(); $this->send($response); } $this->loadModel('action')->create('caselib', $libID, 'opened'); $response['locate'] = $this->createLink('testsuite', 'library', "libID=$libID"); $response['message'] = $this->lang->testsuite->successSaved; $this->send($response); } /* Set menu. */ $libraries = $this->testsuite->getLibraries(); $libID = $this->testsuite->saveLibState(0, $libraries); $this->testsuite->setLibMenu($libraries, $libID); if($this->config->global->flow == 'onlyTest') $this->lang->menugroup->testsuite = 'caselib'; $this->view->title = $this->lang->caselib->common . $this->lang->colon . $this->lang->testsuite->createLib; $this->view->position[] = $this->lang->caselib->common; $this->view->position[] = $this->lang->testsuite->createLib; $this->display(); } /** * Create case for library. * * @param int $libID * @param int $moduleID * @access public * @return void */ public function createCase($libID, $moduleID = 0, $param = 0) { if(!empty($_POST)) { $this->loadModel('testcase'); $this->config->testcase->create->requiredFields = $this->config->testsuite->createcase->requiredFields; $caseResult = $this->testcase->create($bugID = 0); if(!$caseResult or dao::isError()) die(js::error(dao::getError())); $caseID = $caseResult['id']; if($caseResult['status'] == 'exists') { echo js::alert(sprintf($this->lang->duplicate, $this->lang->testcase->common)); die(js::locate($this->createLink('testcase', 'view', "caseID=$caseID"), 'parent')); } $this->loadModel('action')->create('case', $caseID, 'Opened'); /* If link from no head then reload. */ if(isonlybody()) die(js::reload('parent')); die(js::locate($this->createLink('testsuite', 'library', "libID={$libID}&browseType=byModule¶m={$_POST['module']}"), 'parent')); } /* Set lib menu. */ $libraries = $this->testsuite->getLibraries(); $libID = $this->testsuite->saveLibState($libID, $libraries); $this->testsuite->setLibMenu($libraries, $libID); if($this->config->global->flow == 'onlyTest') $this->lang->menugroup->testsuite = 'caselib'; $type = 'feature'; $stage = ''; $pri = 3; $caseTitle = ''; $precondition = ''; $keywords = ''; $steps = array(); $this->loadModel('testcase'); if($param) { $testcase = $this->testcase->getById((int)$param); $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(count($steps) < $this->config->testcase->defaultSteps) { $paddingCount = $this->config->testcase->defaultSteps - count($steps); $step = new stdclass(); $step->type = 'item'; $step->desc = ''; $step->expect = ''; for($i = 1; $i <= $paddingCount; $i ++) $steps[] = $step; } $this->view->title = $libraries[$libID] . $this->lang->colon . $this->lang->testcase->create; $this->view->position[] = html::a($this->createLink('testsuite', 'library', "libID=$libID"), $libraries[$libID]); $this->view->position[] = $this->lang->testsuite->common; $this->view->position[] = $this->lang->testcase->create; foreach(explode(',', $this->config->testsuite->customCreateFields) as $field) $customFields[$field] = $this->lang->testcase->$field; $this->view->showFields = $this->config->testsuite->custom->createFields; $this->view->customFields = $customFields; $this->view->libraries = $libraries; $this->view->libID = $libID; $this->view->currentModuleID = (int)$moduleID; $this->view->caseTitle = $caseTitle; $this->view->type = $type; $this->view->stage = $stage; $this->view->pri = $pri; $this->view->precondition = $precondition; $this->view->keywords = $keywords; $this->view->steps = $steps; $this->view->moduleOptionMenu = $this->loadModel('tree')->getOptionMenu($libID, $viewType = 'caselib', $startModuleID = 0); $this->display(); } /** * Batch create case. * * @param int $libID * @param int $moduleID * @access public * @return void */ public function batchCreateCase($libID, $moduleID = 0) { $this->loadModel('testcase'); if(!empty($_POST)) { $caseID = $this->testsuite->batchCreateCase($libID); if(dao::isError()) die(js::error(dao::getError())); if(isonlybody()) die(js::closeModal('parent.parent', 'this')); die(js::locate($this->createLink('testsuite', 'library', "libID=$libID&browseType=byModule¶m=$moduleID"), 'parent')); } $libraries = $this->testsuite->getLibraries(); if(empty($libraries)) $this->locate(inlink('createLib')); /* Set lib menu. */ $this->testsuite->setLibMenu($libraries, $libID); if($this->config->global->flow == 'onlyTest') $this->lang->menugroup->testsuite = 'caselib'; $currentModuleID = (int)$moduleID; /* Set module option menu. */ $moduleOptionMenu = $this->loadModel('tree')->getOptionMenu($libID, $viewType = 'caselib', $startModuleID = 0); $moduleOptionMenu['ditto'] = $this->lang->testcase->ditto; $this->view->title = $libraries[$libID] . $this->lang->colon . $this->lang->testcase->batchCreate; $this->view->position[] = html::a($this->createLink('testsuite', 'library', "libID=$libID"), $libraries[$libID]); $this->view->position[] = $this->lang->testcase->batchCreate; $this->view->libID = $libID; $this->view->moduleOptionMenu = $moduleOptionMenu; $this->view->currentModuleID = $currentModuleID; $this->display(); } /** * View library * * @param int $libID * @access public * @return void */ public function libView($libID) { $lib = $this->testsuite->getById($libID); /* Set lib menu. */ $libraries = $this->testsuite->getLibraries(); $this->testsuite->setLibMenu($libraries, $libID); if($this->config->global->flow == 'onlyTest') $this->lang->menugroup->testsuite = 'caselib'; $this->loadModel('testcase'); $this->view->title = $lib->name . $this->lang->colon . $this->lang->testsuite->view; $this->view->position[] = html::a($this->createLink('testsuite', 'library', "libID=$libID"), $lib->name); $this->view->position[] = $this->lang->testsuite->common; $this->view->position[] = $this->lang->testsuite->view; $this->view->lib = $lib; $this->view->actions = $this->loadModel('action')->getList('caselib', $libID); $this->display(); } /** * Ajax get drop menu. * * @param int $libID * @param string $module * @param string $method * @param string $extra * @access public * @return void */ public function ajaxGetDropMenu($libID, $module, $method, $extra = '') { $this->view->link = $this->testsuite->getLibLink($module, $method, $extra); $this->view->libID = $libID; $this->view->module = $module; $this->view->method = $method; $this->view->extra = $extra; $libraries = $this->testsuite->getLibraries(); $this->view->libraries = $libraries; $this->view->librariesPinyin = common::convert2Pinyin($libraries); $this->display(); } /** * The results page of search. * * @param string $keywords * @param string $module * @param string $method * @param mix $extra * @access public * @return void */ public function ajaxGetMatchedItems($keywords, $module, $method, $extra) { $libraries = $this->dao->select('*')->from(TABLE_TESTSUITE)->where('deleted')->eq(0)->andWhere('name')->like("%$keywords%")->andWhere('type')->eq('library')->orderBy('`id` desc')->fetchAll(); $this->view->link = $this->testsuite->getLibLink($module, $method, $extra); $this->view->libraries = $libraries; $this->view->keywords = $keywords; $this->display(); } /** * Export templet. * * @param int $libID * @access public * @return void */ public function exportTemplet($libID) { $this->loadModel('testcase'); if($_POST) { $fields['module'] = $this->lang->testcase->module; $fields['title'] = $this->lang->testcase->title; $fields['precondition'] = $this->lang->testcase->precondition; $fields['stepDesc'] = $this->lang->testcase->stepDesc; $fields['stepExpect'] = $this->lang->testcase->stepExpect; $fields['keywords'] = $this->lang->testcase->keywords; $fields['pri'] = $this->lang->testcase->pri; $fields['type'] = $this->lang->testcase->type; $fields['stage'] = $this->lang->testcase->stage; $fields[''] = ''; $fields['typeValue'] = $this->lang->testcase->lblTypeValue; $fields['stageValue'] = $this->lang->testcase->lblStageValue; $modules = $this->loadModel('tree')->getOptionMenu($libID, $viewType = 'caselib', $startModuleID = 0); $rows = array(); $num = (int)$this->post->num; for($i = 0; $i < $num; $i++) { foreach($modules as $moduleID => $module) { $row = new stdclass(); $row->module = $module . "(#$moduleID)"; $row->stepDesc = "1. \n2. \n3."; $row->stepExpect = "1. \n2. \n3."; if(empty($rows)) { $row->typeValue = join("\n", $this->lang->testcase->typeList); $row->stageValue = join("\n", $this->lang->testcase->stageList); } $rows[] = $row; } } $this->post->set('fields', $fields); $this->post->set('kind', 'testcase'); $this->post->set('rows', $rows); $this->post->set('extraNum', $num); $this->post->set('fileName', 'templet'); $this->fetch('file', 'export2csv', $_POST); } $this->display(); } /** * Import case csv file. * * @param int $libID * @access public * @return void */ public function import($libID) { $this->loadModel('testcase'); if($_FILES) { $file = $this->loadModel('file')->getUpload('file'); $file = $file[0]; $fileName = $this->file->savePath . $this->file->getSaveName($file['pathname']); move_uploaded_file($file['tmpname'], $fileName); $rows = $this->file->parseCSV($fileName); $fields = $this->testcase->getImportFields($productID); $fields = array_flip($fields); $header = array(); foreach($rows[0] as $i => $rowValue) { if(empty($rowValue)) break; $header[$i] = $rowValue; } unset($rows[0]); $columnKey = array(); foreach($header as $title) { if(!isset($fields[$title])) continue; $columnKey[] = $fields[$title]; } if(count($columnKey) != count($header) or $this->post->encode != 'utf-8') { $fc = file_get_contents($fileName); $encode = $this->post->encode != "utf-8" ? $this->post->encode : 'gbk'; $fc = helper::convertEncoding($fc, $encode, 'utf-8'); file_put_contents($fileName, $fc); $rows = $this->file->parseCSV($fileName); $columnKey = array(); $header = array(); foreach($rows[0] as $i => $rowValue) { if(empty($rowValue)) break; $header[$i] = $rowValue; } unset($rows[0]); foreach($header as $title) { if(!isset($fields[$title])) continue; $columnKey[] = $fields[$title]; } if(count($columnKey) != count($header)) die(js::alert($this->lang->testcase->errorEncode)); } $this->session->set('importFile', $fileName); die(js::locate(inlink('showImport', "libID=$libID"), 'parent.parent')); } $this->display(); } /** * Show import case. * * @param int $libID * @access public * @return void */ public function showImport($libID) { $this->loadModel('testcase'); if($_POST) { $this->testsuite->createFromImport($libID); die(js::locate(inlink('library', "libID=$libID"), 'parent')); } $libraries = $this->testsuite->getLibraries(); if(empty($libraries)) $this->locate(inlink('createLib')); $this->testsuite->setLibMenu($libraries, $libID); $file = $this->session->importFile; $caseLang = $this->lang->testcase; $caseConfig = $this->config->testcase; $modules = $this->loadModel('tree')->getOptionMenu($libID, $viewType = 'caselib', $startModuleID = 0); $fields = explode(',', $caseConfig->exportFields); foreach($fields as $key => $fieldName) { $fieldName = trim($fieldName); $fields[$fieldName] = isset($caseLang->$fieldName) ? $caseLang->$fieldName : $fieldName; unset($fields[$key]); } $fields = array_flip($fields); $rows = $this->loadModel('file')->parseCSV($file); $header = array(); foreach($rows[0] as $i => $rowValue) { if(empty($rowValue)) break; $header[$i] = $rowValue; } unset($rows[0]); foreach($header as $title) { if(!isset($fields[$title])) continue; $columnKey[] = $fields[$title]; } $endField = end($fields); $caseData = array(); $stepData = array(); $stepVars = 0; foreach($rows as $row => $data) { $case = new stdclass(); foreach($columnKey as $key => $field) { if(!isset($data[$key])) continue; $cellValue = $data[$key]; if($field == 'module') { $case->$field = 0; if(strrpos($cellValue, '(#') !== false) { $id = trim(substr($cellValue, strrpos($cellValue,'(#') + 2), ')'); $case->$field = $id; } } elseif(in_array($field, $caseConfig->export->listFields)) { if($field == 'stage') { $stages = explode("\n", $cellValue); foreach($stages as $stage) $case->stage[] = array_search($stage, $caseLang->{$field . 'List'}); $case->stage = join(',', $case->stage); } else { $case->$field = array_search($cellValue, $caseLang->{$field . 'List'}); } } elseif($field != 'stepDesc' and $field != 'stepExpect') { $case->$field = $cellValue; } else { $steps = (array)$cellValue; if(strpos($cellValue, "\n")) { $steps = explode("\n", $cellValue); } elseif(strpos($cellValue, "\r")) { $steps = explode("\r", $cellValue); } $stepKey = str_replace('step', '', strtolower($field)); $caseStep = array(); foreach($steps as $step) { $step = trim($step); if(empty($step)) continue; if(preg_match('/^(([0-9]+)\.[0-9]+)([.、]{1})/U', $step, $out)) { $num = $out[1]; $parent = $out[2]; $sign = $out[3]; $signbit = $sign == '.' ? 1 : 3; $step = trim(substr($step, strlen($num) + $signbit)); if(!empty($step)) $caseStep[$num]['content'] = $step; $caseStep[$num]['type'] = 'item'; $caseStep[$parent]['type'] = 'group'; } elseif(preg_match('/^([0-9]+)([.、]{1})/U', $step, $out)) { $num = $out[1]; $sign = $out[2]; $signbit = $sign == '.' ? 1 : 3; $step = trim(substr($step, strlen($num) + $signbit)); if(!empty($step)) $caseStep[$num]['content'] = $step; $caseStep[$num]['type'] = 'step'; } elseif(isset($num)) { if(!isset($caseStep[$num]['content'])) $caseStep[$num]['content'] = ''; $caseStep[$num]['content'] .= "\n" . $step; } else { if($field == 'stepDesc') { $num = 1; $caseStep[$num]['content'] = $step; $caseStep[$num]['type'] = 'step'; } if($field == 'stepExpect' and isset($stepData[$row]['desc'])) { end($stepData[$row]['desc']); $num = key($stepData[$row]['desc']); $caseStep[$num]['content'] = $step; } } } unset($num); unset($sign); $stepVars += count($caseStep, COUNT_RECURSIVE) - count($caseStep); $stepData[$row][$stepKey] = $caseStep; } } $caseData[$row] = $case; unset($case); } if(empty($caseData)) { unlink($this->session->importFile); unset($_SESSION['importFile']); echo js::alert($this->lang->error->noData); die(js::locate($this->createLink('testsuite', 'library', "libID=$libID"))); } /* Judge whether the editedTasks is too large and set session. */ $countInputVars = count($caseData) * 9 + $stepVars; $showSuhosinInfo = common::judgeSuhosinSetting($countInputVars); if($showSuhosinInfo) $this->view->suhosinInfo = extension_loaded('suhosin') ? sprintf($this->lang->suhosinInfo, $countInputVars) : sprintf($this->lang->maxVarsInfo, $countInputVars); $this->view->title = $this->lang->caselib->common . $this->lang->colon . $this->lang->testcase->showImport; $this->view->position[] = $this->lang->testcase->showImport; $this->view->modules = $modules; $this->view->cases = $this->dao->select('id,module,stage,status,pri,type')->from(TABLE_CASE)->where('lib')->eq($libID)->andWhere('deleted')->eq(0)->andWhere('product')->eq(0)->fetchAll('id'); $this->view->caseData = $caseData; $this->view->stepData = $stepData; $this->view->libID = $libID; $this->display(); } }