0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
test
/
core
/
Tracker
/
[
Home
]
File: OptionsTest.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: OptionsTest.php 53803 2015-02-06 00:42:50Z jyhem $ class Tracker_OptionsTest extends PHPUnit_Framework_TestCase { function testBuildLegacyStringBuilder() { $options = Tracker_Options::fromSerialized( json_encode(array('a' => 3, 'b' => 2, 'c' => 1)), array( 'params' => array( 'a' => array( 'legacy_index' => 2, ), 'b' => array( 'legacy_index' => 1, ), 'c' => array( 'legacy_index' => 0, ), 'd' => array( // No legacy ), ), ) ); $this->assertEquals(array('1', '2', '3'), $options->buildOptionsArray()); } function testSeparatorOnEmptyData() { $options = Tracker_Options::fromString( 'a,,b', array( 'params' => array( 'a' => array( 'legacy_index' => 0, ), 'b' => array( 'legacy_index' => 1, 'separator' => '|', ), 'c' => array( 'legacy_index' => 2, ), ), ) ); $this->assertEquals(array(), $options->getParam('b')); } }