mirror of
https://github.com/wilr/silverstripe-googlesitemaps.git
synced 2024-10-22 11:05:48 +02:00
FIX: skip unit tests and loading page objects if cms module is not installed.
This commit is contained in:
parent
c5c92abad2
commit
df9b224937
@ -1,8 +1,9 @@
|
||||
<?php
|
||||
|
||||
// add the extension to pages
|
||||
if (class_exists('SiteTree'))
|
||||
if (class_exists('SiteTree')) {
|
||||
Object::add_extension('SiteTree', 'GoogleSitemapSiteTreeDecorator');
|
||||
}
|
||||
|
||||
// if you need to add this to DataObjects include the following in
|
||||
// your own _config:
|
||||
|
@ -21,6 +21,13 @@
|
||||
*/
|
||||
class GoogleSitemap extends Controller {
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
public static $allowed_actions = array(
|
||||
'index'
|
||||
);
|
||||
|
||||
/**
|
||||
* @var boolean
|
||||
*/
|
||||
|
6
tests/GoogleSitemapPageTest.yml
Normal file
6
tests/GoogleSitemapPageTest.yml
Normal file
@ -0,0 +1,6 @@
|
||||
Page:
|
||||
Page1:
|
||||
Title: Testpage1
|
||||
Priority: 0.2
|
||||
Page2:
|
||||
Title: Testpage2
|
@ -2,6 +2,7 @@
|
||||
|
||||
/**
|
||||
* @package googlesitemaps
|
||||
* @subpackage tests
|
||||
*/
|
||||
class GoogleSitemapTest extends FunctionalTest {
|
||||
|
||||
@ -13,28 +14,56 @@ class GoogleSitemapTest extends FunctionalTest {
|
||||
'GoogleSitemapTest_UnviewableDataObject'
|
||||
);
|
||||
|
||||
function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
if(class_exists('Page')) {
|
||||
$this->loadFixture('googlesitemaps/tests/GoogleSitemapPageTest.yml');
|
||||
}
|
||||
}
|
||||
|
||||
function testItems() {
|
||||
$sitemap = new GoogleSitemap();
|
||||
|
||||
// register a DataObject and see if its aded to the sitemap
|
||||
GoogleSitemap::register_dataobject("GoogleSitemapTest_DataObject", '');
|
||||
|
||||
$this->assertEquals(2, $sitemap->Items()->Count());
|
||||
|
||||
GoogleSitemap::register_dataobject("GoogleSitemapTest_OtherDataObject");
|
||||
$this->assertEquals(3, $sitemap->Items()->Count());
|
||||
|
||||
GoogleSitemap::register_dataobject("GoogleSitemapTest_UnviewableDataObject");
|
||||
$this->assertEquals(3, $sitemap->Items()->Count());
|
||||
}
|
||||
|
||||
function testItemsWithPages() {
|
||||
if(!class_exists('Page')) {
|
||||
$this->markTestIncomplete('No cms module installed, page related test skipped');
|
||||
}
|
||||
|
||||
$sitemap = new GoogleSitemap();
|
||||
|
||||
$page = $this->objFromFixture('Page', 'Page1');
|
||||
$page->publish('Stage', 'Live');
|
||||
$page->flushCache();
|
||||
|
||||
|
||||
$page2 = $this->objFromFixture('Page', 'Page2');
|
||||
$page2->publish('Stage', 'Live');
|
||||
$page2->flushCache();
|
||||
|
||||
$sitemap = new GoogleSitemap();
|
||||
$this->assertDOSEquals(array(
|
||||
array('Title' => 'Testpage1'),
|
||||
array('Title' => 'Testpage2')
|
||||
), $sitemap->Items(), "There should be 2 pages in the sitemap after publishing");
|
||||
|
||||
|
||||
// check if we make a page readonly that it is hidden
|
||||
$page2->CanViewType = 'LoggedInUsers';
|
||||
$page2->write();
|
||||
$page2->publish('Stage', 'Live');
|
||||
|
||||
|
||||
$this->session()->inst_set('loggedInAs', null);
|
||||
|
||||
|
||||
$this->assertDOSEquals(array(
|
||||
array('Title' => 'Testpage1')
|
||||
), $sitemap->Items(), "There should be only 1 page, other is logged in only");
|
||||
@ -59,6 +88,7 @@ class GoogleSitemapTest extends FunctionalTest {
|
||||
GoogleSitemap::enable();
|
||||
|
||||
$response = $this->get('sitemap.xml');
|
||||
|
||||
$this->assertEquals(200, $response->getStatusCode(), 'Sitemap returns a 200 success when enabled');
|
||||
$this->assertEquals('application/xml; charset="utf-8"', $response->getHeader('Content-Type'));
|
||||
|
||||
@ -69,19 +99,27 @@ class GoogleSitemapTest extends FunctionalTest {
|
||||
}
|
||||
|
||||
function testDecoratorAddsFields() {
|
||||
if(!class_exists("Page")) {
|
||||
$this->markTestIncomplete('No cms module installed, page related test skipped');
|
||||
}
|
||||
|
||||
$page = $this->objFromFixture('Page', 'Page1');
|
||||
|
||||
|
||||
$fields = $page->getSettingsFields();
|
||||
$tab = $fields->fieldByName('Root')->fieldByName('Settings')->fieldByName('GoogleSitemap');
|
||||
|
||||
|
||||
$this->assertInstanceOf('Tab', $tab);
|
||||
$this->assertInstanceOf('DropdownField', $tab->fieldByName('Priority'));
|
||||
$this->assertInstanceOf('LiteralField', $tab->fieldByName('GoogleSitemapIntro'));
|
||||
}
|
||||
|
||||
function testGetPriority() {
|
||||
$page = $this->objFromFixture('Page', 'Page1');
|
||||
if(!class_exists("Page")) {
|
||||
$this->markTestIncomplete('No cms module installed, page related test skipped');
|
||||
}
|
||||
|
||||
$page = $this->objFromFixture('Page', 'Page1');
|
||||
|
||||
// invalid field doesn't break google
|
||||
$page->Priority = 'foo';
|
||||
$this->assertEquals(0.5, $page->getPriority());
|
||||
@ -94,6 +132,7 @@ class GoogleSitemapTest extends FunctionalTest {
|
||||
|
||||
/**
|
||||
* @package googlesitemaps
|
||||
* @subpackage tests
|
||||
*/
|
||||
class GoogleSitemapTest_DataObject extends DataObject implements TestOnly {
|
||||
|
||||
@ -112,6 +151,7 @@ class GoogleSitemapTest_DataObject extends DataObject implements TestOnly {
|
||||
|
||||
/**
|
||||
* @package googlesitemaps
|
||||
* @subpackage tests
|
||||
*/
|
||||
class GoogleSitemapTest_OtherDataObject extends DataObject implements TestOnly {
|
||||
|
||||
@ -130,6 +170,7 @@ class GoogleSitemapTest_OtherDataObject extends DataObject implements TestOnly {
|
||||
|
||||
/**
|
||||
* @package googlesitemaps
|
||||
* @subpackage tests
|
||||
*/
|
||||
class GoogleSitemapTest_UnviewableDataObject extends DataObject implements TestOnly {
|
||||
|
||||
|
@ -1,10 +1,3 @@
|
||||
Page:
|
||||
Page1:
|
||||
Title: Testpage1
|
||||
Priority: 0.2
|
||||
Page2:
|
||||
Title: Testpage2
|
||||
|
||||
GoogleSitemapTest_DataObject:
|
||||
DataObjectTest1:
|
||||
Priority: 0.4
|
||||
@ -14,7 +7,7 @@ GoogleSitemapTest_DataObject:
|
||||
GoogleSitemapTest_OtherDataObject:
|
||||
OtherDataObjectTest2:
|
||||
Priority: 0.3
|
||||
|
||||
|
||||
GoogleSitemapTest_UnviewableDataObject:
|
||||
Unviewable1:
|
||||
Priority: 0.4
|
Loading…
Reference in New Issue
Block a user