znt/module/testcase/ui/browse.html.php

258 lines
13 KiB
PHP

<?php
declare(strict_types=1);
/**
* The browse view file of testcase module of ZenTaoPMS.
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
* @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Yuting Wang <wangyuting@easycorp.ltd>
* @package testcase
* @link https://www.zentao.net
*/
namespace zin;
$isFromDoc = $from === 'doc';
$isFromAI = $from === 'ai';
if($isFromDoc || $isFromAI) $this->app->loadLang('doc');
include 'header.html.php';
jsVar('confirmBatchDeleteSceneCase', $lang->testcase->confirmBatchDeleteSceneCase);
jsVar('caseChanged', $lang->testcase->changed);
jsVar('isFromDoc', $isFromDoc);
jsVar('isFromAI', $isFromAI);
$topSceneCount = count(array_filter(array_map(function($case){return $case->isScene && $case->grade == 1;}, $cases)));
$canBatchRun = $canModify && hasPriv('testtask', 'batchRun');
$canBatchEdit = $canModify && hasPriv('testcase', 'batchEdit') && $productID;
$canBatchReview = $canModify && hasPriv('testcase', 'batchReview') && ($config->testcase->needReview || !empty($config->testcase->forceReview));
$canBatchDelete = $canModify && hasPriv('testcase', 'batchDelete');
$canBatchChangeType = $canModify && hasPriv('testcase', 'batchChangeType');
$canBatchConfirmStoryChange = $canModify && hasPriv('testcase', 'batchConfirmStoryChange');
$canBatchChangeBranch = $canModify && hasPriv('testcase', 'batchChangeBranch') && isset($product->type) && $product->type != 'normal';
$canBatchChangeModule = $canModify && hasPriv('testcase', 'batchChangeModule') && !empty($productID) && ((isset($product->type) && $product->type == 'normal') || $branch !== 'all');
$canBatchChangeScene = $canModify && hasPriv('testcase', 'batchChangeScene');
$canImportToLib = $canModify && hasPriv('testcase', 'importToLib') && helper::hasFeature('caselib');
$canGroupBatch = ($canBatchRun || $canBatchEdit || $canBatchReview || $canBatchDelete || $canBatchChangeType || $canBatchConfirmStoryChange);
$canBatchAction = ($canGroupBatch || $canBatchChangeBranch || $canBatchChangeModule || $canBatchChangeScene || $canImportToLib);
jsVar('canImportToLib', $canImportToLib);
$productCount = count(array_unique(array_map(function($case){return $case->product;}, $cases)));
$caseProductID = $productCount > 1 ? 0 : $productID;
$navActions = array();
if($canBatchReview || $canBatchDelete || $canBatchChangeType || $canBatchConfirmStoryChange)
{
if($canBatchReview)
{
$reviewItems = array();
foreach($lang->testcase->reviewResultList as $key => $result)
{
if($key == '') continue;
$reviewItems[] = array('text' => $result, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => $this->createLink('testcase', 'batchReview', "result=$key"));
}
$navActions[] = array('text' => $lang->testcase->review, 'class' => 'not-hide-menu', 'items' => $reviewItems);
}
if($canBatchDelete) $navActions[] = array('text' => $lang->delete, 'innerClass' => 'batch-btn ajax-btn not-open-url batch-delete-btn', 'data-url' => helper::createLink('testcase', 'batchDelete', "productID=$productID"));
if($canBatchChangeType)
{
$typeItems = array();
foreach($lang->testcase->typeList as $key => $type)
{
if(!$key || $key == 'unit') continue;
$typeItems[] = array('text' => $type, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => helper::createLink('testcase', 'batchChangeType', "type={$key}"));
}
$navActions[] = array('text' => $lang->testcase->type, 'class' => 'not-hide-menu', 'items' => $typeItems);
}
if($canBatchConfirmStoryChange) $navActions[] = array('text' => $lang->testcase->confirmStoryChange, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => helper::createLink('testcase', 'batchConfirmStoryChange', "productID=$productID"));
}
if($canBatchChangeModule)
{
$moduleItems = array();
foreach($modules as $changeModuleID => $module) $moduleItems[] = array('text' => $module, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => helper::createLink('testcase', 'batchChangeModule', "moduleID={$changeModuleID}"));
}
if($canBatchChangeBranch)
{
$branchItems = array();
foreach($branchTagOption as $branchTagID => $branchName) $branchItems[] = array('text' => $branchName, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => helper::createLink('testcase', 'batchChangeBranch', "branchID=$branchTagID"));
}
if($canBatchChangeScene)
{
$sceneItems = array();
foreach($iscenes as $sceneID => $scene) $sceneItems[] = array('text' => $scene, 'innerClass' => 'batch-btn ajax-btn not-open-url', 'data-url' => helper::createLink('testcase', 'batchChangeScene', "sceneId=$sceneID"));
}
$footToolbar = $canBatchAction ? array('items' => array
(
$canGroupBatch ? array('type' => 'btn-group', 'items' => array
(
$canBatchRun ? array('text' => $lang->testtask->runCase, 'className' => 'batch-btn secondary not-open-url', 'data-url' => helper::createLink('testtask', 'batchRun', "productID=$productID&orderBy=$orderBy&from=testcase")) : null,
$canBatchEdit ? array('text' => $lang->edit, 'className' => 'batch-btn secondary not-open-url', 'data-url' => helper::createLink('testcase', 'batchEdit', "productID=$caseProductID&branch=$branch")) : null,
!empty($navActions) ? array('caret' => 'up', 'className' => 'secondary', 'items' => $navActions, 'data-placement' => 'top-start') : null,
)) : null,
$canBatchChangeBranch ? array('caret' => 'up', 'text' => $lang->product->branchName[$product->type], 'type' => 'dropdown', 'items' => $branchItems, 'data-placement' => 'top-start') : null,
$canBatchChangeModule ? array('caret' => 'up', 'text' => $lang->testcase->moduleAB, 'type' => 'dropdown', 'items' => $moduleItems, 'data-placement' => 'top-start', 'data-menu' => array('searchBox' => true)) : null,
$canBatchChangeScene ? array('caret' => 'up', 'text' => $lang->testcase->scene, 'type' => 'dropdown', 'items' => $sceneItems, 'data-placement' => 'top-start') : null,
$canImportToLib ? array('text' => $lang->testcase->importToLib, 'data-toggle' => 'modal', 'data-target' => '#importToLib', 'data-size' => 'sm') : null,
), 'btnProps' => array('size' => 'sm', 'btnType' => 'secondary')) : null;
$footToolbar['items'] = $canBatchAction ? array_values(array_filter($footToolbar['items'])) : array();
if($isFromDoc)
{
$insertListLink = createLink($app->rawModule, $app->rawMethod, "productID=$product->id&branch=$branch&browseType=$browseType&param=$param&caseType=$caseType&orderBy=$orderBy&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}&projectID=$projectID&from=$from&blockID={blockID}");
$footToolbar = array(array('text' => $lang->doc->insertText, 'data-on' => 'click', 'data-call' => "insertListToDoc('#testcases', 'productCase', $blockID, '$insertListLink')"));
}
if($isFromAI) $footToolbar = array(array('text' => $lang->doc->insertText, 'data-on' => 'click', 'data-call' => "insertListToAI('#testcases', 'case')"));
$cols = $this->loadModel('datatable')->getSetting('testcase');
if(!empty($cols['actions']['list']))
{
$executionID = ($app->tab == 'project' || $app->tab == 'execution') ? $this->session->{$app->tab} : '0';
foreach($cols['actions']['list'] as $method => $methodParams)
{
if(!isset($methodParams['url'])) continue;
$cols['actions']['list'][$method]['url'] = str_replace(array('%executionID%', '{runID}'), array((string)$executionID, '0'), $methodParams['url']);
}
}
if(isset($cols['title'])) $cols['title']['nestedToggle'] = $topSceneCount > 0;
if(isset($cols['branch'])) $cols['branch']['map'] = $branchTagOption;
if(isset($cols['story'])) $cols['story']['map'] = $stories;
if(isset($cols['scene'])) $cols['scene']['map'] = $iscenes;
if(isset($cols['status'])) $cols['status']['statusMap']['changed'] = $lang->story->changed;
foreach($cases as $case)
{
$case->lastRunDate = formatTime($case->lastRunDate);
if($case->fromCaseVersion > 0 && $case->fromCaseVersion > $case->version) $case->status = 'casechanged';
$actionType = $case->isScene ? 'scene' : 'testcase';
$cols['actions']['menu'] = $config->$actionType->menu;
if($actionType == 'testcase' && !$this->config->testcase->needReview && empty($config->testcase->forceReview)) unset($cols['actions']['menu'][1][0]);
if($actionType == 'scene') $case->bugs = $case->results = $case->stepNumber = $case->version = '';
if(!empty($case->needconfirm)) $case->status = 'changed';
if(isset($case->script)) unset($case->script);
$stages = array();
$reviewedByList = array();
foreach(explode(',', $case->stage) as $stage) $stages[] = zget($lang->testcase->stageList, $stage, '');
foreach(explode(',', $case->reviewedBy) as $reviewedBy) $reviewedByList[] = zget($users, $reviewedBy, '');
$case->stage = implode(',', array_filter($stages));
$case->reviewedBy = implode(',', array_filter($reviewedByList));
$case->browseType = $browseType;
initTableData(array($case), $cols, $this->testcase);
if(!$canModify) unset($case->actions);
}
if($isFromDoc || $isFromAI)
{
if(isset($cols['actions'])) unset($cols['actions']);
foreach($cols as $key => $col)
{
$cols[$key]['sortType'] = false;
if(isset($col['link'])) unset($cols[$key]['link']);
if($key == 'pri') $cols[$key]['priList'] = $lang->testcase->priList;
if($key == 'title') $cols[$key]['link'] = array('url' => createLink('testcase', 'view', "caseID={caseID}&version={version}"), 'data-toggle' => 'modal', 'data-size' => 'lg');
}
}
$linkParams = '';
foreach($app->rawParams as $key => $value) $linkParams = $key != 'orderBy' ? "{$linkParams}&{$key}={$value}" : "{$linkParams}&orderBy={name}_{sortType}";
$caseCreateLink = $canCreateCase ? $createCaseLink : '';
div(
on::click('[data-col="actions"] .ztf-case', 'window.checkZtf'),
dtable
(
set::id('testcases'),
set::plugins(array('sortable')),
set::sortable(strpos($orderBy, 'sort_asc') !== false),
set::onSortEnd(strpos($orderBy, 'sort_asc') !== false ? jsRaw('window.onSortEnd') : null),
set::canSortTo(strpos($orderBy, 'sort_asc') !== false ? jsRaw('window.canSortTo') : null),
($isFromDoc || $isFromAI) ? set::afterRender(jsCallback()->call('toggleCheckRows', $idList)) : null,
($isFromDoc || $isFromAI) ? set::onCheckChange(jsRaw('window.checkedChange')) : null,
($isFromDoc || $isFromAI) ? set::height(400) : null,
($isFromDoc || $isFromAI) ? null : set::customCols(true),
($isFromDoc || $isFromAI) ? null : set::sortLink(createLink($app->rawModule, $app->rawMethod, $linkParams)),
($isFromDoc || $isFromAI) ? null : set::createTip($lang->testcase->create),
($isFromDoc || $isFromAI) ? null : set::createLink($caseCreateLink),
set::userMap($users),
set::cols($cols),
set::nested(true),
set::data(array_values($cases)),
set::onRenderCell(jsRaw('window.onRenderCell')),
set::checkable($canBatchAction),
set::checkInfo(jsRaw('function(checks){return window.setStatistics(this, checks);}')),
set::orderBy($orderBy),
set::nested(true),
set::footToolbar($footToolbar),
set::footPager(usePager()),
set::emptyTip($lang->testcase->noCase),
set::customData(array('modules' => $modulePairs))
)
);
modal
(
on::click('button[type="submit"]', "getCheckedCaseIdList('testcases')"),
setID('importToLib'),
set::modalProps(array('title' => $lang->testcase->importToLib)),
formPanel
(
set::url(createLink('testcase', 'importToLib')),
set::actions(array('submit')),
set::submitBtnText($lang->testcase->import),
formRow
(
formGroup
(
set::label($lang->testcase->selectLibAB),
set::name('lib'),
set::items($libraries),
set::value(''),
set::required(true)
)
),
formRow
(
setClass('hidden'),
formGroup
(
set::name('caseIdList'),
set::value('')
)
)
)
);
modal
(
setID('dragModal'),
set::title($lang->testcase->dragModalTitle),
set::size('sm'),
divider(),
div(setClass('my-4'), $lang->testcase->dragModalDesc),
div($lang->testcase->dragModalOrder),
div($lang->testcase->dragModalScene),
div(setClass('my-4'), $lang->testcase->dragModalAction),
divider(),
div
(
setClass('mt-4 pull-right'),
btn(setClass('primary mr-2'), $lang->testcase->dragModalChangeScene, set('data-on', 'click'), set('data-call', 'clickChangeScenen')),
btn(setClass('primary mr-2'), $lang->testcase->dragModalChangeOrder, set('data-on', 'click'), set('data-call', 'clickChangeOrder')),
btn($lang->close, set('data-dismiss', 'modal'))
)
);
render();