Merged pre-2.3-oct08 into trunk

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@66355 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2008-11-21 01:11:49 +00:00
parent d598504bfc
commit f317676341

View File

@ -3,9 +3,38 @@
* @package cms
* @subpackage tests
*/
/*
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");
}
}
}
*/
?>