From 022109c3347d3a2b76a6bae978f2d580981b6acd Mon Sep 17 00:00:00 2001 From: Cameron Date: Sat, 4 May 2019 14:56:21 -0700 Subject: [PATCH] test for e107::getTemplate() --- tests/unit/e107Test.php | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/tests/unit/e107Test.php b/tests/unit/e107Test.php index 695c527a1..1d625e98e 100644 --- a/tests/unit/e107Test.php +++ b/tests/unit/e107Test.php @@ -685,13 +685,36 @@ $res = null; $this->assertTrue($res); } - +*/ + /** + * This test checks getTemplate() use on loading between the core download plugin template and the _blank theme download template + */ public function testGetTemplate() { - $res = null; - $this->assertTrue($res); - } + e107::getConfig()->set('sitetheme', '_blank'); + $template = e107::getTemplate('download', null, null); // theme override is enabled by default. + $this->assertEquals('{DOWNLOAD_BREADCRUMB} Custom', $template['header']); // ie. should be from _blank theme download template (override of plugin). + $footer = is_null($template['footer']); // theme overrides everything, since merge is not enabled. theme does not contain 'footer'. + $this->assertTrue($footer); + + $template = e107::getTemplate('download', null, null, false); // theme override is disabled. + $this->assertEquals("{DOWNLOAD_BREADCRUMB}", $template['header']); // ie. should be from plugin template, not theme. + $this->assertEquals('', $template['footer']); // main plugin template is active, since override is false. 'footer' is set. + + $template = e107::getTemplate('download', null, null, true, true); // theme override is enabled, and theme merge is enabled. + $this->assertEquals("{DOWNLOAD_BREADCRUMB} Custom", $template['header']); //from theme + $this->assertEquals("", $template['footer']); // 'footer' missing from theme, so plugin template used. ie. arrays have been merged. + + $template = e107::getTemplate('download', null, null, false, true); // theme override is disabled, theme merge is enabled. + $this->assertEquals("{DOWNLOAD_BREADCRUMB}", $template['header']); // ie. should be from plugin template, not theme. + // $this->assertEquals("test", $template['other']); // 'test' is missing from plugin template, but merge is enabled. Not an override of plugin template key so merge is okay. + // FIXME above.. + // var_dump($template['other']); + + + } +/* public function testTemplateWrapper() { $res = null;