* Add case of execution model.

This commit is contained in:
田淑杰
2023-01-09 10:45:12 +08:00
parent 92a516e85a
commit 9bed99cbb3
+13 -3
View File
@@ -2,9 +2,20 @@
<?php
include dirname(dirname(dirname(__FILE__))) . '/lib/init.php';
include dirname(dirname(dirname(__FILE__))) . '/class/execution.class.php';
$db->switchDB();
zdTable('user')->gen(5);
su('admin');
$execution = zdTable('project');
$execution->id->range('1-5');
$execution->name->range('项目集1,项目1,迭代1,阶段1,看板1');
$execution->type->range('program,project,sprint,stage,kanban');
$execution->parent->range('0,1,2{3}');
$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);
/**
title=测试executionModel->batchUpdate();
@@ -16,7 +27,7 @@ pid=1
*/
$executionID = '101';
$executionID = '3';
$name = array($executionID => '批量修改执行一');
$code = array($executionID => '批量修改执行一code');
$emptycode = array($executionID => '');
@@ -31,4 +42,3 @@ $noName = array('statuses'=> $statuses, 'codes' => $code, 'PMs' => $pms, 'lifet
$execution = new executionTest();
r($execution->batchUpdateObject($normal, $executionID)) && p('0:field,old,new') && e('name,迭代1,批量修改执行一'); // 测试批量修改任务
r($execution->batchUpdateObject($noName, $executionID)) && p('name:0') && e('『执行名称』不能为空。'); // 测试name为空
$db->restoreDB();