33 lines
1.4 KiB
PHP
Executable file
33 lines
1.4 KiB
PHP
Executable file
#!/usr/bin/env php
|
||
<?php
|
||
|
||
/**
|
||
|
||
title=测试 storeModel::appVersionList();
|
||
timeout=0
|
||
cid=18450
|
||
|
||
- 步骤1:正常情况获取版本列表(API无响应返回空数组) @0
|
||
- 步骤2:测试不同页面大小(返回计数0) @0
|
||
- 步骤3:无效应用ID(返回空数组) @0
|
||
- 步骤4:边界值页面参数(返回空数组) @0
|
||
- 步骤5:完整参数组合(返回空数组) @0
|
||
|
||
*/
|
||
|
||
// 1. 导入依赖(路径固定,不可修改)
|
||
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
||
include dirname(__FILE__, 2) . '/lib/model.class.php';
|
||
|
||
// 2. 用户登录(选择合适角色)
|
||
su('admin');
|
||
|
||
// 3. 创建测试实例(变量名与模块名一致)
|
||
$storeTest = new storeModelTest();
|
||
|
||
// 4. 🔴 强制要求:必须包含至少5个测试步骤
|
||
r($storeTest->appVersionListTest(1, '', '', 1, 3)) && p() && e('0'); // 步骤1:正常情况获取版本列表(API无响应返回空数组)
|
||
r($storeTest->appVersionListTest(1, '', '', 1, 5)) && p() && e('0'); // 步骤2:测试不同页面大小(返回计数0)
|
||
r($storeTest->appVersionListTest(999999, '', '', 1, 3)) && p() && e('0'); // 步骤3:无效应用ID(返回空数组)
|
||
r($storeTest->appVersionListTest(1, '', '', 0, 3)) && p() && e('0'); // 步骤4:边界值页面参数(返回空数组)
|
||
r($storeTest->appVersionListTest(1, 'testapp', 'stable', 1, 3)) && p() && e('0'); // 步骤5:完整参数组合(返回空数组)
|