コード例 #1
0
ファイル: RedirectRouteTest.php プロジェクト: sherix88/sigedu
/**
 * test the parsing of routes.
 *
 * @return void
 */
	public function testParsing() {
		$route = new RedirectRoute('/home', array('controller' => 'posts'));
		$route->response = $this->getMock('CakeResponse', array('_sendHeader'));
		$result = $route->parse('/home');
		$this->assertEqual($route->response->header(), array('Location' => Router::url('/posts', true)));

		$route = new RedirectRoute('/home', array('controller' => 'posts', 'action' => 'index'));
		$route->response = $this->getMock('CakeResponse', array('_sendHeader'));
		$result = $route->parse('/home');
		$this->assertEqual($route->response->header(), array('Location' => Router::url('/posts', true)));
		$this->assertEqual($route->response->statusCode(), 301);

		$route = new RedirectRoute('/google', 'http://google.com');
		$route->response = $this->getMock('CakeResponse', array('_sendHeader'));
		$result = $route->parse('/google');
		$this->assertEqual($route->response->header(), array('Location' => 'http://google.com'));

		$route = new RedirectRoute('/posts/*', array('controller' => 'posts', 'action' => 'view'), array('status' => 302));
		$route->response = $this->getMock('CakeResponse', array('_sendHeader'));
		$result = $route->parse('/posts/2');
		$this->assertEqual($route->response->header(), array('Location' => Router::url('/posts/view', true)));
		$this->assertEqual($route->response->statusCode(), 302);

		$route = new RedirectRoute('/posts/*', array('controller' => 'posts', 'action' => 'view'), array('persist' => true));
		$route->response = $this->getMock('CakeResponse', array('_sendHeader'));
		$result = $route->parse('/posts/2');
		$this->assertEqual($route->response->header(), array('Location' => Router::url('/posts/view/2', true)));

		$route = new RedirectRoute('/posts/*', '/test', array('persist' => true));
		$route->response = $this->getMock('CakeResponse', array('_sendHeader'));
		$result = $route->parse('/posts/2');
		$this->assertEqual($route->response->header(), array('Location' => Router::url('/test', true)));

		$route = new RedirectRoute('/my_controllers/:action/*', array('controller' => 'tags', 'action' => 'add'), array('persist' => true));
		$route->response = $this->getMock('CakeResponse', array('_sendHeader'));
		$result = $route->parse('/my_controllers/do_something/passme/named:param');
		$this->assertEqual($route->response->header(), array('Location' => Router::url('/tags/add/passme/named:param', true)));

		$route = new RedirectRoute('/my_controllers/:action/*', array('controller' => 'tags', 'action' => 'add'));
		$route->response = $this->getMock('CakeResponse', array('_sendHeader'));
		$result = $route->parse('/my_controllers/do_something/passme/named:param');
		$this->assertEqual($route->response->header(), array('Location' => Router::url('/tags/add', true)));
	}
コード例 #2
0
 /**
  * test the parsing of routes.
  *
  * @return void
  */
 public function testParsing()
 {
     $route = new RedirectRoute('/home', array('controller' => 'posts'));
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/home');
     $header = $route->response->header();
     $this->assertEquals(Router::url('/posts', true), $header['Location']);
     $route = new RedirectRoute('/home', array('controller' => 'posts', 'action' => 'index'));
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/home');
     $header = $route->response->header();
     $this->assertEquals(Router::url('/posts', true), $header['Location']);
     $this->assertEquals(301, $route->response->statusCode());
     $route = new RedirectRoute('/google', 'http://google.com');
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/google');
     $header = $route->response->header();
     $this->assertEquals('http://google.com', $header['Location']);
     $route = new RedirectRoute('/posts/*', array('controller' => 'posts', 'action' => 'view'), array('status' => 302));
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/posts/2');
     $header = $route->response->header();
     $this->assertEquals(Router::url('/posts/view', true), $header['Location']);
     $this->assertEquals(302, $route->response->statusCode());
     $route = new RedirectRoute('/posts/*', array('controller' => 'posts', 'action' => 'view'), array('persist' => true));
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/posts/2');
     $header = $route->response->header();
     $this->assertEquals(Router::url('/posts/view/2', true), $header['Location']);
     $route = new RedirectRoute('/posts/*', '/test', array('persist' => true));
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/posts/2');
     $header = $route->response->header();
     $this->assertEquals(Router::url('/test', true), $header['Location']);
     $route = new RedirectRoute('/my_controllers/:action/*', array('controller' => 'tags', 'action' => 'add'), array('persist' => true));
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/my_controllers/do_something/passme/named:param');
     $header = $route->response->header();
     $this->assertEquals(Router::url('/tags/add/passme/named:param', true), $header['Location']);
     $route = new RedirectRoute('/my_controllers/:action/*', array('controller' => 'tags', 'action' => 'add'));
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/my_controllers/do_something/passme/named:param');
     $header = $route->response->header();
     $this->assertEquals(Router::url('/tags/add', true), $header['Location']);
     $route = new RedirectRoute('/:lang/my_controllers', array('controller' => 'tags', 'action' => 'add'), array('lang' => '(nl|en)', 'persist' => array('lang')));
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/nl/my_controllers/');
     $header = $route->response->header();
     $this->assertEquals(Router::url('/tags/add/lang:nl', true), $header['Location']);
     Router::$routes = array();
     // reset default routes
     Router::connect('/:lang/preferred_controllers', array('controller' => 'tags', 'action' => 'add'), array('lang' => '(nl|en)', 'persist' => array('lang')));
     $route = new RedirectRoute('/:lang/my_controllers', array('controller' => 'tags', 'action' => 'add'), array('lang' => '(nl|en)', 'persist' => array('lang')));
     $route->stop = false;
     $route->response = $this->getMock('CakeResponse', array('_sendHeader'));
     $result = $route->parse('/nl/my_controllers/');
     $header = $route->response->header();
     $this->assertEquals(Router::url('/nl/preferred_controllers', true), $header['Location']);
 }