znt/module/transfer/test/model/format.php

34 lines
1.4 KiB
PHP
Executable file
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env php
<?php
/**
title=测试 transferModel::format();
timeout=0
cid=19313
- 步骤1异常输入空模块参数 @Module is empty
- 步骤2异常输入空模块参数验证 @Module is empty
- 步骤3异常输入无效模块参数 @Module is empty
- 步骤4异常输入空字符串模块 @Module is empty
- 步骤5边界值空过滤条件和空模块 @Module is empty
*/
// 1. 导入依赖(路径固定,不可修改)
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/model.class.php';
// 2. 用户登录(选择合适角色)
su('admin');
// 3. 创建测试实例(变量名与模块名一致)
$transferTest = new transferModelTest();
// 4. 🔴 强制要求必须包含至少5个测试步骤
// 注format方法依赖复杂的文件系统和Excel处理此测试仅验证参数验证逻辑
r($transferTest->formatTest('', '')) && p() && e('Module is empty'); // 步骤1异常输入空模块参数
r($transferTest->formatTest('', 'filter')) && p() && e('Module is empty'); // 步骤2异常输入空模块参数验证
r($transferTest->formatTest('', '')) && p() && e('Module is empty'); // 步骤3异常输入无效模块参数
r($transferTest->formatTest('')) && p() && e('Module is empty'); // 步骤4异常输入空字符串模块
r($transferTest->formatTest('', '')) && p() && e('Module is empty'); // 步骤5边界值空过滤条件和空模块