110 Zeilen
3.4 KiB
PHP
110 Zeilen
3.4 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*
|
||
|
* https://www.d3data.de
|
||
|
*
|
||
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
||
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
||
|
* @link https://www.oxidmodule.com
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace D3\TestingTools\Development;
|
||
|
|
||
|
use PHPUnit\Framework\MockObject\MockObject;
|
||
|
use ReflectionClass;
|
||
|
use ReflectionException;
|
||
|
use ReflectionProperty;
|
||
|
|
||
|
trait CanAccessRestricted
|
||
|
{
|
||
|
/**
|
||
|
* Calls a private or protected object method.
|
||
|
*
|
||
|
* @param object $object
|
||
|
* @param string $methodName
|
||
|
* @param array $arguments
|
||
|
*
|
||
|
* @return mixed
|
||
|
* @throws ReflectionException
|
||
|
*/
|
||
|
public function callMethod($object, string $methodName, array $arguments = [])
|
||
|
{
|
||
|
$class = new ReflectionClass($object);
|
||
|
$method = $class->getMethod($methodName);
|
||
|
$method->setAccessible(true);
|
||
|
return $method->invokeArgs($object, $arguments);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets a private or protected property in defined class instance
|
||
|
*
|
||
|
* @param object $object
|
||
|
* @param string $valueName
|
||
|
* @param mixed $value
|
||
|
* @throws ReflectionException
|
||
|
*/
|
||
|
public function setValue($object, string $valueName, $value): void
|
||
|
{
|
||
|
$reflection = new ReflectionClass($object);
|
||
|
$property = $reflection->getProperty($valueName);
|
||
|
$property->setAccessible(true);
|
||
|
$property->setValue($object, $value);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* get a private or protected property from defined class instance
|
||
|
*
|
||
|
* @param object $object
|
||
|
* @param string $valueName
|
||
|
* @return mixed
|
||
|
* @throws ReflectionException
|
||
|
*/
|
||
|
public function getValue($object, string $valueName)
|
||
|
{
|
||
|
$reflection = new ReflectionClass($object);
|
||
|
$property = $reflection->getProperty($valueName);
|
||
|
$property->setAccessible(true);
|
||
|
return $property->getValue($object);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets a private or protected property in mocked class instance based on original class
|
||
|
* (required for e.g. final properties, which aren't contained in mock, but in original class)
|
||
|
* @param string $mockedClassName * FQNS of original class
|
||
|
* @param MockObject $object * mock object
|
||
|
* @param string $valueName * property name
|
||
|
* @param mixed $value * new property value
|
||
|
*
|
||
|
* @throws ReflectionException
|
||
|
*/
|
||
|
public function setMockedClassValue(string $mockedClassName, MockObject $object, string $valueName, $value): void
|
||
|
{
|
||
|
$property = new ReflectionProperty($mockedClassName, $valueName);
|
||
|
$property->setAccessible(true);
|
||
|
$property->setValue($object, $value);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* get a private or protected property from mocked class instance based on original class
|
||
|
* (required for e.g. final properties, which aren't contained in mock, but in original class)
|
||
|
*
|
||
|
* @param string $mockedClassName
|
||
|
* @param MockObject $object
|
||
|
* @param string $valueName
|
||
|
*
|
||
|
* @return mixed
|
||
|
* @throws ReflectionException
|
||
|
*/
|
||
|
public function getMockedClassValue(string $mockedClassName, MockObject $object, string $valueName)
|
||
|
{
|
||
|
$property = new ReflectionProperty($mockedClassName, $valueName);
|
||
|
$property->setAccessible(true);
|
||
|
return $property->getValue($object);
|
||
|
}
|
||
|
}
|