* Finish task#97141.

This commit is contained in:
qixinzhi
2023-07-11 08:03:14 +00:00
parent ac2737290e
commit 8d6f37c731
3 changed files with 53 additions and 17 deletions
@@ -1,7 +1,7 @@
<?php
/**
* 按产品统计的Bug总数。
* .
* Count of bug in product.
*
* 范围:prod
* 对象:bug
@@ -9,8 +9,8 @@
* 度量名称:按产品统计的Bug总数
* 单位:个
* 描述:产品中Bug的个数求和
过滤已删除的Bug
过滤已删除的产品
* 过滤已删除的Bug
* 过滤已删除的产品
* 度量库:
* 收集方式:realtime
*
@@ -23,21 +23,35 @@
*/
class count_of_bug_in_product extends baseCalc
{
public $dataset = '';
public $dataset = 'getBugs';
public $fieldList = array();
public $fieldList = array('t1.product');
public $result = array();
//public function getStatement($dao)
//{
//}
public function calculate($data)
{
$product = $data->product;
if(!isset($this->result[$product])) $this->result[$product] = 0;
//public function calculate($data)
//{
//}
$this->result[$product] += 1;
}
//public function getResult()
//{
//}
}
public function getResult($options = null)
{
if(!empty($options) && isset($options['product']))
{
$productID = $options['product'];
if(isset($this->result[$productID])) return $this->result[$productID];
return false;
}
$records = array();
foreach($this->result as $product => $value)
{
$records[] = array('product' => $product, 'value' => $value);
}
return $records;
}
}
@@ -17,6 +17,6 @@ pid=1
*/
r(count($calc->getResult())) && p('') && e('41'); // 测试激活bug按产品分组数。
r($calc->getResult(array('product' => '78'))) && p('') && e('9'); // 测试产品95激活的bug数。
r($calc->getResult(array('product' => '84'))) && p('') && e('0'); // 测试产品97激活的bug数。
r($calc->getResult(array('product' => '78'))) && p('') && e('9'); // 测试产品78激活的bug数。
r($calc->getResult(array('product' => '84'))) && p('') && e('0'); // 测试产品84激活的bug数。
r($calc->getResult(array('product' => '999'))) && p('') && e('0'); // 测试不存在的产品激活的bug数。
@@ -0,0 +1,22 @@
#!/usr/bin/env php
<?php
include dirname(__FILE__, 7) . '/test/lib/init.php';
include dirname(__FILE__, 4) . '/calc.class.php';
zdTable('bug')->gen(1000);
$metric = new metricTest();
$calc = $metric->calcMetric(__FILE__);
/**
title=count_of_bug_in_product
cid=1
pid=1
*/
r(count($calc->getResult())) && p('') && e('41'); // 测试bug按产品分组数。
r($calc->getResult(array('product' => '78'))) && p('') && e('9'); // 测试产品78的bug数。
r($calc->getResult(array('product' => '84'))) && p('') && e('6'); // 测试产品84的bug数。
r($calc->getResult(array('product' => '999'))) && p('') && e('0'); // 测试不存在的产品的bug数。