Merge "Doc: Document problem sorting inserted data"
[lhc/web/wiklou.git] / tests / phpunit / includes / libs / ObjectFactoryTest.php
1 <?php
2 /**
3 * @section LICENSE
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 * http://www.gnu.org/copyleft/gpl.html
18 *
19 * @file
20 */
21
22 class ObjectFactoryTest extends PHPUnit_Framework_TestCase {
23
24 /**
25 * @covers ObjectFactory::getObjectFromSpec
26 */
27 public function testClosureExpansionDisabled() {
28 $obj = ObjectFactory::getObjectFromSpec( array(
29 'class' => 'ObjectFactoryTest_Fixture',
30 'args' => array( function (){ return 'unwrapped'; }, ),
31 'closure_expansion' => false,
32 ) );
33 $this->assertInstanceOf( 'Closure', $obj->args[0] );
34 $this->assertSame( 'unwrapped', $obj->args[0]() );
35 }
36
37 /**
38 * @covers ObjectFactory::getObjectFromSpec
39 */
40 public function testClosureExpansionEnabled() {
41 $obj = ObjectFactory::getObjectFromSpec( array(
42 'class' => 'ObjectFactoryTest_Fixture',
43 'args' => array( function (){ return 'unwrapped'; }, ),
44 'closure_expansion' => true,
45 ) );
46 $this->assertInternalType( 'string', $obj->args[0] );
47 $this->assertSame( 'unwrapped', $obj->args[0] );
48
49 $obj = ObjectFactory::getObjectFromSpec( array(
50 'class' => 'ObjectFactoryTest_Fixture',
51 'args' => array( function (){ return 'unwrapped'; }, ),
52 ) );
53 $this->assertInternalType( 'string', $obj->args[0] );
54 $this->assertSame( 'unwrapped', $obj->args[0] );
55 }
56 }
57
58 class ObjectFactoryTest_Fixture {
59 public $args;
60 public function __construct( /*...*/ ) { $this->args = func_get_args(); }
61 }