+ [misc] Add unit tests for tutorialModel::getStoryPairs() 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:25 +08:00
co-authored by Claude
parent 56c6de0083
commit 69b33f9d63
2 changed files with 49 additions and 0 deletions
@@ -269,4 +269,19 @@ class tutorialTest
return $result;
}
/**
* 测试获取新手模式研发需求键值对。
* Test get tutorial story pairs.
*
* @access public
* @return array
*/
public function getStoryPairsTest(): array
{
$result = $this->objectModel->getStoryPairs();
if(dao::isError()) return dao::getError();
return $result;
}
}
+34
View File
@@ -0,0 +1,34 @@
#!/usr/bin/env php
<?php
/**
title=测试 tutorialModel::getStoryPairs();
timeout=0
cid=0
- 步骤1:验证返回数组包含所有需求键值对 @4
- 步骤2:验证Epic需求标题正确属性1 @Test epic
- 步骤3:验证用户需求标题正确属性2 @Test requirement
- 步骤4:验证研发需求标题正确属性3 @Test active story
- 步骤5:验证评审中需求标题正确属性4 @Test reviewing story
*/
// 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个测试步骤
$storyPairs = $tutorialTest->getStoryPairsTest();
r(count($storyPairs)) && p() && e('4'); // 步骤1:验证返回数组包含所有需求键值对
r($storyPairs) && p('1') && e('Test epic'); // 步骤2:验证Epic需求标题正确
r($storyPairs) && p('2') && e('Test requirement'); // 步骤3:验证用户需求标题正确
r($storyPairs) && p('3') && e('Test active story'); // 步骤4:验证研发需求标题正确
r($storyPairs) && p('4') && e('Test reviewing story'); // 步骤5:验证评审中需求标题正确