+ [misc] Add unit tests for pivotModel::execDrillSQL() method

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
liugang
2025-09-15 15:06:20 +08:00
co-authored by Claude
parent 22e074cfd9
commit 22ffd1ec0e
2 changed files with 53 additions and 0 deletions
@@ -1127,4 +1127,21 @@ class pivotTest
return $result;
}
/**
* Test execDrillSQL method.
*
* @param string $object
* @param string $drillSQL
* @param int $limit
* @access public
* @return array
*/
public function execDrillSQLTest($object, $drillSQL, $limit = 10)
{
$result = $this->objectModel->execDrillSQL($object, $drillSQL, $limit);
if(dao::isError()) return dao::getError();
return $result;
}
}
+36
View File
@@ -0,0 +1,36 @@
#!/usr/bin/env php
<?php
/**
title=测试 pivotModel::execDrillSQL();
timeout=0
cid=0
- 步骤1:正常情况属性status @success
- 步骤2:限制数量属性status @success
- 步骤3:空SQL属性status @fail
- 步骤4:无效SQL属性status @fail
- 步骤5:边界值limit为0属性status @success
*/
// 1. 导入依赖(路径固定,不可修改)
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/pivot.unittest.class.php';
// 2. 模拟最基本的数据,不使用zenData避免输出干扰
// 测试execDrillSQL方法不需要实际的数据库数据,它主要测试SQL执行逻辑
// 3. 用户登录(选择合适角色)
su('admin');
// 4. 创建测试实例(变量名与模块名一致)
$pivotTest = new pivotTest();
// 5. 🔴 强制要求:必须包含至少5个测试步骤
r($pivotTest->execDrillSQLTest('user', 'SELECT 1 as test', 10)) && p('status') && e('success'); // 步骤1:正常情况
r($pivotTest->execDrillSQLTest('user', 'SELECT * FROM zt_user WHERE id > 0 LIMIT 2', 5)) && p('status') && e('success'); // 步骤2:限制数量
r($pivotTest->execDrillSQLTest('user', '', 10)) && p('status') && e('fail'); // 步骤3:空SQL
r($pivotTest->execDrillSQLTest('user', 'INVALID SQL SYNTAX', 10)) && p('status') && e('fail'); // 步骤4:无效SQL
r($pivotTest->execDrillSQLTest('user', 'SELECT 2 as test', 0)) && p('status') && e('success'); // 步骤5:边界值limit为0