49 lines
2.0 KiB
PHP
Executable File
49 lines
2.0 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
|
include dirname(__FILE__, 2) . '/story.class.php';
|
|
su('admin');
|
|
|
|
$story = zdTable('story');
|
|
$story->product->range('1');
|
|
$story->version->range('1');
|
|
$story->gen(20);
|
|
|
|
$storyspec = zdTable('storyspec');
|
|
$storyspec->version->range('1');
|
|
$storyspec->gen(12);
|
|
|
|
zdTable('product')->gen(1);
|
|
|
|
/**
|
|
|
|
title=测试 storyModel->batchClose();
|
|
cid=1
|
|
pid=1
|
|
|
|
*/
|
|
|
|
$story = new storyTest();
|
|
$storyIdList = array(2, 4, 6, 8, 10, 12);
|
|
$closedReasons = array(2 => 'done', 4 => 'willnotdo', 6 => 'putoff', 8 => 'duplicate', 10 => 'cancel', 12 => 'bydesign');
|
|
$duplicateList = array(2 => 0, 4 => 0, 6 => 0, 8 => 20, 10 => 0, 12 => 0);
|
|
|
|
$storiesToClose = array();
|
|
foreach($storyIdList as $storyID)
|
|
{
|
|
$storyToClose = new stdclass();
|
|
$storyToClose->status = 'closed';
|
|
$storyToClose->closedReason = $closedReasons[$storyID];
|
|
$storyToClose->duplicateStory = $duplicateList[$storyID];
|
|
|
|
$storiesToClose[$storyID] = $storyToClose;
|
|
}
|
|
|
|
$stories = $story->batchCloseTest($storiesToClose);
|
|
r($stories) && p('2:status,stage,closedReason,duplicateStory') && e('closed,closed,done,0'); // 批量关闭需求,查看需求1被关闭后的字段
|
|
r($stories) && p('4:status,stage,closedReason,duplicateStory') && e('closed,closed,willnotdo,0'); // 批量关闭需求,查看需求2被关闭后的字段
|
|
r($stories) && p('6:status,stage,closedReason,duplicateStory') && e('closed,closed,putoff,0'); // 批量关闭需求,查看需求3被关闭后的字段
|
|
r($stories) && p('8:status,stage,closedReason,duplicateStory') && e('closed,closed,duplicate,20'); // 批量关闭需求,查看需求4被关闭后的字段
|
|
r($stories) && p('10:status,stage,closedReason,duplicateStory') && e('closed,closed,cancel,0'); // 批量关闭需求,查看需求5被关闭后的字段
|
|
r($stories) && p('12:status,stage,closedReason,duplicateStory') && e('closed,closed,bydesign,0'); // 批量关闭需求,查看需求6被关闭后的字段
|