blob: 84c0f9b5be7c5090104b6fc842cbb55911446acc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?php
/**
* Circumvent access restrictions on object internals
*
* This can be helpful for writing tests that can probe object internals,
* without having to modify the class under test to accomodate.
*
* Wrap an object with private methods as follows:
* $title = TestingAccessWrapper::newFromObject( Title::newFromDBkey( $key ) );
*
* You can access private and protected instance methods and variables:
* $formatter = $title->getTitleFormatter();
*
* TODO:
* - Provide access to static methods and properties.
* - Organize other helper classes in tests/testHelpers.inc into a directory.
*/
class TestingAccessWrapper {
public $object;
/**
* Return the same object, without access restrictions.
*/
public static function newFromObject( $object ) {
$wrapper = new TestingAccessWrapper();
$wrapper->object = $object;
return $wrapper;
}
public function __call( $method, $args ) {
$classReflection = new ReflectionClass( $this->object );
$methodReflection = $classReflection->getMethod( $method );
$methodReflection->setAccessible( true );
return $methodReflection->invokeArgs( $this->object, $args );
}
public function __set( $name, $value ) {
$classReflection = new ReflectionClass( $this->object );
$propertyReflection = $classReflection->getProperty( $name );
$propertyReflection->setAccessible( true );
$propertyReflection->setValue( $this->object, $value );
}
public function __get( $name ) {
$classReflection = new ReflectionClass( $this->object );
$propertyReflection = $classReflection->getProperty( $name );
$propertyReflection->setAccessible( true );
return $propertyReflection->getValue( $this->object );
}
}
|