znt/module/convert/test/model/getjiradata.php

38 lines
1.8 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=测试 convertModel::getJiraData();
timeout=0
cid=15775
- 步骤1使用file方法获取user模块数据文件不存在返回空数组显示为0 @0
- 步骤2使用file方法获取issue模块数据文件不存在返回空数组显示为0 @0
- 步骤3使用无效方法获取数据调用file方法返回空数组显示为0 @0
- 步骤4获取不存在的模块数据返回空数组显示为0 @0
- 步骤5使用限制参数获取数据返回空数组显示为0 @0
*/
// 1. 导入依赖(路径固定,不可修改)
include dirname(__FILE__, 5) . '/test/lib/init.php';
include dirname(__FILE__, 2) . '/lib/model.class.php';
// 2. 用户登录(选择合适角色)
su('admin');
// 3. 设置测试环境模拟session数据
global $app;
$app->session->jiraDB = 'test_jira_db';
$app->session->jiraMethod = 'file';
// 4. 创建测试实例(变量名与模块名一致)
$convertTest = new convertModelTest();
// 5. 🔴 强制要求必须包含至少5个测试步骤
r($convertTest->getJiraDataTest('file', 'user', 0, 0)) && p() && e('0'); // 步骤1使用file方法获取user模块数据文件不存在返回空数组显示为0
r($convertTest->getJiraDataTest('file', 'issue', 0, 0)) && p() && e('0'); // 步骤2使用file方法获取issue模块数据文件不存在返回空数组显示为0
r($convertTest->getJiraDataTest('invalid', 'user', 0, 0)) && p() && e('0'); // 步骤3使用无效方法获取数据调用file方法返回空数组显示为0
r($convertTest->getJiraDataTest('file', 'nonexistent', 0, 0)) && p() && e('0'); // 步骤4获取不存在的模块数据返回空数组显示为0
r($convertTest->getJiraDataTest('file', 'user', 0, 5)) && p() && e('0'); // 步骤5使用限制参数获取数据返回空数组显示为0