mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
82f1d980e8
Conflicts: code/SubsiteAdmin.php code/extensions/LeftAndMainSubsites.php code/extensions/SiteTreeSubsites.php code/model/Subsite.php composer.json javascript/SubsitesTreeDropdownField.js lang/en_US.php tests/SubsiteAdminTest.php tests/SubsiteTest.php tests/SubsiteTest.yml tests/SubsitesVirtualPageTest.php
347 lines
11 KiB
PHP
347 lines
11 KiB
PHP
<?php
|
|
|
|
class SubsiteTest extends BaseSubsiteTest {
|
|
|
|
static $fixture_file = 'subsites/tests/SubsiteTest.yml';
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
|
|
$this->origStrictSubdomainMatching = Subsite::$strict_subdomain_matching;
|
|
Subsite::$strict_subdomain_matching = false;
|
|
}
|
|
|
|
function tearDown() {
|
|
parent::tearDown();
|
|
|
|
Subsite::$strict_subdomain_matching = $this->origStrictSubdomainMatching;
|
|
}
|
|
|
|
/**
|
|
* Create a new subsite from the template and verify that all the template's pages are copied
|
|
*/
|
|
function testSubsiteCreation() {
|
|
Subsite::$write_hostmap = false;
|
|
|
|
// Create the instance
|
|
$template = $this->objFromFixture('Subsite', 'main');
|
|
|
|
// Test that changeSubsite is working
|
|
Subsite::changeSubsite($template->ID);
|
|
$tmplStaff = $this->objFromFixture('Page','staff');
|
|
$tmplHome = DataObject::get_one('Page', "\"URLSegment\" = 'home'");
|
|
|
|
// Publish all the pages in the template, testing that DataObject::get only returns pages from the chosen subsite
|
|
$pages = DataObject::get("SiteTree");
|
|
$totalPages = $pages->Count();
|
|
foreach($pages as $page) {
|
|
$this->assertEquals($template->ID, $page->SubsiteID);
|
|
$page->publish('Stage', 'Live');
|
|
}
|
|
|
|
// Create a new site
|
|
$subsite = $template->duplicate();
|
|
|
|
// Check title
|
|
$this->assertEquals($subsite->Title, $template->Title);
|
|
|
|
// Another test that changeSubsite is working
|
|
$subsite->activate();
|
|
|
|
$siteHome = DataObject::get_one('Page', "\"URLSegment\" = 'home'");
|
|
$this->assertNotEquals($siteHome, false, 'Home Page for subsite not found');
|
|
$this->assertEquals($subsite->ID, $siteHome->SubsiteID,
|
|
'createInstance() copies existing pages retaining the same URLSegment'
|
|
);
|
|
$this->assertEquals($siteHome->MasterPageID, $tmplHome->ID, 'Check master page value');
|
|
|
|
// Check linking of child pages
|
|
$siteStaff = DataObject::get_one('Page', "\"URLSegment\" = '" . Convert::raw2sql($tmplStaff->URLSegment) . "'");
|
|
$this->assertEquals($siteStaff->MasterPageID, $tmplStaff->ID);
|
|
|
|
Subsite::changeSubsite(0);
|
|
|
|
}
|
|
|
|
/**
|
|
* Confirm that domain lookup is working
|
|
*/
|
|
function testDomainLookup() {
|
|
// Clear existing fixtures
|
|
foreach(DataObject::get('Subsite') as $subsite) $subsite->delete();
|
|
foreach(DataObject::get('SubsiteDomain') as $domain) $domain->delete();
|
|
|
|
// Much more expressive than YML in this case
|
|
$subsite1 = $this->createSubsiteWithDomains(array(
|
|
'one.example.org' => true,
|
|
'one.*' => false,
|
|
));
|
|
$subsite2 = $this->createSubsiteWithDomains(array(
|
|
'two.mysite.com' => true,
|
|
'*.mysite.com' => false,
|
|
'subdomain.onmultiplesubsites.com' => false,
|
|
));
|
|
$subsite3 = $this->createSubsiteWithDomains(array(
|
|
'three.*' => true, // wildcards in primary domain are not recommended
|
|
'subdomain.unique.com' => false,
|
|
'*.onmultiplesubsites.com' => false,
|
|
));
|
|
|
|
$this->assertEquals(
|
|
$subsite3->ID,
|
|
Subsite::getSubsiteIDForDomain('subdomain.unique.com'),
|
|
'Full unique match'
|
|
);
|
|
|
|
$this->assertEquals(
|
|
$subsite1->ID,
|
|
Subsite::getSubsiteIDForDomain('one.example.org'),
|
|
'Full match, doesn\'t complain about multiple matches within a single subsite'
|
|
);
|
|
|
|
$failed = false;
|
|
try {
|
|
Subsite::getSubsiteIDForDomain('subdomain.onmultiplesubsites.com');
|
|
} catch(UnexpectedValueException $e) {
|
|
$failed = true;
|
|
}
|
|
$this->assertTrue(
|
|
$failed,
|
|
'Fails on multiple matches with wildcard vs. www across multiple subsites'
|
|
);
|
|
|
|
$this->assertEquals(
|
|
$subsite1->ID,
|
|
Subsite::getSubsiteIDForDomain('one.unique.com'),
|
|
'Fuzzy match suffixed with wildcard (rule "one.*")'
|
|
);
|
|
|
|
$this->assertEquals(
|
|
$subsite2->ID,
|
|
Subsite::getSubsiteIDForDomain('two.mysite.com'),
|
|
'Matches correct subsite for rule'
|
|
);
|
|
|
|
$this->assertEquals(
|
|
$subsite2->ID,
|
|
Subsite::getSubsiteIDForDomain('other.mysite.com'),
|
|
'Fuzzy match prefixed with wildcard (rule "*.mysite.com")'
|
|
);
|
|
|
|
$this->assertEquals(
|
|
0,
|
|
Subsite::getSubsiteIDForDomain('unknown.madeup.com'),
|
|
"Doesn't match unknown subsite"
|
|
);
|
|
|
|
}
|
|
|
|
function testStrictSubdomainMatching() {
|
|
// Clear existing fixtures
|
|
foreach(DataObject::get('Subsite') as $subsite) $subsite->delete();
|
|
foreach(DataObject::get('SubsiteDomain') as $domain) $domain->delete();
|
|
|
|
// Much more expressive than YML in this case
|
|
$subsite1 = $this->createSubsiteWithDomains(array(
|
|
'example.org' => true,
|
|
'example.com' => false,
|
|
'*.wildcard.com' => false,
|
|
));
|
|
$subsite2 = $this->createSubsiteWithDomains(array(
|
|
'www.example.org' => true,
|
|
'www.wildcard.com' => false,
|
|
));
|
|
|
|
Subsite::$strict_subdomain_matching = false;
|
|
|
|
$this->assertEquals(
|
|
$subsite1->ID,
|
|
Subsite::getSubsiteIDForDomain('example.org'),
|
|
'Exact matches without strict checking when not using www prefix'
|
|
);
|
|
$this->assertEquals(
|
|
$subsite1->ID,
|
|
Subsite::getSubsiteIDForDomain('www.example.org'),
|
|
'Matches without strict checking when using www prefix, still matching first domain regardless of www prefix (falling back to subsite primary key ordering)'
|
|
);
|
|
$this->assertEquals(
|
|
$subsite1->ID,
|
|
Subsite::getSubsiteIDForDomain('www.example.com'),
|
|
'Fuzzy matches without strict checking with www prefix'
|
|
);
|
|
$this->assertEquals(
|
|
0,
|
|
Subsite::getSubsiteIDForDomain('www.wildcard.com'),
|
|
'Doesn\'t match www prefix without strict check, even if a wildcard subdomain is in place'
|
|
);
|
|
|
|
Subsite::$strict_subdomain_matching = true;
|
|
|
|
$this->assertEquals(
|
|
$subsite1->ID,
|
|
Subsite::getSubsiteIDForDomain('example.org'),
|
|
'Matches with strict checking when not using www prefix'
|
|
);
|
|
$this->assertEquals(
|
|
$subsite2->ID, // not 1
|
|
Subsite::getSubsiteIDForDomain('www.example.org'),
|
|
'Matches with strict checking when using www prefix'
|
|
);
|
|
$this->assertEquals(
|
|
0,
|
|
Subsite::getSubsiteIDForDomain('www.example.com'),
|
|
'Doesn\'t fuzzy match with strict checking when using www prefix'
|
|
);
|
|
$failed = false;
|
|
try {
|
|
Subsite::getSubsiteIDForDomain('www.wildcard.com');
|
|
} catch(UnexpectedValueException $e) {
|
|
$failed = true;
|
|
}
|
|
$this->assertTrue(
|
|
$failed,
|
|
'Fails on multiple matches with strict checking and wildcard vs. www'
|
|
);
|
|
|
|
}
|
|
|
|
protected function createSubsiteWithDomains($domains) {
|
|
$subsite = new Subsite();
|
|
$subsite->write();
|
|
foreach($domains as $domainStr => $isPrimary) {
|
|
$domain = new SubsiteDomain(array(
|
|
'Domain' => $domainStr,
|
|
'IsPrimary' => $isPrimary,
|
|
'SubsiteID' => $subsite->ID
|
|
));
|
|
$domain->write();
|
|
}
|
|
|
|
return $subsite;
|
|
}
|
|
|
|
/**
|
|
* Test the Subsite->domain() method
|
|
*/
|
|
function testDefaultDomain() {
|
|
$this->assertEquals('one.example.org',
|
|
$this->objFromFixture('Subsite','domaintest1')->domain());
|
|
|
|
$this->assertEquals('two.mysite.com',
|
|
$this->objFromFixture('Subsite','domaintest2')->domain());
|
|
|
|
$originalHTTPHost = $_SERVER['HTTP_HOST'];
|
|
|
|
$_SERVER['HTTP_HOST'] = "www.example.org";
|
|
$this->assertEquals('three.example.org',
|
|
$this->objFromFixture('Subsite','domaintest3')->domain());
|
|
|
|
$_SERVER['HTTP_HOST'] = "mysite.example.org";
|
|
$this->assertEquals('three.mysite.example.org',
|
|
$this->objFromFixture('Subsite','domaintest3')->domain());
|
|
|
|
|
|
$this->assertEquals($_SERVER['HTTP_HOST'], singleton('Subsite')->PrimaryDomain);
|
|
$this->assertEquals('http://'.$_SERVER['HTTP_HOST'].Director::baseURL(), singleton('Subsite')->absoluteBaseURL());
|
|
|
|
|
|
$_SERVER['HTTP_HOST'] = $originalHTTPHost;
|
|
|
|
}
|
|
|
|
/**
|
|
* Test Subsite::accessible_sites()
|
|
*/
|
|
function testAccessibleSites() {
|
|
$member1Sites = Subsite::accessible_sites("CMS_ACCESS_CMSMain", false, null,
|
|
$this->objFromFixture('Member', 'subsite1member'));
|
|
$member1SiteTitles = $member1Sites->column("Title");
|
|
sort($member1SiteTitles);
|
|
$this->assertEquals('Subsite1 Template', $member1SiteTitles[0], 'Member can get to a subsite via a group');
|
|
|
|
$adminSites = Subsite::accessible_sites("CMS_ACCESS_CMSMain", false, null,
|
|
$this->objFromFixture('Member', 'admin'));
|
|
$adminSiteTitles = $adminSites->column("Title");
|
|
sort($adminSiteTitles);
|
|
$this->assertEquals(array(
|
|
'Subsite1 Template',
|
|
'Subsite2 Template',
|
|
'Template',
|
|
'Test 1',
|
|
'Test 2',
|
|
'Test 3',
|
|
), $adminSiteTitles);
|
|
|
|
$member2Sites = Subsite::accessible_sites("CMS_ACCESS_CMSMain", false, null,
|
|
$this->objFromFixture('Member', 'subsite1member2'));
|
|
$member2SiteTitles = $member2Sites->column("Title");
|
|
sort($member2SiteTitles);
|
|
$this->assertEquals('Subsite1 Template', $member2SiteTitles[0], 'Member can get to subsite via a group role');
|
|
}
|
|
|
|
function testhasMainSitePermission() {
|
|
$admin = $this->objFromFixture('Member', 'admin');
|
|
$subsite1member = $this->objFromFixture('Member', 'subsite1member');
|
|
$subsite1admin = $this->objFromFixture('Member', 'subsite1admin');
|
|
$allsubsitesauthor = $this->objFromFixture('Member', 'allsubsitesauthor');
|
|
|
|
$this->assertTrue(
|
|
Subsite::hasMainSitePermission($admin),
|
|
'Default permissions granted for super-admin'
|
|
);
|
|
$this->assertTrue(
|
|
Subsite::hasMainSitePermission($admin, array("ADMIN")),
|
|
'ADMIN permissions granted for super-admin'
|
|
);
|
|
$this->assertFalse(
|
|
Subsite::hasMainSitePermission($subsite1admin, array("ADMIN")),
|
|
'ADMIN permissions (on main site) denied for subsite1 admin'
|
|
);
|
|
$this->assertFalse(
|
|
Subsite::hasMainSitePermission($subsite1admin, array("CMS_ACCESS_CMSMain")),
|
|
'CMS_ACCESS_CMSMain (on main site) denied for subsite1 admin'
|
|
);
|
|
$this->assertFalse(
|
|
Subsite::hasMainSitePermission($allsubsitesauthor, array("ADMIN")),
|
|
'ADMIN permissions (on main site) denied for CMS author with edit rights on all subsites'
|
|
);
|
|
$this->assertTrue(
|
|
Subsite::hasMainSitePermission($allsubsitesauthor, array("CMS_ACCESS_CMSMain")),
|
|
'CMS_ACCESS_CMSMain (on main site) granted for CMS author with edit rights on all subsites'
|
|
);
|
|
$this->assertFalse(
|
|
Subsite::hasMainSitePermission($subsite1member, array("ADMIN")),
|
|
'ADMIN (on main site) denied for subsite1 subsite1 cms author'
|
|
);
|
|
$this->assertFalse(
|
|
Subsite::hasMainSitePermission($subsite1member, array("CMS_ACCESS_CMSMain")),
|
|
'CMS_ACCESS_CMSMain (on main site) denied for subsite1 cms author'
|
|
);
|
|
}
|
|
|
|
function testDuplicateSubsite() {
|
|
// get subsite1 & create page
|
|
$subsite1 = $this->objFromFixture('Subsite','domaintest1');
|
|
$subsite1->activate();
|
|
$page1 = new Page();
|
|
$page1->Title = 'MyAwesomePage';
|
|
$page1->write();
|
|
$page1->doPublish();
|
|
$this->assertEquals($page1->SubsiteID, $subsite1->ID);
|
|
|
|
// duplicate
|
|
$subsite2 = $subsite1->duplicate();
|
|
$subsite2->activate();
|
|
// change content on dupe
|
|
$page2 = DataObject::get_one('Page', "\"Title\" = 'MyAwesomePage'");
|
|
$page2->Title = 'MyNewAwesomePage';
|
|
$page2->write();
|
|
$page2->doPublish();
|
|
|
|
// check change & check change has not affected subiste1
|
|
$subsite1->activate();
|
|
$this->assertEquals('MyAwesomePage', DataObject::get_by_id('Page', $page1->ID)->Title);
|
|
$subsite2->activate();
|
|
$this->assertEquals('MyNewAwesomePage', DataObject::get_by_id('Page', $page2->ID)->Title);
|
|
}
|
|
} |