Skip to content

Commit

Permalink
Added test cases showing usage of 'full_base' key for url generation.…
Browse files Browse the repository at this point in the history
… Refs #1256
  • Loading branch information
ADmad committed Nov 4, 2010
1 parent d1403b0 commit 81ce6f4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
18 changes: 10 additions & 8 deletions cake/tests/cases/libs/router.test.php
Expand Up @@ -74,6 +74,8 @@ function testReturnedInstanceReference() {
function testFullBaseURL() {
$this->assertPattern('/^http(s)?:\/\//', Router::url('/', true));
$this->assertPattern('/^http(s)?:\/\//', Router::url(null, true));
$this->assertPattern('/^http(s)?:\/\//', Router::url(array('full_base' => true)));
$this->assertIdentical(FULL_BASE_URL . '/', Router::url(array('full_base' => true)));
}

/**
Expand Down Expand Up @@ -1702,8 +1704,8 @@ function testParsingWithTrailingPeriodAndParseExtensions() {
function testParsingWithPatternOnAction() {
Router::reload();
Router::connect(
'/blog/:action/*',
array('controller' => 'blog_posts'),
'/blog/:action/*',
array('controller' => 'blog_posts'),
array('action' => 'other|actions')
);
$result = Router::parse('/blog/other');
Expand All @@ -1725,7 +1727,7 @@ function testParsingWithPatternOnAction() {
'named' => array()
);
$this->assertEqual($expected, $result);

$result = Router::url(array('controller' => 'blog_posts', 'action' => 'foo'));
$this->assertEqual('/blog_posts/foo', $result);

Expand Down Expand Up @@ -2535,20 +2537,20 @@ function testMatchWithPatterns() {
*/
function testPatternOnAction() {
$route =& new CakeRoute(
'/blog/:action/*',
array('controller' => 'blog_posts'),
'/blog/:action/*',
array('controller' => 'blog_posts'),
array('action' => 'other|actions')
);
$result = $route->match(array('controller' => 'blog_posts', 'action' => 'foo'));
$this->assertFalse($result);

$result = $route->match(array('controller' => 'blog_posts', 'action' => 'actions'));
$this->assertTrue($result);

$result = $route->parse('/blog/other');
$expected = array('controller' => 'blog_posts', 'action' => 'other', 'pass' => array(), 'named' => array());
$this->assertEqual($expected, $result);

$result = $route->parse('/blog/foobar');
$this->assertFalse($result);
}
Expand Down
14 changes: 14 additions & 0 deletions cake/tests/cases/libs/view/helpers/paginator.test.php
Expand Up @@ -21,6 +21,10 @@

Mock::generate('JsHelper', 'PaginatorMockJsHelper');

if (!defined('FULL_BASE_URL')) {
define('FULL_BASE_URL', 'http://cakephp.org');
}

/**
* PaginatorHelperTest class
*
Expand Down Expand Up @@ -1718,6 +1722,16 @@ function testFirstAndLast() {
'/span',
);
$this->assertTags($result, $expected);

$this->Paginator->options(array('url' => array('full_base' => true)));
$result = $this->Paginator->first();

$expected = array(
'<span',
array('a' => array('href' => FULL_BASE_URL . '/index/page:1/sort:Client.name/direction:DESC')), '&lt;&lt; first', '/a',
'/span',
);
$this->assertTags($result, $expected);
}

/**
Expand Down

0 comments on commit 81ce6f4

Please sign in to comment.