| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- <?php
- /**
- * The model file of test suite module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package testsuite
- * @link https://www.zentao.net
- */
- ?>
- <?php
- class testsuiteModel extends model
- {
- /**
- * 创建一个测试套件。
- * Create a test suite.
- *
- * @param object $suite
- * @access public
- * @return bool|int
- */
- public function create($suite)
- {
- $this->dao->insert(TABLE_TESTSUITE)->data($suite)
- ->batchcheck($this->config->testsuite->create->requiredFields, 'notempty')
- ->checkFlow()
- ->exec();
- if(dao::isError()) return false;
- $suiteID = $this->dao->lastInsertID();
- $this->loadModel('action')->create('testsuite', $suiteID, 'opened');
- return $suiteID;
- }
- /**
- * 获取一个产品下的测试套件。
- * Get test suites of a product.
- *
- * @param int|array $productID
- * @param string $orderBy
- * @param object $pager
- * @param string $param
- * @access public
- * @return array
- */
- public function getSuites($productID, $orderBy = 'id_desc', $pager = null, $param = '')
- {
- return $this->dao->select('*')->from(TABLE_TESTSUITE)
- ->where('product')->in($productID)
- ->beginIF($this->lang->navGroup->testsuite != 'qa')->andWhere('project')->eq($this->session->project)->fi()
- ->andWhere('deleted')->eq('0')
- ->andWhere('`type`', true)->eq('public')
- ->orWhere('(`type`')->eq('private')
- ->andWhere('`addedBy`')->eq($this->app->user->account)
- ->markRight(2)
- ->beginIF(strpos($param, 'review') !== false)->andWhere("FIND_IN_SET('{$this->app->user->account}', `reviewers`)")->fi()
- ->orderBy($orderBy)
- ->page($pager)
- ->fetchAll('id', false);
- }
- /**
- * 获取一个产品下的测试套件对。
- * Get test suites pairs of a product.
- *
- * @param int|array $productID
- * @access public
- * @return array
- */
- public function getSuitePairs($productID)
- {
- return $this->dao->select('id, name')->from(TABLE_TESTSUITE)
- ->where('product')->in($productID)
- ->beginIF($this->lang->navGroup->testsuite != 'qa')->andWhere('project')->eq($this->session->project)->fi()
- ->andWhere('deleted')->eq('0')
- ->andWhere("(`type` = 'public' OR (`type` = 'private' AND `addedBy` = '{$this->app->user->account}'))")
- ->orderBy('id_desc')
- ->fetchPairs();
- }
- /**
- * 获取单元测试的套件。
- * Get suites of unit test.
- *
- * @param int $productID
- * @param string $orderBy
- * @access public
- * @return array
- */
- public function getUnitSuites($productID, $orderBy = 'id_desc')
- {
- return $this->dao->select('*')->from(TABLE_TESTSUITE)
- ->where('product')->eq($productID)
- ->andWhere('deleted')->eq('0')
- ->andWhere('type')->eq('unit')
- ->orderBy($orderBy)
- ->fetchAll('id', false);
- }
- /**
- * 通过id获取测试套件的详情。
- * Get test suite info by id.
- *
- * @param int $suiteID
- * @param bool $setImgSize
- * @access public
- * @return object|bool
- */
- public function getById($suiteID, $setImgSize = false)
- {
- $suite = $this->dao->select('*')->from(TABLE_TESTSUITE)->where('id')->eq((int)$suiteID)->fetch();
- if(!$suite) return false;
- $suite = $this->loadModel('file')->replaceImgURL($suite, 'desc');
- if($setImgSize) $suite->desc = $this->file->setImgSize($suite->desc);
- return $suite;
- }
- /**
- * 更新一个测试套件。
- * Update a test suite.
- *
- * @param object $suite
- * @param string $uid
- * @access public
- * @return array|bool
- */
- public function update($suite, $uid)
- {
- $oldSuite = $this->dao->select('*')->from(TABLE_TESTSUITE)->where('id')->eq((int)$suite->id)->fetch();
- $suite = $this->loadModel('file')->processImgURL($suite, $this->config->testsuite->editor->edit['id'], $uid);
- $this->dao->update(TABLE_TESTSUITE)->data($suite)
- ->autoCheck()
- ->batchcheck($this->config->testsuite->edit->requiredFields, 'notempty')
- ->checkFlow()
- ->where('id')->eq((int)$suite->id)
- ->exec();
- if(dao::isError()) return false;
- $this->file->updateObjectID($uid, $suite->id, 'testsuite');
- return common::createChanges($oldSuite, $suite);
- }
- /**
- * 关联测试用例。
- * Link cases.
- *
- * @param int $suiteID
- * @param array $cases
- * @param array $versions
- * @access public
- * @return bool
- */
- public function linkCase($suiteID, $cases, $versions)
- {
- if(empty($cases)) return false;
- $suiteCase = new stdclass();
- $suiteCase->suite = $suiteID;
- foreach($cases as $case)
- {
- $suiteCase->case = $case;
- $suiteCase->version = zget($versions, $case, 0);
- $this->dao->replace(TABLE_SUITECASE)->data($suiteCase)->exec();
- }
- return !dao::isError();
- }
- /**
- * 获取套件下关联的测试用例。
- * Get linked cases of the suite.
- *
- * @param int $suiteID
- * @param string $orderBy
- * @param object $pager
- * @param bool $append
- * @access public
- * @return array
- */
- public function getLinkedCases($suiteID, $orderBy = 'id_desc', $pager = null, $append = true)
- {
- $suite = $this->getById($suiteID);
- if(!$suite) return array();
- $cases = $this->dao->select('t1.*, t2.version AS caseVersion, t2.suite, t3.title AS caseTitle')->from(TABLE_CASE)->alias('t1')
- ->leftJoin(TABLE_SUITECASE)->alias('t2')->on('t1.id=t2.case')
- ->leftJoin(TABLE_CASESPEC)->alias('t3')->on('t1.id=t3.case AND t2.version=t3.version')
- ->where('t2.suite')->eq($suiteID)
- ->beginIF($this->lang->navGroup->testsuite != 'qa')->andWhere('t1.project')->eq($this->session->project)->fi()
- ->andWhere('t1.product')->eq($suite->product)
- ->andWhere('t1.deleted')->eq('0')
- ->orderBy($orderBy)
- ->page($pager)
- ->fetchAll('id', false);
- foreach($cases as $case)
- {
- if(empty($case->caseTitle)) $case->caseTitle = $case->title;
- }
- $this->loadModel('common')->saveQueryCondition($this->dao->get(), 'testcase', false);
- if(!$append) return $cases;
- return $this->loadModel('testcase')->appendData($cases);
- }
- /**
- * 获取套件下关联的测试用例对。
- * Get linked cases pairs of the suite.
- *
- * @param int $suiteID
- * @access public
- * @return array
- */
- public function getLinkedCasePairs($suiteID)
- {
- $suite = $this->getById($suiteID);
- if(!$suite) return array();
- return $this->dao->select('t1.id, t1.title')->from(TABLE_CASE)->alias('t1')
- ->leftJoin(TABLE_SUITECASE)->alias('t2')->on('t1.id=t2.case')
- ->where('t2.suite')->eq($suiteID)
- ->beginIF($this->lang->navGroup->testsuite != 'qa')->andWhere('t1.project')->eq($this->session->project)->fi()
- ->andWhere('t1.product')->eq($suite->product)
- ->andWhere('t1.deleted')->eq('0')
- ->orderBy('id_desc')
- ->fetchPairs('id');
- }
- /**
- * 获取套件下未关联的测试用例。
- * Get unlinked cases for suite.
- *
- * @param object $suite
- * @param string $browseType
- * @param int $param
- * @param object $pager
- * @access public
- * @return array
- */
- public function getUnlinkedCases($suite, $browseType = 'all', $param = 0, $pager = null)
- {
- if($this->session->testsuiteQuery == false) $this->session->set('testsuiteQuery', ' 1 = 1');
- if($param)
- {
- $query = $this->loadModel('search')->getQuery($param);
- if($query)
- {
- $this->session->set('testsuiteQuery', $query->sql);
- $this->session->set('testsuiteForm', $query->form);
- }
- }
- $query = $browseType == 'bySearch' ? $this->session->testsuiteQuery : ' 1 = 1';
- $allProduct = "`product` = 'all'";
- if(strpos($query, '`product` =') === false) $query .= " AND `product` = {$suite->product}";
- if(strpos($query, $allProduct) !== false) $query = str_replace($allProduct, '1', $query);
- $linkedCases = $this->getLinkedCases($suite->id, 'id_desc', null, $append = false);
- return $this->dao->select('*')->from(TABLE_CASE)
- ->where($query)
- ->beginIF($linkedCases)->andWhere('id')->notIN(array_keys($linkedCases))->fi()
- ->beginIF($this->lang->navGroup->testsuite != 'qa')->andWhere('project')->eq($this->session->project)->fi()
- ->andWhere('deleted')->eq('0')
- ->orderBy('id desc')
- ->page($pager)
- ->fetchAll('id', false);
- }
- /**
- * 判断操作是否可以点击。
- * Judge an action is clickable or not.
- *
- * @param object $report
- * @param string $action
- * @access public
- * @return bool
- */
- public function isClickable($report, $action)
- {
- if($action == 'confirmCaseChange') return isset($report->caseVersion) && $report->version > $report->caseVersion;
- return common::hasPriv('testsuite', $action);
- }
- /**
- * 移除一个套件下的所有用例。
- * Remove all use cases under a suite.
- *
- * @param array $cases
- * @param int $suiteID
- * @access public
- * @return void
- */
- public function deleteCaseBySuiteID($cases, $suiteID)
- {
- return $this->dao->delete()->from(TABLE_SUITECASE)->where('`case`')->in($cases)->andWhere('`suite`')->eq($suiteID)->exec();
- }
- /**
- * 获取产品下用例关联的需求
- * Get case stories by productID.
- *
- * @param int $productID
- * @access public
- * @return array
- */
- public function getCaseLinkedStories($productID)
- {
- return $this->dao->select('t1.story, t2.title')->from(TABLE_CASE)->alias('t1')
- ->leftJoin(TABLE_STORY)->alias('t2')->on('t1.story = t2.id')
- ->where('t1.product')->eq($productID)
- ->andWhere('t1.deleted')->eq('0')
- ->andWhere('t1.story')->ne(0)
- ->fetchPairs();
- }
- }
|