コード例 #1
0
ファイル: MapTest.php プロジェクト: corviz/framework
 public function testGetCurrentRouteShouldSelectCorrectInformationForAmbiguousPaths()
 {
     //setup
     $this->clearMap();
     Route::all('posts/edit/{id}', ['controller' => 'Test', 'alias' => 'route1']);
     Route::all('{somePage}', ['controller' => 'Test', 'alias' => 'route2']);
     Route::all('posts/{id}', ['controller' => 'Test', 'alias' => 'route3']);
     //Test 1
     $this->setCurrentRequest(Request::METHOD_GET, '/posts/1/');
     $data = Map::getCurrentRoute();
     $this->assertEquals('route3', $data['alias'], 'incorrect route selected in test case 1');
     //Test 2
     $this->setCurrentRequest(Request::METHOD_GET, '/posts/edit/1/');
     $data = Map::getCurrentRoute();
     $this->assertEquals('route1', $data['alias'], 'incorrect route selected in test case 2');
     //Test 3
     $this->setCurrentRequest(Request::METHOD_GET, '/home/');
     $data = Map::getCurrentRoute();
     $this->assertEquals('route2', $data['alias'], 'incorrect route selected in test case 3');
 }
コード例 #2
0
ファイル: Map.php プロジェクト: corviz/framework
 /**
  * @param Route $route
  */
 public static function addRoute(Route $route)
 {
     self::$routes[] = ['action' => $route->getAction(), 'alias' => $route->getAlias(), 'controller' => $route->getControllerName(), 'methods' => $route->getMethods(), 'route' => $route->getRouteStr(), 'middlewareList' => $route->getMiddlewareList()];
 }