Use App.base when there are no requests to generate URL's

Setting App.fullBaseUrl to a non-host value causes issues generating
URL's in a web context. However, not including the base path generates
incorrect URL's in a CLI context. This change allows the use of App.base
to populate the base path which is used as a fallback when there are no
requests, or when the base path is empty.

Refs #2931
This commit is contained in:
mark_story 2013-10-10 23:07:03 -04:00
parent 5aa8a458b1
commit 4265dbcc33
2 changed files with 15 additions and 0 deletions

View file

@ -803,6 +803,9 @@ class Router {
$params = $request->params;
$path = array('base' => $request->base, 'here' => $request->here);
}
if (empty($path['base'])) {
$path['base'] = Configure::read('App.base');
}
$base = $path['base'];
$extension = $output = $q = $frag = null;

View file

@ -80,6 +80,18 @@ class RouterTest extends CakeTestCase {
$this->assertEquals('https://example.com', Configure::read('App.fullBaseUrl'));
}
/**
* Test that Router uses App.base to build URL's when there are no stored
* request objects.
*
* @return void
*/
public function testBaseUrlWithBasePath() {
Configure::write('App.base', '/cakephp');
Router::fullBaseUrl('http://example.com');
$this->assertEquals('http://example.com/cakephp/tasks', Router::url('/tasks', true));
}
/**
* testRouteDefaultParams method
*