2009-05-04 07:03:44 +02:00
|
|
|
<?php
|
2007-08-16 08:38:29 +02:00
|
|
|
|
2017-05-29 13:42:42 +02:00
|
|
|
use SilverStripe\Security\Member;
|
2017-05-24 15:26:28 +02:00
|
|
|
use SilverStripe\Control\Session;
|
2017-05-29 13:42:42 +02:00
|
|
|
use SilverStripe\Control\Director;
|
|
|
|
use SilverStripe\CMS\Controllers\CMSMain;
|
2017-05-24 15:25:34 +02:00
|
|
|
use SilverStripe\Subsites\Model\Subsite;
|
|
|
|
|
2017-05-24 15:26:28 +02:00
|
|
|
class SubsiteAdminTest extends BaseSubsiteTest
|
|
|
|
{
|
2017-05-29 13:42:42 +02:00
|
|
|
public static $fixture_file = 'subsites/tests/SubsiteTest.yml';
|
2007-08-21 00:37:43 +02:00
|
|
|
|
2017-05-29 13:42:42 +02:00
|
|
|
public function adminLoggedInSession()
|
2017-05-24 15:26:28 +02:00
|
|
|
{
|
2017-05-29 13:42:42 +02:00
|
|
|
return new Session(array(
|
|
|
|
'loggedInAs' => $this->idFromFixture(Member::class, 'admin')
|
|
|
|
));
|
2007-08-21 03:38:20 +02:00
|
|
|
}
|
2012-07-16 01:14:13 +02:00
|
|
|
|
2007-08-21 03:38:20 +02:00
|
|
|
/**
|
|
|
|
* Test generation of the view
|
|
|
|
*/
|
2017-05-29 13:42:42 +02:00
|
|
|
public function testBasicView()
|
2017-05-24 15:26:28 +02:00
|
|
|
{
|
|
|
|
Subsite::$write_hostmap = false;
|
|
|
|
$subsite1ID = $this->objFromFixture(Subsite::class, 'domaintest1')->ID;
|
2010-08-04 00:41:10 +02:00
|
|
|
|
2007-08-21 03:38:20 +02:00
|
|
|
// Open the admin area logged in as admin
|
|
|
|
$response1 = Director::test('admin/subsites/', null, $this->adminLoggedInSession());
|
2017-05-24 15:26:28 +02:00
|
|
|
|
2007-08-21 03:38:20 +02:00
|
|
|
// Confirm that this URL gets you the entire page, with the edit form loaded
|
2017-05-24 15:26:28 +02:00
|
|
|
$response2 = Director::test("admin/subsites/Subsite/EditForm/field/Subsite/item/$subsite1ID/edit", null,
|
|
|
|
$this->adminLoggedInSession());
|
|
|
|
$this->assertTrue(strpos($response2->getBody(), 'id="Form_ItemEditForm_ID"') !== false,
|
|
|
|
"Testing Form_ItemEditForm_ID exists");
|
2008-03-19 05:26:00 +01:00
|
|
|
$this->assertTrue(strpos($response2->getBody(), '<head') !== false, "Testing <head> exists");
|
2007-08-21 03:38:20 +02:00
|
|
|
}
|
2009-02-24 23:09:15 +01:00
|
|
|
|
2017-05-24 15:26:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that the main-site user with ADMIN permissions can access all subsites, regardless
|
|
|
|
* of whether he is in a subsite-specific group or not.
|
|
|
|
*/
|
2017-05-29 13:42:42 +02:00
|
|
|
public function testMainsiteAdminCanAccessAllSubsites()
|
2017-05-24 15:26:28 +02:00
|
|
|
{
|
2017-05-29 13:42:42 +02:00
|
|
|
$member = $this->objFromFixture(Member::class, 'admin');
|
2017-05-24 15:26:28 +02:00
|
|
|
Session::set("loggedInAs", $member->ID);
|
|
|
|
|
|
|
|
$cmsMain = new CMSMain();
|
|
|
|
foreach ($cmsMain->Subsites() as $subsite) {
|
|
|
|
$ids[$subsite->ID] = true;
|
|
|
|
}
|
|
|
|
|
2017-05-29 13:42:42 +02:00
|
|
|
$this->assertArrayHasKey(0, $ids, "Main site accessible");
|
|
|
|
$this->assertArrayHasKey($this->idFromFixture(Subsite::class,'main'), $ids, "Site with no groups inaccesible");
|
|
|
|
$this->assertArrayHasKey($this->idFromFixture(Subsite::class,'subsite1'), $ids, "Subsite1 Template inaccessible");
|
|
|
|
$this->assertArrayHasKey($this->idFromFixture(Subsite::class,'subsite2'), $ids, "Subsite2 Template inaccessible");
|
|
|
|
}
|
2017-05-24 15:26:28 +02:00
|
|
|
|
|
|
|
|
2007-08-16 08:38:29 +02:00
|
|
|
}
|
|
|
|
|