znt/module/store/test/model/applatestversion.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=测试 storeModel::appLatestVersion();
timeout=0
cid=18449
- 步骤1获取有新版本的应用最新版本 @0
- 步骤2获取已是最新版本应用的最新版本 @0
- 步骤3使用无效appID获取最新版本 @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->appLatestVersionTest(1, '1.0.0')) && p() && e('0'); // 步骤1获取有新版本的应用最新版本
r($storeTest->appLatestVersionTest(1, '999.999.999')) && p() && e('0'); // 步骤2获取已是最新版本应用的最新版本
r($storeTest->appLatestVersionTest(999999, '1.0.0')) && p() && e('0'); // 步骤3使用无效appID获取最新版本
r($storeTest->appLatestVersionTest(1, '')) && p() && e('0'); // 步骤4使用空字符串作为当前版本
r($storeTest->appLatestVersionTest(1, '2.0.0-beta.1')) && p() && e('0'); // 步骤5使用预发布版本号获取最新版本