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

33 lines
1.3 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::checkTmpFile();
timeout=0
cid=19309
- 步骤1正常情况文件存在且maxImport设置 @1
- 步骤2边界值没有session文件名 @0
- 步骤3异常情况临时文件不存在 @0
- 步骤4边界值没有maxImport @0
- 步骤5正常情况默认测试场景 @1
*/
// 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个测试步骤
r($transferTest->checkTmpFileTest('file_exists')) && p() && e('1'); // 步骤1正常情况文件存在且maxImport设置
r($transferTest->checkTmpFileTest('no_session')) && p() && e('0'); // 步骤2边界值没有session文件名
r($transferTest->checkTmpFileTest('no_file')) && p() && e('0'); // 步骤3异常情况临时文件不存在
r($transferTest->checkTmpFileTest('no_maxImport')) && p() && e('0'); // 步骤4边界值没有maxImport
r($transferTest->checkTmpFileTest()) && p() && e('1'); // 步骤5正常情况默认测试场景