40 lines
1.8 KiB
PHP
40 lines
1.8 KiB
PHP
#!/usr/bin/env php
|
||
<?php
|
||
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
||
include dirname(__FILE__, 2) . '/lib/model.class.php';
|
||
|
||
/**
|
||
|
||
title=测试 screenModel->prepareSunburstDataset();
|
||
timeout=0
|
||
cid=18274
|
||
|
||
- 测试data属性为空的情况下,生成的默认值是否正确;第styles条的hueRotate属性 @0
|
||
- 测试传入data属性的情况下,生成的值是否正确;第styles条的hueRotate属性 @0
|
||
- 测试传入data属性,styles有值的情况下,是否被修改。属性styles @1
|
||
- 测试status有值的情况下,是否被修改。属性status @1
|
||
- 测试request有值的情况下,是否被修改。属性request @1
|
||
|
||
*/
|
||
|
||
$screen = new screenModelTest();
|
||
$component1 = new stdclass();
|
||
$component1->type = 'sunburst';
|
||
$component1->option = new stdclass();
|
||
$component1->option->series = new stdclass();
|
||
|
||
$component2 = clone $component1;
|
||
$component2->styles = 1;
|
||
|
||
$component3 = clone $component1;
|
||
$component3->status = 1;
|
||
|
||
$component4 = clone $component1;
|
||
$component4->request = 1;
|
||
|
||
r($screen->prepareSunburstDataset($component1, array())) && p('styles:hueRotate') && e(0); // 测试data属性为空的情况下,生成的默认值是否正确;
|
||
r($screen->prepareSunburstDataset($component1, array(0,1,2,3,4,5))) && p('styles:hueRotate') && e(0); // 测试传入data属性的情况下,生成的值是否正确;
|
||
r($screen->prepareSunburstDataset($component2, array(0,1,2,3,4,5))) && p('styles') && e(1); // 测试传入data属性,styles有值的情况下,是否被修改。
|
||
r($screen->prepareSunburstDataset($component3, array())) && p('status') && e(1); // 测试status有值的情况下,是否被修改。
|
||
r($screen->prepareSunburstDataset($component4, array())) && p('request') && e(1); // 测试request有值的情况下,是否被修改。
|