47 lines
1.7 KiB
PHP
Executable File
47 lines
1.7 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
|
include dirname(__FILE__, 2) . '/lib/execution.unittest.class.php';
|
|
|
|
$execution = zenData('project');
|
|
$execution->id->range('1-5');
|
|
$execution->name->range('1-5')->prefix('执行');
|
|
$execution->type->range('sprint,stage,kanban');
|
|
$execution->status->range('wait{3},suspended,closed,doing');
|
|
$execution->openedBy->range('admin,user1');
|
|
$execution->begin->range('20220112 000000:0')->type('timestamp')->format('YY/MM/DD');
|
|
$execution->end->range('20220212 000000:0')->type('timestamp')->format('YY/MM/DD');
|
|
$execution->gen(5);
|
|
|
|
$task = zenData('task');
|
|
$task->execution->range('1-3');
|
|
$task->project->range('0');
|
|
$task->story->range('1-10');
|
|
$task->storyVersion->range('1{6},2{4}');
|
|
$task->gen(10);
|
|
|
|
$story = zenData('story');
|
|
$story->id->range('1-10');
|
|
$story->status->range('active');
|
|
$story->version->range('1{6},2{2},3{2}');
|
|
$story->gen(10);
|
|
|
|
su('admin');
|
|
|
|
/**
|
|
|
|
title=测试 executionModel->appendTasks();
|
|
timeout=0
|
|
cid=1
|
|
|
|
*/
|
|
|
|
$executionTester = new executionTest();
|
|
$executions = $executionTester->appendTasksTest();
|
|
|
|
r(count($executions)) && p() && e('4'); // 判断执行数量
|
|
r($executions) && p('0:execution,status') && e('1,wait'); // 判断第一个执行的名称
|
|
r($executions) && p('3:rawID,progress') && e('10,57'); // 查看获取到的第三个执行的开始日期和结束日期
|
|
r($executions[1]->actions) && p('0:name,disabled') && e('startTask,1'); // 查看获取非需求变更任务的操作按钮
|
|
r($executions[3]->actions) && p('0:name,disabled') && e('confirmStoryChange,~~'); // 查看获取需求变更任务的操作按钮
|