39 lines
1.5 KiB
PHP
Executable file
39 lines
1.5 KiB
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/**
|
|
|
|
title=测试 customModel->hasProcessData();
|
|
timeout=0
|
|
cid=15914
|
|
|
|
- 测试开源版中无项目活动数据 @0
|
|
- 测试ipd版中无项目活动数据 @0
|
|
- 测试旗舰版中无项目活动数据 @0
|
|
- 测试开源版中有项目活动数据 @0
|
|
- 测试ipd版中有项目活动数据 @5
|
|
- 测试旗舰版中有项目活动数据 @5
|
|
|
|
*/
|
|
|
|
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
|
include dirname(__FILE__, 2) . '/lib/model.class.php';
|
|
|
|
zenData('programactivity')->gen(0);
|
|
zenData('user')->gen(5);
|
|
su('admin');
|
|
|
|
$editionList = array('open', 'ipd', 'max');
|
|
|
|
$customTester = new customModelTest();
|
|
r($customTester->hasProcessDataTest($editionList[0])) && p() && e('0'); // 测试开源版中无项目活动数据
|
|
r($customTester->hasProcessDataTest($editionList[1])) && p() && e('0'); // 测试ipd版中无项目活动数据
|
|
r($customTester->hasProcessDataTest($editionList[2])) && p() && e('0'); // 测试旗舰版中无项目活动数据
|
|
|
|
$programactivityTable = zenData('programactivity');
|
|
$programactivityTable->execution->range('1-5');
|
|
$programactivityTable->deleted->range('0');
|
|
$programactivityTable->gen(5);
|
|
r($customTester->hasProcessDataTest($editionList[0])) && p() && e('0'); // 测试开源版中有项目活动数据
|
|
r($customTester->hasProcessDataTest($editionList[1])) && p() && e('5'); // 测试ipd版中有项目活动数据
|
|
r($customTester->hasProcessDataTest($editionList[2])) && p() && e('5'); // 测试旗舰版中有项目活动数据
|