2008-03-19 21:38:58 +01:00
|
|
|
<?php
|
2008-06-15 15:33:53 +02:00
|
|
|
/**
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-06-15 15:33:53 +02:00
|
|
|
* @subpackage tests
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2008-10-15 19:09:43 +02:00
|
|
|
* @todo tests for addStaticVars()
|
|
|
|
* @todo tests for setting statics which are not defined on the object as built-in PHP statics
|
2011-04-15 11:35:30 +02:00
|
|
|
* @todo tests for setting statics through extensions (#2387)
|
2008-06-15 15:33:53 +02:00
|
|
|
*/
|
2008-03-19 21:38:58 +01:00
|
|
|
class ObjectTest extends SapphireTest {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function setUp() {
|
2009-10-22 02:30:21 +02:00
|
|
|
parent::setUp();
|
2012-06-11 12:40:47 +02:00
|
|
|
Injector::inst()->unregisterAllObjects();
|
2009-10-22 02:30:21 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testHasmethodBehaviour() {
|
2011-03-23 04:32:24 +01:00
|
|
|
$obj = new ObjectTest_ExtendTest();
|
2008-03-19 21:38:58 +01:00
|
|
|
|
2011-03-23 04:32:24 +01:00
|
|
|
$this->assertTrue($obj->hasMethod('extendableMethod'), "Extension method found in original spelling");
|
|
|
|
$this->assertTrue($obj->hasMethod('ExTendableMethod'), "Extension method found case-insensitive");
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
$objs = array();
|
|
|
|
$objs[] = new ObjectTest_T2();
|
|
|
|
$objs[] = new ObjectTest_T2();
|
|
|
|
$objs[] = new ObjectTest_T2();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
// All these methods should exist and return true
|
|
|
|
$trueMethods = array('testMethod','otherMethod','someMethod','t1cMethod','normalMethod');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
foreach($objs as $i => $obj) {
|
|
|
|
foreach($trueMethods as $method) {
|
|
|
|
$methodU = strtoupper($method);
|
|
|
|
$methodL = strtoupper($method);
|
2009-03-14 01:16:32 +01:00
|
|
|
$this->assertTrue($obj->hasMethod($method), "Test that obj#$i has method $method ($obj->class)");
|
2008-03-19 21:39:07 +01:00
|
|
|
$this->assertTrue($obj->hasMethod($methodU), "Test that obj#$i has method $methodU");
|
|
|
|
$this->assertTrue($obj->hasMethod($methodL), "Test that obj#$i has method $methodL");
|
|
|
|
|
|
|
|
$this->assertTrue($obj->$method(), "Test that obj#$i can call method $method");
|
|
|
|
$this->assertTrue($obj->$methodU(), "Test that obj#$i can call method $methodU");
|
|
|
|
$this->assertTrue($obj->$methodL(), "Test that obj#$i can call method $methodL");
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
$this->assertTrue($obj->hasMethod('Wrapping'), "Test that obj#$i has method Wrapping");
|
|
|
|
$this->assertTrue($obj->hasMethod('WRAPPING'), "Test that obj#$i has method WRAPPING");
|
|
|
|
$this->assertTrue($obj->hasMethod('wrapping'), "Test that obj#$i has method wrapping");
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
$this->assertEquals("Wrapping", $obj->Wrapping(), "Test that obj#$i can call method Wrapping");
|
|
|
|
$this->assertEquals("Wrapping", $obj->WRAPPING(), "Test that obj#$i can call method WRAPPIGN");
|
|
|
|
$this->assertEquals("Wrapping", $obj->wrapping(), "Test that obj#$i can call method wrapping");
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testSingletonCreation() {
|
2008-10-03 17:57:32 +02:00
|
|
|
$myObject = singleton('ObjectTest_MyObject');
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertEquals($myObject->class, 'ObjectTest_MyObject',
|
|
|
|
'singletons are creating a correct class instance');
|
|
|
|
$this->assertEquals(get_class($myObject), 'ObjectTest_MyObject',
|
|
|
|
'singletons are creating a correct class instance');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-03 17:57:32 +02:00
|
|
|
$mySubObject = singleton('ObjectTest_MySubObject');
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertEquals($mySubObject->class, 'ObjectTest_MySubObject',
|
|
|
|
'singletons are creating a correct subclass instance');
|
|
|
|
$this->assertEquals(get_class($mySubObject), 'ObjectTest_MySubObject',
|
|
|
|
'singletons are creating a correct subclass instance');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-03 17:57:32 +02:00
|
|
|
$myFirstObject = singleton('ObjectTest_MyObject');
|
|
|
|
$mySecondObject = singleton('ObjectTest_MyObject');
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertTrue($myFirstObject === $mySecondObject,
|
|
|
|
'singletons are using the same object on subsequent calls');
|
2008-10-03 17:57:32 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testStaticGetterMethod() {
|
2008-10-15 19:05:46 +02:00
|
|
|
$obj = singleton('ObjectTest_MyObject');
|
|
|
|
$this->assertEquals(
|
2013-03-21 19:48:54 +01:00
|
|
|
'MyObject',
|
2008-10-15 19:05:46 +02:00
|
|
|
$obj->stat('mystaticProperty'),
|
|
|
|
'Uninherited statics through stat() on a singleton behave the same as built-in PHP statics'
|
|
|
|
);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testStaticInheritanceGetters() {
|
2008-10-15 19:05:46 +02:00
|
|
|
$obj = singleton('ObjectTest_MyObject');
|
|
|
|
$subObj = singleton('ObjectTest_MyObject');
|
|
|
|
$this->assertEquals(
|
|
|
|
$subObj->stat('mystaticProperty'),
|
|
|
|
'MyObject',
|
|
|
|
'Statics defined on a parent class are available through stat() on a subclass'
|
|
|
|
);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testStaticSettingOnSingletons() {
|
2008-10-15 19:05:46 +02:00
|
|
|
$singleton1 = singleton('ObjectTest_MyObject');
|
|
|
|
$singleton2 = singleton('ObjectTest_MyObject');
|
|
|
|
$singleton1->set_stat('mystaticProperty', 'changed');
|
|
|
|
$this->assertEquals(
|
|
|
|
$singleton2->stat('mystaticProperty'),
|
|
|
|
'changed',
|
|
|
|
'Statics setting is populated throughout singletons without explicitly clearing cache'
|
|
|
|
);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testStaticSettingOnInstances() {
|
2008-10-15 19:05:46 +02:00
|
|
|
$instance1 = new ObjectTest_MyObject();
|
|
|
|
$instance2 = new ObjectTest_MyObject();
|
|
|
|
$instance1->set_stat('mystaticProperty', 'changed');
|
|
|
|
$this->assertEquals(
|
|
|
|
$instance2->stat('mystaticProperty'),
|
|
|
|
'changed',
|
|
|
|
'Statics setting through set_stat() is populated throughout instances without explicitly clearing cache'
|
|
|
|
);
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
/**
|
|
|
|
* Tests that {@link Object::create()} correctly passes all arguments to the new object
|
|
|
|
*/
|
|
|
|
public function testCreateWithArgs() {
|
2012-04-04 16:59:30 +02:00
|
|
|
$createdObj = ObjectTest_CreateTest::create('arg1', 'arg2', array(), null, 'arg5');
|
2009-03-14 01:16:32 +01:00
|
|
|
$this->assertEquals($createdObj->constructArguments, array('arg1', 'arg2', array(), null, 'arg5'));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
$strongObj = Object::strong_create('ObjectTest_CreateTest', 'arg1', 'arg2', array(), null, 'arg5');
|
|
|
|
$this->assertEquals($strongObj->constructArguments, array('arg1', 'arg2', array(), null, 'arg5'));
|
|
|
|
}
|
2012-03-27 06:57:42 +02:00
|
|
|
|
|
|
|
public function testCreateLateStaticBinding() {
|
|
|
|
$createdObj = ObjectTest_CreateTest::create('arg1', 'arg2', array(), null, 'arg5');
|
|
|
|
$this->assertEquals($createdObj->constructArguments, array('arg1', 'arg2', array(), null, 'arg5'));
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
/**
|
|
|
|
* Tests that {@link Object::useCustomClass()} correnctly replaces normal and strong objects
|
|
|
|
*/
|
|
|
|
public function testUseCustomClass() {
|
2012-04-04 16:59:30 +02:00
|
|
|
$obj1 = ObjectTest_CreateTest::create();
|
2009-08-11 10:50:32 +02:00
|
|
|
$this->assertTrue($obj1 instanceof ObjectTest_CreateTest);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
Object::useCustomClass('ObjectTest_CreateTest', 'ObjectTest_CreateTest2');
|
2012-04-04 16:59:30 +02:00
|
|
|
$obj2 = ObjectTest_CreateTest::create();
|
2009-08-11 10:50:32 +02:00
|
|
|
$this->assertTrue($obj2 instanceof ObjectTest_CreateTest2);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
$obj2_2 = Object::strong_create('ObjectTest_CreateTest');
|
2009-08-11 10:50:32 +02:00
|
|
|
$this->assertTrue($obj2_2 instanceof ObjectTest_CreateTest);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
Object::useCustomClass('ObjectTest_CreateTest', 'ObjectTest_CreateTest3', true);
|
2012-04-04 16:59:30 +02:00
|
|
|
$obj3 = ObjectTest_CreateTest::create();
|
2009-08-11 10:50:32 +02:00
|
|
|
$this->assertTrue($obj3 instanceof ObjectTest_CreateTest3);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
$obj3_2 = Object::strong_create('ObjectTest_CreateTest');
|
2009-08-11 10:50:32 +02:00
|
|
|
$this->assertTrue($obj3_2 instanceof ObjectTest_CreateTest3);
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
public function testGetExtensions() {
|
|
|
|
$this->assertEquals(
|
|
|
|
Object::get_extensions('ObjectTest_ExtensionTest'),
|
|
|
|
array(
|
|
|
|
'oBjEcTTEST_ExtendTest1',
|
|
|
|
"ObjectTest_ExtendTest2",
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
Object::get_extensions('ObjectTest_ExtensionTest', true),
|
|
|
|
array(
|
|
|
|
'oBjEcTTEST_ExtendTest1',
|
|
|
|
"ObjectTest_ExtendTest2('FOO', 'BAR')",
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$inst = new ObjectTest_ExtensionTest();
|
|
|
|
$extensions = $inst->getExtensionInstances();
|
|
|
|
$this->assertEquals(count($extensions), 2);
|
2012-05-09 12:43:22 +02:00
|
|
|
$this->assertInstanceOf(
|
2009-04-01 00:27:53 +02:00
|
|
|
'ObjectTest_ExtendTest1',
|
|
|
|
$extensions['ObjectTest_ExtendTest1']
|
|
|
|
);
|
2012-05-09 12:43:22 +02:00
|
|
|
$this->assertInstanceOf(
|
2009-04-01 00:27:53 +02:00
|
|
|
'ObjectTest_ExtendTest2',
|
|
|
|
$extensions['ObjectTest_ExtendTest2']
|
|
|
|
);
|
2012-05-09 12:43:22 +02:00
|
|
|
$this->assertInstanceOf(
|
2009-04-01 00:27:53 +02:00
|
|
|
'ObjectTest_ExtendTest1',
|
|
|
|
$inst->getExtensionInstance('ObjectTest_ExtendTest1')
|
|
|
|
);
|
2012-05-09 12:43:22 +02:00
|
|
|
$this->assertInstanceOf(
|
2009-04-01 00:27:53 +02:00
|
|
|
'ObjectTest_ExtendTest2',
|
|
|
|
$inst->getExtensionInstance('ObjectTest_ExtendTest2')
|
|
|
|
);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
/**
|
|
|
|
* Tests {@link Object::has_extension()}, {@link Object::add_extension()}
|
|
|
|
*/
|
|
|
|
public function testHasAndAddExtension() {
|
2009-04-01 00:27:53 +02:00
|
|
|
// ObjectTest_ExtendTest1 is built in via $extensions
|
|
|
|
$this->assertTrue(
|
2012-10-09 23:59:23 +02:00
|
|
|
ObjectTest_ExtensionTest::has_extension('OBJECTTEST_ExtendTest1'),
|
2009-04-01 00:27:53 +02:00
|
|
|
"Extensions are detected when set on Object::\$extensions on has_extension() without case-sensitivity"
|
|
|
|
);
|
|
|
|
$this->assertTrue(
|
2012-10-09 23:59:23 +02:00
|
|
|
ObjectTest_ExtensionTest::has_extension('ObjectTest_ExtendTest1'),
|
2009-04-01 00:27:53 +02:00
|
|
|
"Extensions are detected when set on Object::\$extensions on has_extension() without case-sensitivity"
|
|
|
|
);
|
|
|
|
$this->assertTrue(
|
|
|
|
singleton('ObjectTest_ExtensionTest')->hasExtension('ObjectTest_ExtendTest1'),
|
2012-09-26 23:34:00 +02:00
|
|
|
"Extensions are detected when set on Object::\$extensions on instance hasExtension() without"
|
|
|
|
. " case-sensitivity"
|
2009-04-01 00:27:53 +02:00
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
// ObjectTest_ExtendTest2 is built in via $extensions (with parameters)
|
|
|
|
$this->assertTrue(
|
2012-10-09 23:59:23 +02:00
|
|
|
ObjectTest_ExtensionTest::has_extension('ObjectTest_ExtendTest2'),
|
2012-09-26 23:34:00 +02:00
|
|
|
"Extensions are detected with static has_extension() when set on Object::\$extensions with"
|
|
|
|
. " additional parameters"
|
2009-04-01 00:27:53 +02:00
|
|
|
);
|
|
|
|
$this->assertTrue(
|
|
|
|
singleton('ObjectTest_ExtensionTest')->hasExtension('ObjectTest_ExtendTest2'),
|
2012-09-26 23:34:00 +02:00
|
|
|
"Extensions are detected with instance hasExtension() when set on Object::\$extensions with"
|
|
|
|
. " additional parameters"
|
2009-04-01 00:27:53 +02:00
|
|
|
);
|
|
|
|
$this->assertFalse(
|
2012-10-09 23:59:23 +02:00
|
|
|
ObjectTest_ExtensionTest::has_extension('ObjectTest_ExtendTest3'),
|
2012-09-26 23:34:00 +02:00
|
|
|
"Other extensions available in the system are not present unless explicitly added to this object"
|
|
|
|
. " when checking through has_extension()"
|
2009-04-01 00:27:53 +02:00
|
|
|
);
|
|
|
|
$this->assertFalse(
|
|
|
|
singleton('ObjectTest_ExtensionTest')->hasExtension('ObjectTest_ExtendTest3'),
|
2012-09-26 23:34:00 +02:00
|
|
|
"Other extensions available in the system are not present unless explicitly added to this object"
|
|
|
|
. " when checking through instance hasExtension()"
|
2009-04-01 00:27:53 +02:00
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
// ObjectTest_ExtendTest3 is added manually
|
2012-10-09 05:55:37 +02:00
|
|
|
ObjectTest_ExtensionTest::add_extension('ObjectTest_ExtendTest3("Param")');
|
2009-04-01 00:27:53 +02:00
|
|
|
$this->assertTrue(
|
2012-10-09 23:59:23 +02:00
|
|
|
ObjectTest_ExtensionTest::has_extension('ObjectTest_ExtendTest3'),
|
2009-04-01 00:27:53 +02:00
|
|
|
"Extensions are detected with static has_extension() when added through add_extension()"
|
|
|
|
);
|
|
|
|
// a singleton() wouldn't work as its already initialized
|
|
|
|
$objectTest_ExtensionTest = new ObjectTest_ExtensionTest();
|
|
|
|
$this->assertTrue(
|
|
|
|
$objectTest_ExtensionTest->hasExtension('ObjectTest_ExtendTest3'),
|
|
|
|
"Extensions are detected with instance hasExtension() when added through add_extension()"
|
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
// @todo At the moment, this does NOT remove the extension due to parameterized naming,
|
|
|
|
// meaning the extension will remain added in further test cases
|
2012-10-09 23:30:40 +02:00
|
|
|
ObjectTest_ExtensionTest::remove_extension('ObjectTest_ExtendTest3');
|
2009-04-01 00:27:53 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
public function testRemoveExtension() {
|
|
|
|
// manually add ObjectTest_ExtendTest2
|
2012-10-09 05:55:37 +02:00
|
|
|
ObjectTest_ExtensionRemoveTest::add_extension('ObjectTest_ExtendTest2');
|
2009-04-01 00:27:53 +02:00
|
|
|
$this->assertTrue(
|
2012-10-09 23:59:23 +02:00
|
|
|
ObjectTest_ExtensionRemoveTest::has_extension('ObjectTest_ExtendTest2'),
|
2009-04-01 00:27:53 +02:00
|
|
|
"Extension added through \$add_extension() are added correctly"
|
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-10-09 23:30:40 +02:00
|
|
|
ObjectTest_ExtensionRemoveTest::remove_extension('ObjectTest_ExtendTest2');
|
2009-04-01 00:27:53 +02:00
|
|
|
$this->assertFalse(
|
2012-10-09 23:59:23 +02:00
|
|
|
ObjectTest_ExtensionRemoveTest::has_extension('ObjectTest_ExtendTest2'),
|
2009-04-01 00:27:53 +02:00
|
|
|
"Extension added through \$add_extension() are detected as removed in has_extension()"
|
|
|
|
);
|
|
|
|
$this->assertFalse(
|
|
|
|
singleton('ObjectTest_ExtensionRemoveTest')->hasExtension('ObjectTest_ExtendTest2'),
|
|
|
|
"Extensions added through \$add_extension() are detected as removed in instances through hasExtension()"
|
|
|
|
);
|
|
|
|
|
|
|
|
// ObjectTest_ExtendTest1 is already present in $extensions
|
2012-10-09 23:30:40 +02:00
|
|
|
ObjectTest_ExtensionRemoveTest::remove_extension('ObjectTest_ExtendTest1');
|
2013-04-06 08:01:18 +02:00
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
$this->assertFalse(
|
2012-10-09 23:59:23 +02:00
|
|
|
ObjectTest_ExtensionRemoveTest::has_extension('ObjectTest_ExtendTest1'),
|
2009-04-01 00:27:53 +02:00
|
|
|
"Extension added through \$extensions are detected as removed in has_extension()"
|
|
|
|
);
|
2013-04-06 08:01:18 +02:00
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
$objectTest_ExtensionRemoveTest = new ObjectTest_ExtensionRemoveTest();
|
|
|
|
$this->assertFalse(
|
|
|
|
$objectTest_ExtensionRemoveTest->hasExtension('ObjectTest_ExtendTest1'),
|
|
|
|
"Extensions added through \$extensions are detected as removed in instances through hasExtension()"
|
|
|
|
);
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-04-06 08:01:18 +02:00
|
|
|
public function testRemoveExtensionWithParameters() {
|
|
|
|
ObjectTest_ExtensionRemoveTest::add_extension('ObjectTest_ExtendTest2("MyParam")');
|
|
|
|
|
|
|
|
$this->assertTrue(
|
|
|
|
ObjectTest_ExtensionRemoveTest::has_extension('ObjectTest_ExtendTest2'),
|
|
|
|
"Extension added through \$add_extension() are added correctly"
|
|
|
|
);
|
|
|
|
|
|
|
|
ObjectTest_ExtensionRemoveTest::remove_extension('ObjectTest_ExtendTest2');
|
|
|
|
$this->assertFalse(
|
|
|
|
Object::has_extension('ObjectTest_ExtensionRemoveTest', 'ObjectTest_ExtendTest2'),
|
|
|
|
"Extension added through \$add_extension() are detected as removed in has_extension()"
|
|
|
|
);
|
|
|
|
|
|
|
|
$objectTest_ExtensionRemoveTest = new ObjectTest_ExtensionRemoveTest();
|
|
|
|
$this->assertFalse(
|
|
|
|
$objectTest_ExtensionRemoveTest->hasExtension('ObjectTest_ExtendTest2'),
|
|
|
|
"Extensions added through \$extensions are detected as removed in instances through hasExtension()"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
public function testParentClass() {
|
2012-04-04 16:59:30 +02:00
|
|
|
$this->assertEquals(ObjectTest_MyObject::create()->parentClass(), 'Object');
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
public function testIsA() {
|
2012-04-04 16:59:30 +02:00
|
|
|
$this->assertTrue(ObjectTest_MyObject::create() instanceof Object);
|
|
|
|
$this->assertTrue(ObjectTest_MyObject::create() instanceof ObjectTest_MyObject);
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
/**
|
2010-05-25 05:55:30 +02:00
|
|
|
* Tests {@link Object::hasExtension() and Object::getExtensionInstance()}
|
2009-03-14 01:16:32 +01:00
|
|
|
*/
|
|
|
|
public function testExtInstance() {
|
|
|
|
$obj = new ObjectTest_ExtensionTest2();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
$this->assertTrue($obj->hasExtension('ObjectTest_Extension'));
|
2010-05-25 05:55:30 +02:00
|
|
|
$this->assertTrue($obj->getExtensionInstance('ObjectTest_Extension') instanceof ObjectTest_Extension);
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
public function testCacheToFile() {
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->markTestIncomplete();
|
2014-08-15 08:53:05 +02:00
|
|
|
/*
|
2009-03-16 07:49:05 +01:00
|
|
|
// This doesn't run properly on our build slave.
|
2009-03-14 01:16:32 +01:00
|
|
|
$obj = new ObjectTest_CacheTest();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-15 02:09:59 +01:00
|
|
|
$obj->clearCache('cacheMethod');
|
|
|
|
$obj->clearCache('cacheMethod', null, array(true));
|
|
|
|
$obj->clearCache('incNumber');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-15 01:48:33 +01:00
|
|
|
$this->assertEquals('noarg', $obj->cacheToFile('cacheMethod', -1));
|
|
|
|
$this->assertEquals('hasarg', $obj->cacheToFile('cacheMethod', -1, null, array(true)));
|
|
|
|
$this->assertEquals('hasarg', $obj->cacheToFile('cacheMethod', 3600, null, array(true)));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-15 01:48:33 +01:00
|
|
|
// -1 lifetime will ensure that the cache isn't read - number incremented
|
|
|
|
$this->assertEquals(1, $obj->cacheToFile('incNumber', -1));
|
|
|
|
// -1 lifetime will ensure that the cache isn't read - number incremented
|
|
|
|
$this->assertEquals(2, $obj->cacheToFile('incNumber', -1));
|
|
|
|
// Number shouldn't be incremented now because we're using the cached version
|
2009-03-15 02:09:59 +01:00
|
|
|
$this->assertEquals(2, $obj->cacheToFile('incNumber'));
|
2009-03-16 07:49:05 +01:00
|
|
|
*/
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
public function testExtend() {
|
|
|
|
$object = new ObjectTest_ExtendTest();
|
|
|
|
$argument = 'test';
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
$this->assertEquals($object->extend('extendableMethod'), array('ExtendTest2()'));
|
|
|
|
$this->assertEquals($object->extend('extendableMethod', $argument), array('ExtendTest2(modified)'));
|
|
|
|
$this->assertEquals($argument, 'modified');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
$this->assertEquals($object->invokeWithExtensions('extendableMethod'), array('ExtendTest()', 'ExtendTest2()'));
|
|
|
|
$this->assertEquals (
|
|
|
|
$object->invokeWithExtensions('extendableMethod', 'test'),
|
|
|
|
array('ExtendTest(test)', 'ExtendTest2(modified)')
|
2008-10-15 19:05:46 +02:00
|
|
|
);
|
|
|
|
}
|
2010-10-04 06:46:41 +02:00
|
|
|
|
|
|
|
public function testParseClassSpec() {
|
2010-10-04 06:47:08 +02:00
|
|
|
// Simple case
|
2010-10-04 06:46:41 +02:00
|
|
|
$this->assertEquals(
|
|
|
|
array('Versioned',array('Stage', 'Live')),
|
|
|
|
Object::parse_class_spec("Versioned('Stage','Live')")
|
|
|
|
);
|
2010-10-04 06:47:08 +02:00
|
|
|
// String with commas
|
2010-10-04 06:46:41 +02:00
|
|
|
$this->assertEquals(
|
|
|
|
array('Versioned',array('Stage,Live', 'Stage')),
|
|
|
|
Object::parse_class_spec("Versioned('Stage,Live','Stage')")
|
|
|
|
);
|
2010-10-04 06:47:08 +02:00
|
|
|
// String with quotes
|
2010-10-04 06:46:41 +02:00
|
|
|
$this->assertEquals(
|
|
|
|
array('Versioned',array('Stage\'Stage,Live\'Live', 'Live')),
|
|
|
|
Object::parse_class_spec("Versioned('Stage\'Stage,Live\'Live','Live')")
|
|
|
|
);
|
2013-03-22 04:34:17 +01:00
|
|
|
|
|
|
|
// True, false and null values
|
|
|
|
$this->assertEquals(
|
|
|
|
array('ClassName', array('string', true, array('string', false))),
|
|
|
|
Object::parse_class_spec('ClassName("string", true, array("string", false))')
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
array('ClassName', array(true, false, null)),
|
|
|
|
Object::parse_class_spec('ClassName(true, false, null)')
|
|
|
|
);
|
|
|
|
|
2010-10-04 06:47:08 +02:00
|
|
|
// Array
|
|
|
|
$this->assertEquals(
|
|
|
|
array('Enum',array(array('Accepted', 'Pending', 'Declined', 'Unsubmitted'), 'Unsubmitted')),
|
|
|
|
Object::parse_class_spec("Enum(array('Accepted', 'Pending', 'Declined', 'Unsubmitted'), 'Unsubmitted')")
|
|
|
|
);
|
|
|
|
// Nested array
|
|
|
|
$this->assertEquals(
|
2012-09-26 23:34:00 +02:00
|
|
|
array('Enum',array(array('Accepted', 'Pending', 'Declined', array('UnsubmittedA','UnsubmittedB')),
|
|
|
|
'Unsubmitted')),
|
|
|
|
Object::parse_class_spec(
|
|
|
|
"Enum(array('Accepted', 'Pending', 'Declined', array('UnsubmittedA','UnsubmittedB')), 'Unsubmitted')")
|
2010-10-04 06:47:08 +02:00
|
|
|
);
|
2013-05-05 02:19:31 +02:00
|
|
|
// 5.4 Shorthand Array
|
|
|
|
$this->assertEquals(
|
|
|
|
array('Enum',array(array('Accepted', 'Pending', 'Declined', 'Unsubmitted'), 'Unsubmitted')),
|
|
|
|
Object::parse_class_spec("Enum(['Accepted', 'Pending', 'Declined', 'Unsubmitted'), 'Unsubmitted']")
|
|
|
|
);
|
|
|
|
// 5.4 Nested shorthand array
|
|
|
|
$this->assertEquals(
|
|
|
|
array('Enum',array(array('Accepted', 'Pending', 'Declined', array('UnsubmittedA','UnsubmittedB')),
|
|
|
|
'Unsubmitted')),
|
|
|
|
Object::parse_class_spec(
|
|
|
|
"Enum(['Accepted', 'Pending', 'Declined', ['UnsubmittedA','UnsubmittedB']], 'Unsubmitted')")
|
|
|
|
);
|
2012-12-18 03:00:45 +01:00
|
|
|
// Namespaced class
|
|
|
|
$this->assertEquals(
|
|
|
|
array('Test\MyClass', array()),
|
|
|
|
Object::parse_class_spec('Test\MyClass')
|
|
|
|
);
|
|
|
|
// Fully qualified namespaced class
|
|
|
|
$this->assertEquals(
|
|
|
|
array('\Test\MyClass', array()),
|
|
|
|
Object::parse_class_spec('\Test\MyClass')
|
|
|
|
);
|
2010-10-04 06:46:41 +02:00
|
|
|
}
|
2008-03-19 21:39:07 +01:00
|
|
|
}
|
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
/**#@+
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
class ObjectTest_T1A extends Object {
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testMethod() {
|
2008-03-19 21:39:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
2012-09-19 12:07:39 +02:00
|
|
|
public function otherMethod() {
|
2008-03-19 21:39:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectTest_T1B extends Object {
|
2012-09-19 12:07:39 +02:00
|
|
|
public function someMethod() {
|
2008-03-19 21:39:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectTest_T1C extends Object {
|
2012-09-19 12:07:39 +02:00
|
|
|
public function t1cMethod() {
|
2008-03-19 21:39:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectTest_T2 extends Object {
|
|
|
|
protected $failover;
|
|
|
|
protected $failoverArr = array();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function __construct() {
|
2008-03-19 21:39:07 +01:00
|
|
|
$this->failover = new ObjectTest_T1A();
|
|
|
|
$this->failoverArr[0] = new ObjectTest_T1B();
|
|
|
|
$this->failoverArr[1] = new ObjectTest_T1C();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function defineMethods() {
|
2008-03-19 21:39:07 +01:00
|
|
|
$this->addWrapperMethod('Wrapping', 'wrappedMethod');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
$this->addMethodsFrom('failover');
|
|
|
|
$this->addMethodsFrom('failoverArr',0);
|
|
|
|
$this->addMethodsFrom('failoverArr',1);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
$this->createMethod('testCreateMethod', 'return "created";');
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function wrappedMethod($val) {
|
2014-08-15 08:53:05 +02:00
|
|
|
return $val;
|
2008-03-19 21:39:07 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function normalMethod() {
|
2008-03-19 21:39:07 +01:00
|
|
|
return true;
|
2008-03-19 21:38:58 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-03-19 21:39:07 +01:00
|
|
|
}
|
2008-10-03 17:57:32 +02:00
|
|
|
|
|
|
|
class ObjectTest_MyObject extends Object {
|
|
|
|
public $title = 'my object';
|
2013-03-21 19:48:54 +01:00
|
|
|
/** @config */
|
|
|
|
private static $mystaticProperty = "MyObject";
|
2008-10-15 19:05:46 +02:00
|
|
|
static $mystaticArray = array('one');
|
2008-10-03 17:57:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectTest_MySubObject extends ObjectTest_MyObject {
|
|
|
|
public $title = 'my subobject';
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $mystaticProperty = "MySubObject";
|
2008-10-15 19:05:46 +02:00
|
|
|
static $mystaticSubProperty = "MySubObject";
|
|
|
|
static $mystaticArray = array('two');
|
2008-10-03 17:57:32 +02:00
|
|
|
}
|
2009-03-14 01:16:32 +01:00
|
|
|
|
|
|
|
class ObjectTest_CreateTest extends Object {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
public $constructArguments;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
public function __construct() {
|
|
|
|
$this->constructArguments = func_get_args();
|
|
|
|
parent::__construct();
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectTest_CreateTest2 extends Object {}
|
|
|
|
class ObjectTest_CreateTest3 extends Object {}
|
|
|
|
|
|
|
|
class ObjectTest_ExtensionTest extends Object {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $extensions = array (
|
2009-04-01 00:27:53 +02:00
|
|
|
'oBjEcTTEST_ExtendTest1',
|
|
|
|
"ObjectTest_ExtendTest2('FOO', 'BAR')",
|
2009-03-14 01:16:32 +01:00
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectTest_ExtensionTest2 extends Object {
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $extensions = array('ObjectTest_Extension');
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
class ObjectTest_ExtensionRemoveTest extends Object {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $extensions = array (
|
2009-04-01 00:27:53 +02:00
|
|
|
'ObjectTest_ExtendTest1',
|
|
|
|
);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
}
|
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
class ObjectTest_Extension extends Extension {}
|
|
|
|
|
|
|
|
class ObjectTest_CacheTest extends Object {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
public $count = 0;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
public function cacheMethod($arg1 = null) {
|
|
|
|
return ($arg1) ? 'hasarg' : 'noarg';
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
public function incNumber() {
|
|
|
|
$this->count++;
|
|
|
|
return $this->count;
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectTest_ExtendTest extends Object {
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $extensions = array('ObjectTest_ExtendTest1', 'ObjectTest_ExtendTest2');
|
2009-03-14 01:16:32 +01:00
|
|
|
public function extendableMethod($argument = null) { return "ExtendTest($argument)"; }
|
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectTest_ExtendTest1 extends Extension {
|
|
|
|
public function extendableMethod(&$argument = null) {
|
|
|
|
if($argument) $argument = 'modified';
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectTest_ExtendTest2 extends Extension {
|
|
|
|
public function extendableMethod($argument = null) { return "ExtendTest2($argument)"; }
|
|
|
|
}
|
|
|
|
|
2009-04-01 00:27:53 +02:00
|
|
|
class ObjectTest_ExtendTest3 extends Extension {
|
|
|
|
public function extendableMethod($argument = null) { return "ExtendTest3($argument)"; }
|
|
|
|
}
|
|
|
|
|
2009-03-14 01:16:32 +01:00
|
|
|
/**#@-*/
|