+ Add unit test of bugTaoappendProductConditionForBug.

This commit is contained in:
liumengyi
2023-08-22 14:55:31 +08:00
parent f8fc97f08a
commit a3bde1f545
2 changed files with 35 additions and 2 deletions
+2 -2
View File
@@ -339,10 +339,10 @@ class bugTao extends bugModel
* @param string $bugQuery
* @param array $productIdList
* @param string $branch
* @access private
* @access protected
* @return string
*/
private function appendProductConditionForBug(string $bugQuery, array $productIdList, string $branch): string
protected function appendProductConditionForBug(string $bugQuery, array $productIdList, string $branch): string
{
if(strpos($bugQuery, '`product`') !== false)
{
@@ -0,0 +1,33 @@
#!/usr/bin/env php
<?php
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/bug.class.php';
zdTable('product')->gen(5);
/**
title=bugTao->appendProductConditionForBug();
timeout=0
cid=1
*/
$bugQuery = array('1=1', "`product` != '0'");
$productIdList = array(1, 2);
$branch = array('all', '0');
global $tester;
$bug = $tester->loadModel('bug');
r($bug->appendProductConditionForBug($bugQuery[0], array($productIdList[0]), $branch[0])) && p() && e("1=1 AND `product` IN (1)"); // 处理 查询语句 1=1 产品 1 分支 all 的查询语句
r($bug->appendProductConditionForBug($bugQuery[0], array($productIdList[1]), $branch[0])) && p() && e("1=1 AND `product` IN (2)"); // 处理 查询语句 1=1 产品 2 分支 all 的查询语句
r($bug->appendProductConditionForBug($bugQuery[0], array($productIdList[0]), $branch[1])) && p() && e("1=1 AND `product` IN (1) AND `branch` in('0','0')"); // 处理 查询语句 1=1 产品 1 分支 0 的查询语句
r($bug->appendProductConditionForBug($bugQuery[0], array($productIdList[1]), $branch[1])) && p() && e("1=1 AND `product` IN (2) AND `branch` in('0','0')"); // 处理 查询语句 1=1 产品 2 分支 0 的查询语句
r($bug->appendProductConditionForBug($bugQuery[1], array($productIdList[0]), $branch[0])) && p() && e("`product` != '0' AND `product` IN (1,2,3,4,5)"); // 处理 查询语句 `product` != '0' 产品 1 分支 all 的查询语句
r($bug->appendProductConditionForBug($bugQuery[1], array($productIdList[1]), $branch[0])) && p() && e("`product` != '0' AND `product` IN (1,2,3,4,5)"); // 处理 查询语句 `product` != '0' 产品 2 分支 all 的查询语句
r($bug->appendProductConditionForBug($bugQuery[1], array($productIdList[0]), $branch[1])) && p() && e("`product` != '0' AND `product` IN (1,2,3,4,5) AND `branch` in('0','0')"); // 处理 查询语句 `product` != '0' 产品 1 分支 0 的查询语句
r($bug->appendProductConditionForBug($bugQuery[1], array($productIdList[1]), $branch[1])) && p() && e("`product` != '0' AND `product` IN (1,2,3,4,5) AND `branch` in('0','0')"); // 处理 查询语句 `product` != '0' 产品 2 分支 0 的查询语句
unset($_SESSION['bugQuery']);
unset($_SESSION['storyBugQuery']);