mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
BUGFIX fix for #5076
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@98957 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
afdc77b293
commit
f72fb26b4c
@ -6,6 +6,15 @@
|
|||||||
* @subpackage tests
|
* @subpackage tests
|
||||||
*/
|
*/
|
||||||
class FilesystemPublisherTest extends SapphireTest {
|
class FilesystemPublisherTest extends SapphireTest {
|
||||||
|
function setup() {
|
||||||
|
parent::setup();
|
||||||
|
SiteTree::$write_homepage_map = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
function teardown() {
|
||||||
|
parent::teardown();
|
||||||
|
SiteTree::$write_homepage_map = true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Simple test to ensure that FileSystemPublisher::__construct()
|
* Simple test to ensure that FileSystemPublisher::__construct()
|
||||||
@ -23,4 +32,32 @@ class FilesystemPublisherTest extends SapphireTest {
|
|||||||
$this->assertEquals($fsp->class, 'FilesystemPublisher');
|
$this->assertEquals($fsp->class, 'FilesystemPublisher');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function testHomepageMapIsCorrect() {
|
||||||
|
$p1 = new Page();
|
||||||
|
$p1->URLSegment = strtolower(__CLASS__).'-page-1';
|
||||||
|
$p1->HomepageForDomain = '';
|
||||||
|
$p1->write();
|
||||||
|
$p1->doPublish();
|
||||||
|
$p2 = new Page();
|
||||||
|
$p2->URLSegment = strtolower(__CLASS__).'-page-2';
|
||||||
|
$p2->HomepageForDomain = 'domain1';
|
||||||
|
$p2->write();
|
||||||
|
$p2->doPublish();
|
||||||
|
$p3 = new Page();
|
||||||
|
$p3->URLSegment = strtolower(__CLASS__).'-page-3';
|
||||||
|
$p3->HomepageForDomain = 'domain2,domain3';
|
||||||
|
$p3->write();
|
||||||
|
$p3->doPublish();
|
||||||
|
|
||||||
|
$map = SiteTree::generate_homepage_domain_map();
|
||||||
|
|
||||||
|
$validMap = array(
|
||||||
|
'domain1' => strtolower(__CLASS__).'-page-2',
|
||||||
|
'domain2' => strtolower(__CLASS__).'-page-3',
|
||||||
|
'domain3' => strtolower(__CLASS__).'-page-3',
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->assertEquals($map, $validMap, 'Homepage/domain map is correct');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user