silverstripe-framework/tests/control/ModelAsControllerTest.php
Ingo Schommer 38c71c56a3 MINOR Added flag to remaining SapphireTest subclasses
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@93977 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-11-30 01:56:05 +00:00

35 lines
786 B
PHP

<?php
/**
* @package sapphire
* @subpackage tests
*/
class ModelAsControllerTest extends SapphireTest {
protected $usesDatabase = true;
public function testFindOldPage() {
$page = new Page();
$page->Title = 'Test Page';
$page->URLSegment = 'test-page';
$page->write();
$page->publish('Stage', 'Live');
$page->URLSegment = 'test';
$page->write();
$page->publish('Stage', 'Live');
$router = new ModelAsController();
$request = new SS_HTTPRequest(
'GET', 'test-page/action/id/otherid'
);
$request->match('$URLSegment/$Action/$ID/$OtherID');
$response = $router->handleRequest($request);
$this->assertEquals (
$response->getHeader('Location'),
Controller::join_links(Director::baseURL() . 'test/action/id/otherid')
);
}
}