mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
161 lines
No EOL
4.5 KiB
PHP
161 lines
No EOL
4.5 KiB
PHP
<?php
|
|
|
|
require_once 'Dummy/DummyMiddleware.php';
|
|
require_once 'Dummy/DummyController.php';
|
|
require_once 'Dummy/Exceptions/ExceptionHandlerException.php';
|
|
require_once 'Helpers/TestRouter.php';
|
|
|
|
class RouterRouteTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
protected $result = false;
|
|
|
|
public function testMultiParam()
|
|
{
|
|
TestRouter::get('/test-{param1}-{param2}', function ($param1, $param2) {
|
|
|
|
if ($param1 === 'param1' && $param2 === 'param2') {
|
|
$this->result = true;
|
|
}
|
|
|
|
});
|
|
|
|
TestRouter::debug('/test-param1-param2', 'get');
|
|
|
|
$this->assertTrue($this->result);
|
|
|
|
}
|
|
|
|
public function testNotFound()
|
|
{
|
|
$this->setExpectedException('\Pecee\SimpleRouter\Exceptions\NotFoundHttpException');
|
|
TestRouter::get('/non-existing-path', 'DummyController@method1');
|
|
TestRouter::debug('/test-param1-param2', 'post');
|
|
}
|
|
|
|
public function testGet()
|
|
{
|
|
TestRouter::get('/my/test/url', 'DummyController@method1');
|
|
TestRouter::debug('/my/test/url', 'get');
|
|
}
|
|
|
|
public function testPost()
|
|
{
|
|
TestRouter::post('/my/test/url', 'DummyController@method1');
|
|
TestRouter::debug('/my/test/url', 'post');
|
|
}
|
|
|
|
public function testPut()
|
|
{
|
|
TestRouter::put('/my/test/url', 'DummyController@method1');
|
|
TestRouter::debug('/my/test/url', 'put');
|
|
}
|
|
|
|
public function testDelete()
|
|
{
|
|
TestRouter::delete('/my/test/url', 'DummyController@method1');
|
|
TestRouter::debug('/my/test/url', 'delete');
|
|
}
|
|
|
|
public function testMethodNotAllowed()
|
|
{
|
|
TestRouter::get('/my/test/url', 'DummyController@method1');
|
|
|
|
try {
|
|
TestRouter::debug('/my/test/url', 'post');
|
|
} catch (\Exception $e) {
|
|
$this->assertEquals(403, $e->getCode());
|
|
}
|
|
}
|
|
|
|
public function testSimpleParam()
|
|
{
|
|
TestRouter::get('/test-{param1}', 'DummyController@param');
|
|
$response = TestRouter::debugOutput('/test-param1', 'get');
|
|
|
|
$this->assertEquals('param1', $response);
|
|
}
|
|
|
|
public function testPathParamRegex()
|
|
{
|
|
TestRouter::get('/{lang}/productscategories/{name}', 'DummyController@param', ['where' => ['lang' => '[a-z]+', 'name' => '[A-Za-z0-9\-]+']]);
|
|
$response = TestRouter::debugOutput('/it/productscategories/system', 'get');
|
|
|
|
$this->assertEquals('it, system', $response);
|
|
}
|
|
|
|
public function testDomainAllowedRoute()
|
|
{
|
|
$this->result = false;
|
|
|
|
TestRouter::group(['domain' => '{subdomain}.world.com'], function () {
|
|
TestRouter::get('/test', function ($subdomain = null) {
|
|
$this->result = ($subdomain === 'hello');
|
|
});
|
|
});
|
|
|
|
TestRouter::request()->setHost('hello.world.com');
|
|
TestRouter::debug('/test', 'get');
|
|
|
|
$this->assertTrue($this->result);
|
|
|
|
}
|
|
|
|
public function testDomainNotAllowedRoute()
|
|
{
|
|
$this->result = false;
|
|
|
|
TestRouter::group(['domain' => '{subdomain}.world.com'], function () {
|
|
TestRouter::get('/test', function ($subdomain = null) {
|
|
$this->result = ($subdomain === 'hello');
|
|
});
|
|
});
|
|
|
|
TestRouter::request()->setHost('other.world.com');
|
|
|
|
|
|
TestRouter::debug('/test', 'get');
|
|
|
|
$this->assertFalse($this->result);
|
|
|
|
}
|
|
|
|
public function testRegEx()
|
|
{
|
|
TestRouter::get('/my/{path}', 'DummyController@method1')->where(['path' => '[a-zA-Z\-]+']);
|
|
TestRouter::debug('/my/custom-path', 'get');
|
|
}
|
|
|
|
public function testParameterDefaultValue() {
|
|
|
|
$defaultVariable = null;
|
|
|
|
TestRouter::get('/my/{path?}', function($path = 'working') use(&$defaultVariable) {
|
|
$defaultVariable = $path;
|
|
});
|
|
|
|
TestRouter::debug('/my/');
|
|
|
|
$this->assertEquals('working', $defaultVariable);
|
|
|
|
}
|
|
|
|
public function testDefaultParameterRegex()
|
|
{
|
|
TestRouter::get('/my/{path}', 'DummyController@param', ['defaultParameterRegex' => '[\w\-]+']);
|
|
$output = TestRouter::debugOutput('/my/custom-regex', 'get');
|
|
|
|
$this->assertEquals('custom-regex', $output);
|
|
}
|
|
|
|
public function testDefaultParameterRegexGroup()
|
|
{
|
|
TestRouter::group(['defaultParameterRegex' => '[\w\-]+'], function() {
|
|
TestRouter::get('/my/{path}', 'DummyController@param');
|
|
});
|
|
|
|
$output = TestRouter::debugOutput('/my/custom-regex', 'get');
|
|
|
|
$this->assertEquals('custom-regex', $output);
|
|
}
|
|
|
|
} |