silverstripe-subsites/tests/php/SubsiteAdminTest.php

69 lines
2.1 KiB
PHP
Raw Permalink Normal View History

2009-05-04 07:03:44 +02:00
<?php
namespace SilverStripe\Subsites\Tests;
2017-05-29 13:42:42 +02:00
use SilverStripe\CMS\Controllers\CMSMain;
use SilverStripe\Core\Config\Config;
use SilverStripe\Dev\FunctionalTest;
2017-05-24 15:25:34 +02:00
use SilverStripe\Subsites\Model\Subsite;
class SubsiteAdminTest extends FunctionalTest
2017-05-24 15:26:28 +02:00
{
protected static $fixture_file = 'SubsiteTest.yml';
2021-10-27 07:24:03 +02:00
protected function setUp(): void
{
parent::setUp();
Config::modify()->set(Subsite::class, 'write_hostmap', false);
}
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
{
$subsite1ID = $this->objFromFixture(Subsite::class, 'domaintest1')->ID;
$this->logInAs('admin');
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
$response = $this->get(
2018-02-01 01:19:02 +01:00
"admin/subsites/SilverStripe-Subsites-Model-Subsite/EditForm/field/"
."SilverStripe-Subsites-Model-Subsite/item/$subsite1ID/edit"
);
$this->assertTrue(
2022-04-13 03:49:48 +02:00
strpos($response->getBody() ?? '', 'id="Form_ItemEditForm_ID"') !== false,
'Testing Form_ItemEditForm_ID exists'
);
2022-04-13 03:49:48 +02:00
$this->assertTrue(strpos($response->getBody() ?? '', '<head') !== false, 'Testing <head> exists');
2007-08-21 03:38:20 +02: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
{
$this->logInAs('admin');
2017-05-24 15:26:28 +02:00
$cmsMain = new CMSMain();
foreach ($cmsMain->Subsites() as $subsite) {
$ids[$subsite->ID] = true;
}
2017-06-01 15:57:53 +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-06-01 15:57:53 +02:00
}
}