2011-03-18 04:17:04 +01:00
|
|
|
<?php
|
2016-06-16 06:57:19 +02:00
|
|
|
|
2017-06-21 06:29:40 +02:00
|
|
|
use SilverStripe\CMS\Controllers\ContentController;
|
2016-07-22 01:32:32 +02:00
|
|
|
use SilverStripe\CMS\Controllers\RootURLController;
|
|
|
|
use SilverStripe\CMS\Model\SiteTree;
|
2016-08-23 04:36:06 +02:00
|
|
|
use SilverStripe\Control\Director;
|
2016-09-09 01:26:24 +02:00
|
|
|
use SilverStripe\Control\HTTPResponse_Exception;
|
2017-06-21 06:29:40 +02:00
|
|
|
use SilverStripe\Core\Config\Config;
|
2016-08-23 04:36:06 +02:00
|
|
|
use SilverStripe\Dev\FunctionalTest;
|
2017-06-21 06:29:40 +02:00
|
|
|
use SilverStripe\Versioned\Versioned;
|
2016-06-16 06:57:19 +02:00
|
|
|
|
2011-03-18 04:17:04 +01:00
|
|
|
/**
|
2011-03-22 10:47:26 +01:00
|
|
|
* @package cms
|
2011-03-18 04:17:04 +01:00
|
|
|
* @subpackage tests
|
|
|
|
*/
|
2017-01-25 21:59:25 +01:00
|
|
|
class ContentControllerTest extends FunctionalTest
|
|
|
|
{
|
2016-01-06 00:42:07 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
protected static $fixture_file = 'ContentControllerTest.yml';
|
2016-01-06 00:42:07 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
protected static $use_draft_site = true;
|
2014-02-07 03:56:20 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
protected static $disable_themes = true;
|
2016-01-06 00:42:07 +01:00
|
|
|
|
2017-06-21 06:29:40 +02:00
|
|
|
protected static $extra_dataobjects = [
|
|
|
|
ContentControllerTest_Page::class,
|
|
|
|
ContentControllerTestPage::class,
|
|
|
|
ContentControllerTestPageWithoutController::class,
|
|
|
|
];
|
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
/**
|
|
|
|
* Test that nested pages, basic actions, and nested/non-nested URL switching works properly
|
|
|
|
*/
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
public function testNestedPages()
|
|
|
|
{
|
|
|
|
RootURLController::reset();
|
2017-07-17 07:19:00 +02:00
|
|
|
Config::modify()->set(SiteTree::class, 'nested_urls', true);
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals('Home Page', $this->get('/')->getBody());
|
|
|
|
$this->assertEquals('Home Page', $this->get('/home/index/')->getBody());
|
|
|
|
$this->assertEquals('Home Page', $this->get('/home/second-index/')->getBody());
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals('Second Level Page', $this->get('/home/second-level/')->getBody());
|
|
|
|
$this->assertEquals('Second Level Page', $this->get('/home/second-level/index/')->getBody());
|
|
|
|
$this->assertEquals('Second Level Page', $this->get('/home/second-level/second-index/')->getBody());
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals('Third Level Page', $this->get('/home/second-level/third-level/')->getBody());
|
|
|
|
$this->assertEquals('Third Level Page', $this->get('/home/second-level/third-level/index/')->getBody());
|
|
|
|
$this->assertEquals('Third Level Page', $this->get('/home/second-level/third-level/second-index/')->getBody());
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
RootURLController::reset();
|
2017-07-17 07:19:00 +02:00
|
|
|
Config::modify()->set(SiteTree::class, 'nested_urls', false);
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals('Home Page', $this->get('/')->getBody());
|
|
|
|
$this->assertEquals('Home Page', $this->get('/home/')->getBody());
|
|
|
|
$this->assertEquals('Home Page', $this->get('/home/second-index/')->getBody());
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals('Second Level Page', $this->get('/second-level/')->getBody());
|
|
|
|
$this->assertEquals('Second Level Page', $this->get('/second-level/index/')->getBody());
|
|
|
|
$this->assertEquals('Second Level Page', $this->get('/second-level/second-index/')->getBody());
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals('Third Level Page', $this->get('/third-level/')->getBody());
|
|
|
|
$this->assertEquals('Third Level Page', $this->get('/third-level/index/')->getBody());
|
|
|
|
$this->assertEquals('Third Level Page', $this->get('/third-level/second-index/')->getBody());
|
|
|
|
}
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
/**
|
|
|
|
* Tests {@link ContentController::ChildrenOf()}
|
|
|
|
*/
|
|
|
|
public function testChildrenOf()
|
|
|
|
{
|
|
|
|
$controller = new ContentController();
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-07-17 07:19:00 +02:00
|
|
|
Config::modify()->set(SiteTree::class, 'nested_urls', true);
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals(1, $controller->ChildrenOf('/')->Count());
|
|
|
|
$this->assertEquals(1, $controller->ChildrenOf('/home/')->Count());
|
|
|
|
$this->assertEquals(2, $controller->ChildrenOf('/home/second-level/')->Count());
|
|
|
|
$this->assertEquals(0, $controller->ChildrenOf('/home/second-level/third-level/')->Count());
|
|
|
|
|
|
|
|
SiteTree::config()->nested_urls = false;
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$this->assertEquals(1, $controller->ChildrenOf('/')->Count());
|
|
|
|
$this->assertEquals(1, $controller->ChildrenOf('/home/')->Count());
|
|
|
|
$this->assertEquals(2, $controller->ChildrenOf('/second-level/')->Count());
|
|
|
|
$this->assertEquals(0, $controller->ChildrenOf('/third-level/')->Count());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDeepNestedURLs()
|
|
|
|
{
|
2017-07-17 07:19:00 +02:00
|
|
|
Config::modify()->set(SiteTree::class, 'nested_urls', true);
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$page = new Page();
|
|
|
|
$page->URLSegment = 'base-page';
|
|
|
|
$page->write();
|
|
|
|
|
|
|
|
for ($i = 0; $i < 10; $i++) {
|
|
|
|
$parentID = $page->ID;
|
2011-03-18 04:17:04 +01:00
|
|
|
|
2017-01-25 21:59:25 +01:00
|
|
|
$page = new ContentControllerTest_Page();
|
|
|
|
$page->ParentID = $parentID;
|
|
|
|
$page->Title = "Page Level $i";
|
|
|
|
$page->URLSegment = "level-$i";
|
|
|
|
$page->write();
|
|
|
|
|
|
|
|
$relativeLink = Director::makeRelative($page->Link());
|
|
|
|
$this->assertEquals($page->Title, $this->get($relativeLink)->getBody());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SiteTree::config()->nested_urls = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testViewDraft()
|
|
|
|
{
|
|
|
|
|
|
|
|
// test when user does not have permission, should get login form
|
|
|
|
$this->logInWithPermission('EDITOR');
|
|
|
|
try {
|
|
|
|
$response = $this->get('/contact/?stage=Stage');
|
|
|
|
} catch (HTTPResponse_Exception $responseException) {
|
|
|
|
$response = $responseException->getResponse();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertEquals('403', $response->getstatusCode());
|
|
|
|
|
|
|
|
// test when user does have permission, should show page title and header ok.
|
|
|
|
$this->logInWithPermission('ADMIN');
|
2017-06-21 06:29:40 +02:00
|
|
|
$this->assertEquals('200', $this->get('contact/?stage=Stage')->getstatusCode());
|
2017-01-25 21:59:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testLinkShortcodes()
|
|
|
|
{
|
|
|
|
$linkedPage = new SiteTree();
|
|
|
|
$linkedPage->URLSegment = 'linked-page';
|
|
|
|
$linkedPage->write();
|
|
|
|
$linkedPage->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
|
|
|
|
$page = new SiteTree();
|
|
|
|
$page->URLSegment = 'linking-page';
|
|
|
|
$page->Content = sprintf('<a href="[sitetree_link,id=%s]">Testlink</a>', $linkedPage->ID);
|
|
|
|
$page->write();
|
|
|
|
$page->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
|
|
|
|
$this->assertContains(
|
|
|
|
sprintf('<a href="%s">Testlink</a>', $linkedPage->Link()),
|
|
|
|
$this->get($page->RelativeLink())->getBody(),
|
|
|
|
'"sitetree_link" shortcodes get parsed properly'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests that {@link ContentController::getViewer()} chooses the correct templates.
|
|
|
|
*
|
|
|
|
* @covers SilverStripe\CMS\Controllers\ContentController::getViewer()
|
|
|
|
**/
|
|
|
|
public function testGetViewer()
|
|
|
|
{
|
|
|
|
|
|
|
|
$self = $this;
|
|
|
|
$this->useTestTheme(dirname(__FILE__), 'controllertest', function () use ($self) {
|
|
|
|
|
|
|
|
// Test a page without a controller (ContentControllerTest_PageWithoutController.ss)
|
|
|
|
$page = new ContentControllerTestPageWithoutController();
|
|
|
|
$page->URLSegment = "test";
|
|
|
|
$page->write();
|
|
|
|
$page->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
|
|
|
|
$response = $self->get($page->RelativeLink());
|
|
|
|
$self->assertEquals("ContentControllerTestPageWithoutController", trim($response->getBody()));
|
|
|
|
|
|
|
|
// // This should fall over to user Page.ss
|
|
|
|
$page = new ContentControllerTestPage();
|
|
|
|
$page->URLSegment = "test";
|
|
|
|
$page->write();
|
|
|
|
$page->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
|
|
|
|
$response = $self->get($page->RelativeLink());
|
|
|
|
$self->assertEquals("Page", trim($response->getBody()));
|
|
|
|
|
|
|
|
|
|
|
|
// Test that the action template is rendered.
|
|
|
|
$page = new ContentControllerTestPage();
|
|
|
|
$page->URLSegment = "page-without-controller";
|
|
|
|
$page->write();
|
|
|
|
$page->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
|
|
|
|
$response = $self->get($page->RelativeLink("test"));
|
|
|
|
$self->assertEquals("ContentControllerTestPage_test", trim($response->getBody()));
|
|
|
|
|
|
|
|
// Test that an action without a template will default to the index template, which is
|
|
|
|
// to say the default Page.ss template
|
|
|
|
$response = $self->get($page->RelativeLink("testwithouttemplate"));
|
|
|
|
$self->assertEquals("Page", trim($response->getBody()));
|
|
|
|
|
|
|
|
// Test that an action with a template will render the both action template *and* the
|
|
|
|
// correct parent template
|
|
|
|
$controller = new ContentController($page);
|
|
|
|
$viewer = $controller->getViewer('test');
|
|
|
|
$templateList = array('ContentControllerTestPage_test', 'Page');
|
|
|
|
$self->assertEquals(dirname(__FILE__).'/themes/controllertest/templates/ContentControllerTestPage_test.ss', $viewer->templates()['main']);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|