Exemplo n.º 1
0
 public function testIssues2270()
 {
     Phalcon\DI::reset();
     $di = new \Phalcon\DI();
     $dispatcher = new \Phalcon\Mvc\Dispatcher();
     $dispatcher->setDI($di);
     $dispatcher->setDefaultNamespace('A\\B\\C');
     $dispatcher->setControllerName('Test');
     $dispatcher->setActionName('index');
     $this->assertEquals('A\\B\\C\\TestController', $dispatcher->getHandlerClass());
 }
 protected function _getDispatcher()
 {
     $di = new Phalcon\DI();
     $di->set('response', function () {
         return new \Phalcon\Http\Response();
     });
     $dispatcher = new Phalcon\Mvc\Dispatcher();
     $dispatcher->setDI($di);
     return $dispatcher;
 }
Exemplo n.º 3
0
 public function testDispatcher()
 {
     Phalcon\DI::reset();
     $di = new Phalcon\DI();
     $di->set('response', new \Phalcon\Http\Response());
     $dispatcher = new Phalcon\Mvc\Dispatcher();
     $dispatcher->setDI($di);
     $this->assertInstanceOf('Phalcon\\DI', $dispatcher->getDI());
     $di->set('dispatcher', $dispatcher);
     $dispatcher->setControllerName('index');
     $dispatcher->setActionName('index');
     $dispatcher->setParams(array());
     try {
         $dispatcher->dispatch();
         $this->assertTrue(FALSE, 'oh, Why?');
     } catch (Phalcon\Exception $e) {
         $this->assertEquals($e->getMessage(), "IndexController handler class cannot be loaded");
         $this->assertInstanceOf('Phalcon\\Mvc\\Dispatcher\\Exception', $e);
     }
     $dispatcher->setControllerName('essai');
     $dispatcher->setActionName('index');
     $dispatcher->setParams(array());
     try {
         $dispatcher->dispatch();
         $this->assertTrue(FALSE, 'oh, Why?');
     } catch (Phalcon\Exception $e) {
         $this->assertEquals($e->getMessage(), "EssaiController handler class cannot be loaded");
         $this->assertInstanceOf('Phalcon\\Mvc\\Dispatcher\\Exception', $e);
     }
     $dispatcher->setControllerName('test0');
     $dispatcher->setActionName('index');
     $dispatcher->setParams(array());
     try {
         $dispatcher->dispatch();
         $this->assertTrue(FALSE, 'oh, Why?');
     } catch (Phalcon\Exception $e) {
         $this->assertEquals($e->getMessage(), "Test0Controller handler class cannot be loaded");
         $this->assertInstanceOf('Phalcon\\Mvc\\Dispatcher\\Exception', $e);
     }
     $dispatcher->setControllerName('test1');
     $dispatcher->setActionName('index');
     $dispatcher->setParams(array());
     try {
         $dispatcher->dispatch();
         $this->assertTrue(FALSE, 'oh, Why?');
     } catch (Phalcon\Exception $e) {
         $this->assertEquals($e->getMessage(), "Action 'index' was not found on handler 'test1'");
     }
     $dispatcher->setControllerName('test2');
     $dispatcher->setActionName('index');
     $dispatcher->setParams(array());
     $controller = $dispatcher->dispatch();
     $this->assertInstanceOf('Test2Controller', $controller);
     $dispatcher->setControllerName('test2');
     $dispatcher->setActionName('essai');
     $dispatcher->setParams(array());
     try {
         $dispatcher->dispatch();
         $this->assertTrue(FALSE, 'oh, Why?');
     } catch (Phalcon\Exception $e) {
         $this->assertEquals($e->getMessage(), "Action 'essai' was not found on handler 'test2'");
     }
     $dispatcher->setControllerName('test2');
     $dispatcher->setActionName('other');
     $dispatcher->setParams(array());
     $controller = $dispatcher->dispatch();
     $this->assertInstanceOf('Test2Controller', $controller);
     $dispatcher->setControllerName('test2');
     $dispatcher->setActionName('another');
     $dispatcher->setParams(array());
     $dispatcher->dispatch();
     $value = $dispatcher->getReturnedValue();
     $this->assertEquals($value, 100);
     $dispatcher->setControllerName('test2');
     $dispatcher->setActionName('anotherTwo');
     $dispatcher->setParams(array(2, "3"));
     $dispatcher->dispatch();
     $value = $dispatcher->getReturnedValue();
     $this->assertEquals($value, 5);
     $dispatcher->setControllerName('test2');
     $dispatcher->setActionName('anotherthree');
     $dispatcher->setParams(array());
     $dispatcher->dispatch();
     $value = $dispatcher->getActionName();
     $this->assertEquals($value, 'anotherfour');
     $value = $dispatcher->getReturnedValue();
     $this->assertEquals($value, 120);
     $dispatcher->setControllerName('test2');
     $dispatcher->setActionName('anotherFive');
     $dispatcher->setParams(array("param1" => 2, "param2" => 3));
     $dispatcher->dispatch();
     $value = $dispatcher->getReturnedValue();
     $this->assertEquals($value, 5);
     $dispatcher->setControllerName('test7');
     $dispatcher->setActionName('service');
     $dispatcher->setParams(array());
     $dispatcher->dispatch();
     $value = $dispatcher->getReturnedValue();
     $this->assertEquals($value, "hello");
 }
Exemplo n.º 4
0
 public function testLastController()
 {
     Phalcon\DI::reset();
     $di = new \Phalcon\Di();
     $dispatcher = new Phalcon\Mvc\Dispatcher();
     $dispatcher->setDI($di);
     $di->set('dispatcher', $dispatcher);
     $dispatcher->setControllerName('failure');
     $dispatcher->setActionName('exception');
     $dispatcher->setParams(array());
     try {
         $dispatcher->dispatch();
     } catch (\Exception $e) {
         $this->assertEquals('failure by exception', $e->getMessage());
         $this->assertInstanceOf('FailureController', $dispatcher->getLastController());
     }
 }
Exemplo n.º 5
0
 public function testDefaultsResolve()
 {
     Phalcon\DI::reset();
     $di = new Phalcon\DI();
     $dispatcher = new Phalcon\Mvc\Dispatcher();
     $dispatcher->setDI($di);
     $di->set('dispatcher', $dispatcher);
     $dispatcher->setDefaultNamespace('Foo');
     $value = $dispatcher->getControllerClass();
     $this->assertEquals('Foo\\IndexController', $value);
 }
<?php

$di = new Phalcon\DI();
$dispatcher = new Phalcon\Mvc\Dispatcher();
$dispatcher->setDI($di);
$dispatcher->setControllerName('posts');
$dispatcher->setActionName('index');
$dispatcher->setParams(array());
$controller = $dispatcher->dispatch();
Exemplo n.º 7
0
 public function testDispatcherForward()
 {
     Phalcon\DI::reset();
     $di = new Phalcon\DI();
     //$di->set('response', new \Phalcon\Http\Response());
     $dispatcher = new Phalcon\Mvc\Dispatcher();
     $dispatcher->setDI($di);
     $di->set('dispatcher', $dispatcher);
     $dispatcher->setControllerName('test2');
     $dispatcher->setActionName('index');
     $dispatcher->setParams(array());
     $dispatcher->forward(array('controller' => 'test3', 'action' => 'other'));
     $value = $dispatcher->getControllerName();
     $this->assertEquals($value, 'test3');
     $value = $dispatcher->getActionName();
     $this->assertEquals($value, 'other');
     $value = $dispatcher->getPreviousControllerName();
     $this->assertEquals($value, 'test2');
     $value = $dispatcher->getPreviousActionName();
     $this->assertEquals($value, 'index');
 }