Url = new UrlHelper(new View(null)); $this->Url->request = new Request(); $this->Url->request->webroot = ''; } /** * @return void */ public function testBuildReset() { Router::connect('/:controller/:action/*'); $result = $this->Url->buildReset(['controller' => 'foobar', 'action' => 'test']); $expected = '/foobar/test'; $this->assertSame($expected, $result); $this->Url->request->here = '/admin/foobar/test'; $this->Url->request->params['prefix'] = 'admin'; Router::reload(); Router::connect('/:controller/:action/*'); Router::prefix('admin', function ($routes) { $routes->fallbacks(); }); Router::pushRequest($this->Url->request); $result = $this->Url->build(['prefix' => 'admin', 'controller' => 'foobar', 'action' => 'test']); $expected = '/admin/foobar/test'; $this->assertSame($expected, $result); $result = $this->Url->build(['controller' => 'foobar', 'action' => 'test']); $expected = '/admin/foobar/test'; $this->assertSame($expected, $result); $result = $this->Url->buildReset(['controller' => 'foobar', 'action' => 'test']); $expected = '/foobar/test'; $this->assertSame($expected, $result); } /** * @return void */ public function testBuildResetWithPlugin() { Router::connect('/:controller/:action/*'); $result = $this->Url->buildReset(['controller' => 'foobar', 'action' => 'test']); $expected = '/foobar/test'; $this->assertSame($expected, $result); $this->Url->request->here = '/admin/foo/bar/baz/test'; $this->Url->request->params['prefix'] = 'admin'; $this->Url->request->params['plugin'] = 'Foo'; Router::reload(); Router::connect('/:controller/:action/*'); Router::plugin('Foo', function ($routes) { $routes->fallbacks(); }); Router::prefix('admin', function ($routes) { $routes->plugin('Foo', function ($routes) { $routes->fallbacks(); }); }); Plugin::routes(); Router::pushRequest($this->Url->request); $result = $this->Url->build(['controller' => 'bar', 'action' => 'baz', 'x']); $expected = '/admin/foo/bar/baz/x'; $this->assertSame($expected, $result); $result = $this->Url->buildReset(['controller' => 'bar', 'action' => 'baz', 'x']); $expected = '/bar/baz/x'; $this->assertSame($expected, $result); } /** * @return void */ public function testBuildComplete() { $this->Url->request->query['x'] = 'y'; $result = $this->Url->buildComplete(['action' => 'test']); $expected = '/test?x=y'; $this->assertSame($expected, $result); $result = $this->Url->buildComplete(['action' => 'test', '?' => ['a' => 'b']]); $expected = '/test?a=b&x=y'; $this->assertSame($expected, $result); } /** * @return void */ public function tearDown() { parent::tearDown(); unset($this->Url); } }