$this->idFromFixture('Member', 'admin') )); } /** * Test generation of the view */ function testBasicView() { Subsite::$write_hostmap = false; // Open the admin area logged in as admin $response1 = Director::test('admin/subsites/', null, $this->adminLoggedInSession()); // Confirm that this URL gets you the entire page, with the edit form loaded $response2 = Director::test('admin/subsites/Subsite/1/edit', null, $this->adminLoggedInSession()); $this->assertTrue(strpos($response2->getBody(), 'id="Form_EditForm_ID"') !== false, "Testing Form_EditForm_ID exists"); $this->assertTrue(strpos($response2->getBody(), ' exists"); } /** * Test searching for an intranet */ function XXtestIntranetSearch() { $cont = new SubsiteAdmin(); $cont->pushCurrent(); $cont->setSession($this->adminLoggedInSession()); // Check that the logged-in member has the correct permissions $this->assertTrue(Permission::check('ADMIN') ? true : false); $form = $cont->SearchForm(); $searches = array( array('Name' => 'Other'), ); foreach($searches as $search) { $response = $form->testAjaxSubmission('getResults', $search); $links = $response->getLinks(); foreach($links as $link) { $this->assertTrue(preg_match('/^admin\/subsites\/show\/[0-9]+$/', $link['href']) == 1, "Search result links bad."); } } $cont->popCurrent(); } /** * Test the intranet creation form. */ function XXtestIntranetCreation() { $cont = new SubsiteAdmin(); $cont->pushCurrent(); $cont->setSession($this->adminLoggedInSession()); $form = $cont->AddSubsiteForm(); $source = $form->dataFieldByName('TemplateID')->getSource(); $templateIDs = $this->allFixtureIDs('Subsite_Template'); foreach($templateIDs as $templateID) { $this->assertArrayHasKey($templateID, $source); } $templateObj = $this->objFromFixture('Subsite_Template','main'); $this->assertEquals($templateObj->Title, $source[$templateObj->ID], "Template dropdown isn't listing Title values"); $response = $form->testSubmission('addintranet', array( 'Name' => 'Test Intranet', 'Domain' => 'test.example.com', 'TemplateID' => 1, 'AdminEmail' => '', 'AdminName' => '', )); $this->assertTrue(true == preg_match('/admin\/subsites\/show\/([0-9]+)/i', $response->getHeader('Location'), $matches), "Intranet creation dowsn't redirect to new view"); $newIntranet = DataObject::get_by_id("Subsite", $matches[1]); $this->assertEquals('Test Intranet', $newIntranet->Title, "New intranet not created properly."); $cont->popCurrent(); } /** * 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. */ function testMainsiteAdminCanAccessAllSubsites() { $member = $this->objFromFixture('Member', 'admin'); Session::set("loggedInAs", $member->ID); $cmsMain = new CMSMain(); foreach($cmsMain->Subsites() as $subsite) { $ids[$subsite->ID] = true; } $this->assertTrue($subsite->adminSearchFields() instanceof FieldSet); $this->assertArrayHasKey(0, $ids, "Main site accessible"); $this->assertArrayHasKey($this->idFromFixture('Subsite_Template','main'), $ids, "Site with no groups inaccesible"); $this->assertArrayHasKey($this->idFromFixture('Subsite_Template','subsite1'), $ids, "Subsite1 Template inaccessible"); $this->assertArrayHasKey($this->idFromFixture('Subsite_Template','subsite2'), $ids, "Subsite2 Template inaccessible"); } } ?>