2015-02-08 16:29:39 +00:00
|
|
|
<?php
|
2015-08-29 15:43:13 +00:00
|
|
|
/**
|
2016-05-07 17:22:09 +00:00
|
|
|
* FuzeWorks.
|
2015-08-29 15:43:13 +00:00
|
|
|
*
|
|
|
|
* The FuzeWorks MVC PHP FrameWork
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 TechFuze
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @author TechFuze
|
2016-05-07 17:22:09 +00:00
|
|
|
* @copyright Copyright (c) 2013 - 2016, Techfuze. (http://techfuze.net)
|
2015-08-29 15:43:13 +00:00
|
|
|
* @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/)
|
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 GPLv3 License
|
2016-05-07 17:22:09 +00:00
|
|
|
*
|
2015-08-29 15:43:13 +00:00
|
|
|
* @link http://fuzeworks.techfuze.net
|
|
|
|
* @since Version 0.0.1
|
2016-05-07 17:22:09 +00:00
|
|
|
*
|
2015-08-29 15:43:13 +00:00
|
|
|
* @version Version 0.0.1
|
|
|
|
*/
|
2015-10-11 18:14:49 +00:00
|
|
|
use \FuzeWorks\Events;
|
|
|
|
use \FuzeWorks\Router;
|
|
|
|
use \FuzeWorks\EventPriority;
|
2015-04-30 19:19:07 +00:00
|
|
|
|
2015-08-29 15:43:13 +00:00
|
|
|
/**
|
2016-05-07 17:22:09 +00:00
|
|
|
* Class RouterRouteEventTest.
|
2015-08-29 15:43:13 +00:00
|
|
|
*/
|
2016-05-07 17:22:09 +00:00
|
|
|
class routerRouteEventTest extends CoreTestAbstract
|
|
|
|
{
|
2015-10-11 18:14:49 +00:00
|
|
|
/**
|
2016-05-07 17:22:09 +00:00
|
|
|
* Check if the event is fired when it should be.
|
2015-10-11 18:14:49 +00:00
|
|
|
*/
|
2016-05-07 17:22:09 +00:00
|
|
|
public function test_basic()
|
|
|
|
{
|
2015-10-11 18:14:49 +00:00
|
|
|
$mock = $this->getMock('MockEvent', array('mockMethod'));
|
|
|
|
$mock->expects($this->once())->method('mockMethod');
|
2015-02-08 16:29:39 +00:00
|
|
|
|
2015-10-11 18:14:49 +00:00
|
|
|
Events::addListener(array($mock, 'mockMethod'), 'routerRouteEvent', EventPriority::NORMAL);
|
|
|
|
Router::setPath('a/b/c');
|
|
|
|
Router::route(false);
|
2015-02-08 16:29:39 +00:00
|
|
|
}
|
|
|
|
|
2015-10-11 18:14:49 +00:00
|
|
|
/**
|
2016-05-07 17:22:09 +00:00
|
|
|
* Cancel events.
|
2015-10-11 18:14:49 +00:00
|
|
|
*/
|
2016-05-07 17:22:09 +00:00
|
|
|
public function test_cancel()
|
|
|
|
{
|
2015-10-11 18:14:49 +00:00
|
|
|
Router::setPath('x/y/z');
|
|
|
|
|
|
|
|
Events::addListener(array($this, 'listener_cancel'), 'routerRouteEvent', EventPriority::NORMAL);
|
|
|
|
Router::route(false);
|
|
|
|
|
|
|
|
$this->assertNotEquals('x', Router::getMatches()['controller']);
|
|
|
|
$this->assertNotEquals('y', Router::getMatches()['function']);
|
|
|
|
$this->assertNotEquals('z', Router::getMatches()['parameters']);
|
2015-02-08 16:29:39 +00:00
|
|
|
}
|
|
|
|
|
2015-10-11 18:14:49 +00:00
|
|
|
// Cancel all calls
|
2016-05-07 17:22:09 +00:00
|
|
|
public function listener_cancel($event)
|
|
|
|
{
|
2015-10-11 18:14:49 +00:00
|
|
|
$event->setCancelled(true);
|
|
|
|
}
|
2016-05-07 17:22:09 +00:00
|
|
|
}
|