znt/module/testsuite/model.php

324 lines
11 KiB
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
/**
* 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(object $suite): bool|int
{
$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(int|array $productID, string $orderBy = 'id_desc', ?object $pager = null, string $param = ''): array
{
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(int|array $productID): array
{
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(int $productID, string $orderBy = 'id_desc'): array
{
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(int $suiteID, bool $setImgSize = false): object|bool
{
$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(object $suite, string $uid): array|bool
{
$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(int $suiteID, array $cases, array $versions): bool
{
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(int $suiteID, string $orderBy = 'id_desc', ?object $pager = null, bool $append = true): array
{
$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(int $suiteID): array
{
$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(object $suite, string $browseType = 'all', int $param = 0, ?object $pager = null): array
{
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(object $report, string $action): bool
{
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(array $cases, int $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(int $productID): array
{
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();
}
}