113 lines
3.5 KiB
PHP
113 lines
3.5 KiB
PHP
<?php
|
|
|
|
use System\Classes\MarkupManager;
|
|
|
|
class MarkupManagerTest extends TestCase
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
include_once base_path().'/tests/fixtures/plugins/october/tester/Plugin.php';
|
|
}
|
|
|
|
//
|
|
// Helpers
|
|
//
|
|
|
|
protected static function callProtectedMethod($object, $name, $params = [])
|
|
{
|
|
$className = get_class($object);
|
|
$class = new ReflectionClass($className);
|
|
$method = $class->getMethod($name);
|
|
$method->setAccessible(true);
|
|
return $method->invokeArgs($object, $params);
|
|
}
|
|
|
|
public static function getProtectedProperty($object, $name)
|
|
{
|
|
$className = get_class($object);
|
|
$class = new ReflectionClass($className);
|
|
$property = $class->getProperty($name);
|
|
$property->setAccessible(true);
|
|
return $property->getValue($object);
|
|
}
|
|
|
|
public static function setProtectedProperty($object, $name, $value)
|
|
{
|
|
$className = get_class($object);
|
|
$class = new ReflectionClass($className);
|
|
$property = $class->getProperty($name);
|
|
$property->setAccessible(true);
|
|
return $property->setValue($object, $value);
|
|
}
|
|
|
|
//
|
|
// Tests
|
|
//
|
|
|
|
public function testIsWildCallable()
|
|
{
|
|
$manager = MarkupManager::instance();
|
|
|
|
/*
|
|
* Negatives
|
|
*/
|
|
$callable = 'something';
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable]);
|
|
$this->assertFalse($result);
|
|
|
|
$callable = ['Form', 'open'];
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable]);
|
|
$this->assertFalse($result);
|
|
|
|
$callable = function() { return 'O, Hai!'; };
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable]);
|
|
$this->assertFalse($result);
|
|
|
|
/*
|
|
* String
|
|
*/
|
|
$callable = 'something_*';
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable]);
|
|
$this->assertTrue($result);
|
|
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable, 'delicious']);
|
|
$this->assertEquals('something_delicious', $result);
|
|
|
|
/*
|
|
* Array
|
|
*/
|
|
$callable = ['Class', 'foo_*'];
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable]);
|
|
$this->assertTrue($result);
|
|
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable, 'bar']);
|
|
$this->assertTrue(isset($result[0]));
|
|
$this->assertTrue(isset($result[1]));
|
|
$this->assertEquals('Class', $result[0]);
|
|
$this->assertEquals('foo_bar', $result[1]);
|
|
|
|
$callable = ['My*', 'method'];
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable]);
|
|
$this->assertTrue($result);
|
|
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable, 'Class']);
|
|
$this->assertTrue(isset($result[0]));
|
|
$this->assertTrue(isset($result[1]));
|
|
$this->assertEquals('MyClass', $result[0]);
|
|
$this->assertEquals('method', $result[1]);
|
|
|
|
$callable = ['My*', 'my*'];
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable]);
|
|
$this->assertTrue($result);
|
|
|
|
$result = self::callProtectedMethod($manager, 'isWildCallable', [$callable, 'Food']);
|
|
$this->assertTrue(isset($result[0]));
|
|
$this->assertTrue(isset($result[1]));
|
|
$this->assertEquals('MyFood', $result[0]);
|
|
$this->assertEquals('myFood', $result[1]);
|
|
}
|
|
|
|
} |