+ Add product::getBugStats unit test.

This commit is contained in:
tianshujie
2023-11-27 10:05:06 +08:00
parent 68d7a6b7da
commit cd5079794e
2 changed files with 41 additions and 0 deletions
+16
View File
@@ -1241,4 +1241,20 @@ class productTest
return $productStories;
}
/**
* 获取产品下bug的统计数据。
* Get bug statistic data.
*
* @param array $productIdList
* @access public
* @return array
*/
public function getBugStatsTest(array $productIdList): array
{
$productBugs = $this->objectModel->getBugStats($productIdList);
if(dao::isError()) return dao::getError();
return $productBugs;
}
}
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/env php
<?php
/**
title=productTao->getBugStats();
timeout=0
cid=1
*/
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/product.class.php';
zdTable('bug')->gen(50);
zdTable('user')->gen(5);
su('admin');
$productIdList[] = array();
$productIdList[] = range(1, 10);
$productIdList[] = range(10, 20);
$productTester = new productTest();
r($productTester->getBugStatsTest($productIdList[0])) && p('1:unresolved,fixed,closed,total') && e('3,0,0,3'); // 测试系统中所有产品下的Bug统计信息
r($productTester->getBugStatsTest($productIdList[1])) && p('2:unresolved,fixed,closed,total') && e('3,0,0,3'); // 测试系统中产品1-10下的Bug统计信息
r($productTester->getBugStatsTest($productIdList[2])) && p('11:unresolved,fixed,closed,total') && e('3,0,0,3'); // 测试系统中产品11-20下的Bug统计信息