2011-03-24 11:30:57 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Tests for the {@link SS_TemplateLoader} class.
|
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2011-03-24 11:30:57 +01:00
|
|
|
* @subpackage tests
|
|
|
|
*/
|
|
|
|
class TemplateLoaderTest extends SapphireTest {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
private $base;
|
|
|
|
private $manifest;
|
|
|
|
private $loader;
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Set up manifest before each test
|
|
|
|
*/
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
$this->base = dirname(__FILE__) . '/fixtures/templatemanifest';
|
|
|
|
$this->manifest = new SS_TemplateManifest($this->base, 'myproject', false, true);
|
|
|
|
$this->loader = new SS_TemplateLoader();
|
|
|
|
$this->refreshLoader();
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that 'main' and 'Layout' templates are loaded from module
|
|
|
|
*/
|
|
|
|
public function testFindTemplatesInModule() {
|
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/module/templates/Page.ss",
|
|
|
|
'Layout' => "$this->base/module/templates/Layout/Page.ss"
|
2011-03-24 11:30:57 +01:00
|
|
|
);
|
2014-01-13 21:33:22 +01:00
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('Page'));
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('PAGE'));
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates(array('Foo', 'Page')));
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that 'main' and 'Layout' templates are loaded from set theme
|
|
|
|
*/
|
|
|
|
public function testFindTemplatesInTheme() {
|
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/themes/theme/templates/Page.ss",
|
|
|
|
'Layout' => "$this->base/themes/theme/templates/Layout/Page.ss"
|
2011-03-24 11:30:57 +01:00
|
|
|
);
|
2014-01-13 21:33:22 +01:00
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('Page', 'theme'));
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('PAGE', 'theme'));
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates(array('Foo', 'Page'), 'theme'));
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that 'main' and 'Layout' templates are loaded from project without a set theme
|
|
|
|
*/
|
|
|
|
public function testFindTemplatesInApplication() {
|
|
|
|
$templates = array(
|
|
|
|
$this->base . '/myproject/templates/Page.ss',
|
|
|
|
$this->base . '/myproject/templates/Layout/Page.ss'
|
2011-03-24 11:30:57 +01:00
|
|
|
);
|
2014-01-13 21:33:22 +01:00
|
|
|
$this->createTestTemplates($templates);
|
|
|
|
$this->refreshLoader();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/myproject/templates/Page.ss",
|
|
|
|
'Layout' => "$this->base/myproject/templates/Layout/Page.ss"
|
2013-04-29 17:19:51 +02:00
|
|
|
);
|
2014-01-13 21:33:22 +01:00
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('Page'));
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('PAGE'));
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates(array('Foo', 'Page')));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
$this->removeTestTemplates($templates);
|
2011-03-24 11:30:57 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that 'Layout' template is loaded from module
|
|
|
|
*/
|
|
|
|
public function testFindTemplatesInModuleLayout() {
|
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/module/templates/Layout/Page.ss"
|
|
|
|
);
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('Layout/Page'));
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that 'Layout' template is loaded from theme
|
|
|
|
*/
|
|
|
|
public function testFindTemplatesInThemeLayout() {
|
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/themes/theme/templates/Layout/Page.ss"
|
|
|
|
);
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('Layout/Page', 'theme'));
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that 'main' template is found in theme and 'Layout' is found in module
|
|
|
|
*/
|
|
|
|
public function testFindTemplatesMainThemeLayoutModule() {
|
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/themes/theme/templates/CustomThemePage.ss",
|
|
|
|
'Layout' => "$this->base/module/templates/Layout/CustomThemePage.ss"
|
|
|
|
);
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates(array('CustomThemePage', 'Page'), 'theme'));
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that project template overrides module template of same name
|
|
|
|
*/
|
2012-11-02 08:28:39 +01:00
|
|
|
public function testFindTemplatesApplicationOverridesModule() {
|
2014-01-13 21:33:22 +01:00
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/myproject/templates/CustomTemplate.ss"
|
2012-11-02 08:28:39 +01:00
|
|
|
);
|
2014-01-13 21:33:22 +01:00
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('CustomTemplate'));
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that project templates overrides theme templates
|
|
|
|
*/
|
|
|
|
public function testFindTemplatesApplicationOverridesTheme() {
|
|
|
|
$templates = array(
|
|
|
|
$this->base . '/myproject/templates/Page.ss',
|
|
|
|
$this->base . '/myproject/templates/Layout/Page.ss'
|
|
|
|
);
|
|
|
|
$this->createTestTemplates($templates);
|
|
|
|
$this->refreshLoader();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/myproject/templates/Page.ss",
|
|
|
|
'Layout' => "$this->base/myproject/templates/Layout/Page.ss"
|
|
|
|
);
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('Page'), 'theme');
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
$this->removeTestTemplates($templates);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that project 'Layout' template overrides theme 'Layout' template
|
|
|
|
*/
|
|
|
|
public function testFindTemplatesApplicationLayoutOverridesThemeLayout() {
|
|
|
|
$templates = array(
|
|
|
|
$this->base . '/myproject/templates/Layout/Page.ss'
|
|
|
|
);
|
|
|
|
$this->createTestTemplates($templates);
|
|
|
|
$this->refreshLoader();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/themes/theme/templates/Page.ss",
|
|
|
|
'Layout' => "$this->base/myproject/templates/Layout/Page.ss"
|
|
|
|
);
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('Page', 'theme'));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
$this->removeTestTemplates($templates);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
/**
|
|
|
|
* Test that project 'main' template overrides theme 'main' template
|
|
|
|
*/
|
|
|
|
public function testFindTemplatesApplicationMainOverridesThemeMain() {
|
|
|
|
$templates = array(
|
|
|
|
$this->base . '/myproject/templates/Page.ss'
|
|
|
|
);
|
|
|
|
$this->createTestTemplates($templates);
|
|
|
|
$this->refreshLoader();
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
$expect = array(
|
|
|
|
'main' => "$this->base/myproject/templates/Page.ss",
|
|
|
|
'Layout' => "$this->base/themes/theme/templates/Layout/Page.ss"
|
|
|
|
);
|
|
|
|
$this->assertEquals($expect, $this->loader->findTemplates('Page', 'theme'));
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
$this->removeTestTemplates($templates);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
protected function refreshLoader() {
|
|
|
|
$this->manifest->regenerate(false);
|
|
|
|
$this->loader->pushManifest($this->manifest);
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
protected function createTestTemplates($templates) {
|
|
|
|
foreach ($templates as $template) {
|
|
|
|
file_put_contents($template, '');
|
|
|
|
}
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2014-01-13 21:33:22 +01:00
|
|
|
protected function removeTestTemplates($templates) {
|
|
|
|
foreach ($templates as $template) {
|
|
|
|
unlink($template);
|
|
|
|
}
|
2012-11-02 08:28:39 +01:00
|
|
|
}
|
|
|
|
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|