Files
EasySoft-ZenTaoPMS/module/execution/test/model/updateproducts.php
T

46 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,项目2,迭代1,迭代2,迭代3');
$execution->type->range('project{2},sprint,waterfall,kanban');
$execution->status->range('doing{3},closed,doing');
$execution->parent->range('0,0,1,1,2');
$execution->grade->range('2{2},1{3}');
$execution->path->range('1,2,`1,3`,`1,4`,`2,5`')->prefix(',')->postfix(',');
$execution->begin->range('20230102 000000:0')->type('timestamp')->format('YY/MM/DD');
$execution->end->range('20230212 000000:0')->type('timestamp')->format('YY/MM/DD');
$execution->gen(5);
$product = zenData('product');
$product->id->range('1-3');
$product->name->range('1-3')->prefix('产品');
$product->code->range('1-3')->prefix('product');
$product->type->range('normal');
$product->status->range('normal');
$product->gen(3);
zenData('user')->gen(5);
su('admin');
/**
title=测试executionModel->updateProductsTest();
timeout=0
cid=1
*/
$executionIdList = array(3, 4, 5);
$productIdList = array(1, 2, 3);
$branchIdList = array(array(1), array(2), array(3));
$products = array('products' => $productIdList, 'branch' => $branchIdList);
$execution = new executionTest();
r($execution->updateProductsTest($executionIdList[0], $products)) && p('0:product') && e('1'); // 测试修改敏捷执行关联产品
r($execution->updateProductsTest($executionIdList[1], $products)) && p('1:product') && e('2'); // 测试修改瀑布执行关联产品
r($execution->updateProductsTest($executionIdList[2], $products)) && p('2:product') && e('3'); // 测试修改看板执行关联产品