+ [misc] Add unit tests for tutorialModel::getCharters() 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:27 +08:00
co-authored by Claude
parent 919baeb718
commit 9873986414
2 changed files with 47 additions and 0 deletions
@@ -1292,4 +1292,18 @@ class tutorialTest
return $result;
}
/**
* Test getCharters method.
*
* @access public
* @return array
*/
public function getChartersTest(): array
{
$result = $this->objectModel->getCharters();
if(dao::isError()) return dao::getError();
return $result;
}
}
+33
View File
@@ -0,0 +1,33 @@
#!/usr/bin/env php
<?php
/**
title=测试 tutorialModel::getCharters();
timeout=0
cid=0
- 步骤1:正常调用返回数组长度为1 @1
- 步骤2:验证charter对象ID为1第1条的id属性 @1
- 步骤3:验证charter对象名称第1条的name属性 @Test charter
- 步骤4:验证charter对象状态第1条的status属性 @wait
- 步骤5:验证charter对象级别第1条的level属性 @3
*/
// 1. 导入依赖(路径固定,不可修改)
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/tutorial.unittest.class.php';
// 2. 用户登录(选择合适角色)
su('admin');
// 3. 创建测试实例(变量名与模块名一致)
$tutorialTest = new tutorialTest();
// 4. 🔴 强制要求:必须包含至少5个测试步骤
r(count($tutorialTest->getChartersTest())) && p() && e('1'); // 步骤1:正常调用返回数组长度为1
r($tutorialTest->getChartersTest()) && p('1:id') && e('1'); // 步骤2:验证charter对象ID为1
r($tutorialTest->getChartersTest()) && p('1:name') && e('Test charter'); // 步骤3:验证charter对象名称
r($tutorialTest->getChartersTest()) && p('1:status') && e('wait'); // 步骤4:验证charter对象状态
r($tutorialTest->getChartersTest()) && p('1:level') && e('3'); // 步骤5:验证charter对象级别