mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Merged pre-2.3-oct08 into 2.3 (via trunk)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.3@66356 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
cad3903459
commit
767a2d8538
@ -3,9 +3,38 @@
|
|||||||
* @package cms
|
* @package cms
|
||||||
* @subpackage tests
|
* @subpackage tests
|
||||||
*/
|
*/
|
||||||
/*
|
|
||||||
class LeftAndMainTest extends SapphireTest {
|
class LeftAndMainTest extends SapphireTest {
|
||||||
|
static $fixture_file = 'cms/tests/CMSMainTest.yml';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check that all subclasses of leftandmain can be accessed
|
||||||
|
*/
|
||||||
|
public function testLeftAndMainSubclasses() {
|
||||||
|
$session = new Session(array(
|
||||||
|
'loggedInAs' => $this->idFromFixture('Member','admin')
|
||||||
|
));
|
||||||
|
|
||||||
|
// This controller stuff is needed because LeftAndMain::MainMenu() inspects the current user's permissions
|
||||||
|
$controller = new Controller();
|
||||||
|
$controller->setSession($session);
|
||||||
|
$controller->pushCurrent();
|
||||||
|
$menuItems = singleton('CMSMain')->MainMenu();
|
||||||
|
$controller->popCurrent();
|
||||||
|
|
||||||
|
$classes = ClassInfo::subclassesFor("LeftAndMain");
|
||||||
|
foreach($menuItems as $menuItem) {
|
||||||
|
$link = $menuItem->Link;
|
||||||
|
if(preg_match('/^https?:\/\//',$link)) continue;
|
||||||
|
|
||||||
|
$response = Director::test($link, null, $session);
|
||||||
|
$this->assertType('HTTPResponse', $response, "$link should return a response object");
|
||||||
|
$this->assertEquals(200, $response->getStatusCode(), "$link should return 200 status code");
|
||||||
|
// Check that a HTML page has been returned
|
||||||
|
$this->assertRegExp('/<html[^>]*>/i', $response->getBody(), "$link should contain <html> tag");
|
||||||
|
$this->assertRegExp('/<head[^>]*>/i', $response->getBody(), "$link should contain <head> tag");
|
||||||
|
$this->assertRegExp('/<body[^>]*>/i', $response->getBody(), "$link should contain <body> tag");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
?>
|
|
||||||
|
Loading…
Reference in New Issue
Block a user