mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
802ad59f2a
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@108818 467b73ca-7a2a-4603-9d3b-597d59a354a9
74 lines
2.1 KiB
PHP
74 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Tests for the {@link FilesystemPublisher} class.
|
|
*
|
|
* @package cms
|
|
* @subpackage tests
|
|
*/
|
|
class FilesystemPublisherTest extends SapphireTest {
|
|
|
|
protected $usesDatabase = true;
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
|
|
Object::add_extension("SiteTree", "FilesystemPublisher('../FilesystemPublisherTest-static-folder/')");
|
|
SiteTree::$write_homepage_map = false;
|
|
}
|
|
|
|
function tearDown() {
|
|
Object::remove_extension("SiteTree", "FilesystemPublisher");
|
|
SiteTree::$write_homepage_map = true;
|
|
|
|
parent::tearDown();
|
|
}
|
|
|
|
/**
|
|
* Simple test to ensure that FileSystemPublisher::__construct()
|
|
* has called parent::__construct() by checking the class property.
|
|
* The class property is set on {@link Object::__construct()} and
|
|
* this is therefore a good test to ensure it was called.
|
|
*
|
|
* If FilesystemPublisher doesn't call parent::__construct() then
|
|
* it won't be enabled propery because {@link Object::__construct()}
|
|
* is where extension instances are set up and subsequently used by
|
|
* {@link DataObject::defineMethods()}.
|
|
*/
|
|
function testHasCalledParentConstructor() {
|
|
$fsp = new FilesystemPublisher('.', '.html');
|
|
$this->assertEquals($fsp->class, 'FilesystemPublisher');
|
|
}
|
|
|
|
function testHomepageMapIsWithStaticPublishing() {
|
|
$this->logInWithPermission('ADMIN');
|
|
|
|
$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();
|
|
|
|
$this->assertEquals(
|
|
$map,
|
|
array(
|
|
'domain1' => strtolower(__CLASS__).'-page-2',
|
|
'domain2' => strtolower(__CLASS__).'-page-3',
|
|
'domain3' => strtolower(__CLASS__).'-page-3',
|
|
),
|
|
'Homepage/domain map is correct when static publishing is enabled'
|
|
);
|
|
}
|
|
|
|
} |