update('Director', 'alternate_base_url', '/'); $this->origStrictSubdomainMatching = Subsite::$strict_subdomain_matching; $this->origServer = $_SERVER; Subsite::$strict_subdomain_matching = false; } public function tearDown() { $_SERVER = $this->origServer; Subsite::$strict_subdomain_matching = $this->origStrictSubdomainMatching; parent::tearDown(); } /** * Create a new subsite from the template and verify that all the template's pages are copied */ public function testSubsiteCreation() { Subsite::$write_hostmap = false; // Create the instance $template = $this->objFromFixture('Subsite', 'main'); // Test that changeSubsite is working Subsite::changeSubsite($template->ID); $this->assertEquals($template->ID, Subsite::currentSubsiteID()); $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' ); Subsite::changeSubsite(0); } /** * Confirm that domain lookup is working */ public 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" ); } public 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(array( 'Title' => 'My 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 */ public function testDefaultDomain() { $this->assertEquals('one.example.org', $this->objFromFixture('Subsite', 'domaintest1')->domain()); $this->assertEquals('two.mysite.com', $this->objFromFixture('Subsite', 'domaintest2')->domain()); $_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()); } /** * Tests that Subsite and SubsiteDomain both respect http protocol correctly */ public function testDomainProtocol() { // domaintest2 has 'protocol' $subsite2 = $this->objFromFixture('Subsite', 'domaintest2'); $domain2a = $this->objFromFixture('SubsiteDomain', 'dt2a'); $domain2b = $this->objFromFixture('SubsiteDomain', 'dt2b'); // domaintest4 is 'https' (primary only) $subsite4 = $this->objFromFixture('Subsite', 'domaintest4'); $domain4a = $this->objFromFixture('SubsiteDomain', 'dt4a'); $domain4b = $this->objFromFixture('SubsiteDomain', 'dt4b'); // secondary domain is http only though // domaintest5 is 'http' $subsite5 = $this->objFromFixture('Subsite', 'domaintest5'); $domain5a = $this->objFromFixture('SubsiteDomain', 'dt5'); // Check protocol when current protocol is http:// $_SERVER['HTTP_HOST'] = 'www.mysite.com'; $_SERVER['HTTPS'] = ''; $this->assertEquals('http://two.mysite.com/', $subsite2->absoluteBaseURL()); $this->assertEquals('http://two.mysite.com/', $domain2a->absoluteBaseURL()); $this->assertEquals('http://subsite.mysite.com/', $domain2b->absoluteBaseURL()); $this->assertEquals('https://www.primary.com/', $subsite4->absoluteBaseURL()); $this->assertEquals('https://www.primary.com/', $domain4a->absoluteBaseURL()); $this->assertEquals('http://www.secondary.com/', $domain4b->absoluteBaseURL()); $this->assertEquals('http://www.tertiary.com/', $subsite5->absoluteBaseURL()); $this->assertEquals('http://www.tertiary.com/', $domain5a->absoluteBaseURL()); // Check protocol when current protocol is https:// $_SERVER['HTTP_HOST'] = 'www.mysite.com'; $_SERVER['HTTPS'] = 'ON'; $this->assertEquals('https://two.mysite.com/', $subsite2->absoluteBaseURL()); $this->assertEquals('https://two.mysite.com/', $domain2a->absoluteBaseURL()); $this->assertEquals('https://subsite.mysite.com/', $domain2b->absoluteBaseURL()); $this->assertEquals('https://www.primary.com/', $subsite4->absoluteBaseURL()); $this->assertEquals('https://www.primary.com/', $domain4a->absoluteBaseURL()); $this->assertEquals('http://www.secondary.com/', $domain4b->absoluteBaseURL()); $this->assertEquals('http://www.tertiary.com/', $subsite5->absoluteBaseURL()); $this->assertEquals('http://www.tertiary.com/', $domain5a->absoluteBaseURL()); } public function testAllSites() { $subsites = Subsite::all_sites(); $this->assertDOSEquals(array( array('Title' =>'Main site'), array('Title' =>'Template'), array('Title' =>'Subsite1 Template'), array('Title' =>'Subsite2 Template'), array('Title' =>'Test 1'), array('Title' =>'Test 2'), array('Title' =>'Test 3'), array('Title' => 'Test Non-SSL'), array('Title' => 'Test SSL') ), $subsites, 'Lists all subsites'); } public function testAllAccessibleSites() { $member = $this->objFromFixture('Member', 'subsite1member'); $subsites = Subsite::all_accessible_sites(true, 'Main site', $member); $this->assertDOSEquals(array( array('Title' =>'Subsite1 Template') ), $subsites, 'Lists member-accessible sites.'); } /** * Test Subsite::accessible_sites() */ public 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', 'Test Non-SSL', 'Test SSL' ), array_values($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'); } public 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' ); } public 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); } public function testDefaultPageCreatedWhenCreatingSubsite() { $subsite = new Subsite(); $subsite->Title = 'New Subsite'; $subsite->write(); $subsite->activate(); $pages = SiteTree::get(); $this->assertGreaterThanOrEqual(1, $pages->count()); } }