You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
flight-core/tests/DispatcherTest.php

184 lines
5.0 KiB

12 years ago
<?php
declare(strict_types=1);
12 years ago
namespace tests;
use Exception;
use flight\core\Dispatcher;
use tests\classes\Hello;
use PHPUnit\Framework\TestCase;
class DispatcherTest extends TestCase
12 years ago
{
private Dispatcher $dispatcher;
12 years ago
protected function setUp(): void
{
$this->dispatcher = new Dispatcher();
12 years ago
}
// Map a closure
public function testClosureMapping()
{
$this->dispatcher->set('map1', function () {
12 years ago
return 'hello';
});
$result = $this->dispatcher->run('map1');
self::assertEquals('hello', $result);
12 years ago
}
// Map a function
public function testFunctionMapping()
{
$this->dispatcher->set('map2', function () {
12 years ago
return 'hello';
});
$result = $this->dispatcher->run('map2');
self::assertEquals('hello', $result);
12 years ago
}
public function testHasEvent()
{
$this->dispatcher->set('map-event', function () {
return 'hello';
});
$result = $this->dispatcher->has('map-event');
$this->assertTrue($result);
}
public function testClearAllRegisteredEvents()
{
$this->dispatcher->set('map-event', function () {
return 'hello';
});
$this->dispatcher->set('map-event-2', function () {
return 'there';
});
$this->dispatcher->clear();
$result = $this->dispatcher->has('map-event');
$this->assertFalse($result);
$result = $this->dispatcher->has('map-event-2');
$this->assertFalse($result);
}
public function testClearDeclaredRegisteredEvent()
{
$this->dispatcher->set('map-event', function () {
return 'hello';
});
$this->dispatcher->set('map-event-2', function () {
return 'there';
});
$this->dispatcher->clear('map-event');
$result = $this->dispatcher->has('map-event');
$this->assertFalse($result);
$result = $this->dispatcher->has('map-event-2');
$this->assertTrue($result);
}
// Map a static function
public function testStaticFunctionMapping()
{
$this->dispatcher->set('map2', 'tests\classes\Hello::sayBye');
$result = $this->dispatcher->run('map2');
self::assertEquals('goodbye', $result);
}
12 years ago
// Map a class method
public function testClassMethodMapping()
{
12 years ago
$h = new Hello();
$this->dispatcher->set('map3', [$h, 'sayHi']);
12 years ago
$result = $this->dispatcher->run('map3');
self::assertEquals('hello', $result);
12 years ago
}
// Map a static class method
public function testStaticClassMethodMapping()
{
$this->dispatcher->set('map4', ['\tests\classes\Hello', 'sayBye']);
12 years ago
$result = $this->dispatcher->run('map4');
self::assertEquals('goodbye', $result);
12 years ago
}
// Run before and after filters
public function testBeforeAndAfter()
{
$this->dispatcher->set('hello', function ($name) {
12 years ago
return "Hello, $name!";
});
$this->dispatcher->hook('hello', 'before', function (&$params) {
12 years ago
// Manipulate the parameter
$params[0] = 'Fred';
});
$this->dispatcher->hook('hello', 'after', function (&$params, &$output) {
12 years ago
// Manipulate the output
$output .= ' Have a nice day!';
12 years ago
});
$result = $this->dispatcher->run('hello', ['Bob']);
12 years ago
self::assertEquals('Hello, Fred! Have a nice day!', $result);
12 years ago
}
// Test an invalid callback
public function testInvalidCallback()
{
$this->expectException(Exception::class);
$this->dispatcher->execute(['NonExistentClass', 'nonExistentMethod']);
}
public function testCallFunction4Params()
{
$closure = function ($param1, $params2, $params3, $param4) {
return 'hello' . $param1 . $params2 . $params3 . $param4;
};
$params = ['param1', 'param2', 'param3', 'param4'];
$result = $this->dispatcher->callFunction($closure, $params);
$this->assertEquals('helloparam1param2param3param4', $result);
}
public function testCallFunction5Params()
{
$closure = function ($param1, $params2, $params3, $param4, $param5) {
return 'hello' . $param1 . $params2 . $params3 . $param4 . $param5;
};
$params = ['param1', 'param2', 'param3', 'param4', 'param5'];
$result = $this->dispatcher->callFunction($closure, $params);
$this->assertEquals('helloparam1param2param3param4param5', $result);
}
public function testCallFunction6Params()
{
$closure = function ($param1, $params2, $params3, $param4, $param5, $param6) {
return 'hello' . $param1 . $params2 . $params3 . $param4 . $param5 . $param6;
};
$params = ['param1', 'param2', 'param3', 'param4', 'param5', 'param6'];
$result = $this->dispatcher->callFunction($closure, $params);
$this->assertEquals('helloparam1param2param3param4param5param6', $result);
}
12 years ago
}