mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
7b3068ac4f
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@69703 467b73ca-7a2a-4603-9d3b-597d59a354a9
85 lines
2.5 KiB
PHP
85 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* @package cms
|
|
* @subpackage tests
|
|
*/
|
|
class LeftAndMainTest extends FunctionalTest {
|
|
static $fixture_file = 'cms/tests/CMSMainTest.yml';
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
|
|
// @todo fix controller stack problems and re-activate
|
|
//$this->autoFollowRedirection = false;
|
|
}
|
|
|
|
/**
|
|
* Check that all subclasses of leftandmain can be accessed
|
|
*/
|
|
public function testLeftAndMainSubclasses() {
|
|
$adminuser = $this->objFromFixture('Member','admin');
|
|
$this->session()->inst_set('loggedInAs', $adminuser->ID);
|
|
|
|
$menuItems = singleton('CMSMain')->MainMenu();
|
|
foreach($menuItems as $menuItem) {
|
|
$link = $menuItem->Link;
|
|
|
|
// don't test external links
|
|
if(preg_match('/^https?:\/\//',$link)) continue;
|
|
|
|
$response = $this->get($link);
|
|
|
|
$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");
|
|
}
|
|
|
|
$this->session()->inst_set('loggedInAs', null);
|
|
|
|
}
|
|
|
|
function testCanView() {
|
|
$adminuser = $this->objFromFixture('Member', 'admin');
|
|
$assetsonlyuser = $this->objFromFixture('Member', 'assetsonlyuser');
|
|
|
|
// anonymous user
|
|
$this->session()->inst_set('loggedInAs', null);
|
|
$menuItems = singleton('LeftAndMain')->MainMenu();
|
|
$this->assertEquals(
|
|
$menuItems->column('Code'),
|
|
array(),
|
|
'Without valid login, members cant access any menu entries'
|
|
);
|
|
|
|
// restricted cms user
|
|
$this->session()->inst_set('loggedInAs', $assetsonlyuser->ID);
|
|
$menuItems = singleton('LeftAndMain')->MainMenu();
|
|
$this->assertEquals(
|
|
$menuItems->column('Code'),
|
|
array('AssetAdmin','Help'),
|
|
'Groups with limited access can only access the interfaces they have permissions for'
|
|
);
|
|
|
|
// admin
|
|
$this->session()->inst_set('loggedInAs', $adminuser->ID);
|
|
$menuItems = singleton('LeftAndMain')->MainMenu();
|
|
$this->assertContains(
|
|
'CMSMain',
|
|
$menuItems->column('Code'),
|
|
'Administrators can access CMS'
|
|
);
|
|
$this->assertContains(
|
|
'AssetAdmin',
|
|
$menuItems->column('Code'),
|
|
'Administrators can access Assets'
|
|
);
|
|
|
|
$this->session()->inst_set('loggedInAs', null);
|
|
}
|
|
|
|
}
|
|
|