znt/module/system/test/model/setmaintenance.php

33 lines
1.1 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=测试 systemModel::setMaintenance();
timeout=0
cid=18746
- 步骤1有效的backup操作 @1
- 步骤2有效的restore操作 @1
- 步骤3有效的upgrade操作 @1
- 步骤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. 创建测试实例(变量名与模块名一致)
$systemTest = new systemModelTest();
// 4. 必须包含至少5个测试步骤
r($systemTest->setMaintenanceTest('backup')) && p() && e('1'); // 步骤1有效的backup操作
r($systemTest->setMaintenanceTest('restore')) && p() && e('1'); // 步骤2有效的restore操作
r($systemTest->setMaintenanceTest('upgrade')) && p() && e('1'); // 步骤3有效的upgrade操作
r($systemTest->setMaintenanceTest('')) && p() && e('0'); // 步骤4空字符串参数
r($systemTest->setMaintenanceTest('invalid')) && p() && e('0'); // 步骤5无效操作参数