aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-11-22 00:13:13 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-11-22 03:42:48 +0100
commit5d3f0a9abbfe9678a9b5b480d1bbdfae69384018 (patch)
tree6b98cc1833793403bca435076ce56d3084d58210 /tests/template
parent47d3865fa6097e5c1925ef3af96ec124e8c78d68 (diff)
downloadforums-5d3f0a9abbfe9678a9b5b480d1bbdfae69384018.tar
forums-5d3f0a9abbfe9678a9b5b480d1bbdfae69384018.tar.gz
forums-5d3f0a9abbfe9678a9b5b480d1bbdfae69384018.tar.bz2
forums-5d3f0a9abbfe9678a9b5b480d1bbdfae69384018.tar.xz
forums-5d3f0a9abbfe9678a9b5b480d1bbdfae69384018.zip
[ticket/13359] Add phpbb\template\twig\environment to template constructor
PHPBB3-13359
Diffstat (limited to 'tests/template')
-rw-r--r--tests/template/template_includecss_test.php30
1 files changed, 29 insertions, 1 deletions
diff --git a/tests/template/template_includecss_test.php b/tests/template/template_includecss_test.php
index 49bd9dec8b..a8db74c3f1 100644
--- a/tests/template/template_includecss_test.php
+++ b/tests/template/template_includecss_test.php
@@ -15,6 +15,12 @@ require_once dirname(__FILE__) . '/template_test_case_with_tree.php';
class phpbb_template_template_includecss_test extends phpbb_template_template_test_case_with_tree
{
+ /** @var \phpbb\path_helper */
+ protected $phpbb_path_helper;
+
+ /** @var string */
+ protected $parent_template_path;
+
protected function setup_engine(array $new_config = array())
{
global $phpbb_root_path, $phpEx, $user;
@@ -34,11 +40,32 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te
$this->template_path = $this->test_path . '/templates';
$this->parent_template_path = $this->test_path . '/parent_templates';
+ $container = new phpbb_mock_container_builder();
+ $cache_path = $phpbb_root_path . 'cache/twig';
+ $context = new \phpbb\template\context();
+ $loader = new \phpbb\template\twig\loader('');
+ $twig = new \phpbb\template\twig\environment(
+ $config,
+ $this->phpbb_path_helper,
+ $container,
+ $cache_path,
+ null,
+ $loader,
+ array(
+ 'cache' => false,
+ 'debug' => false,
+ 'auto_reload' => true,
+ 'autoescape' => false,
+ )
+ );
$this->template = new phpbb\template\twig\twig(
$this->phpbb_path_helper,
$config,
$user,
- new phpbb\template\context(),
+ $context,
+ $twig,
+ $cache_path,
+ array(new \phpbb\template\twig\extension($context, $this->user)),
new phpbb_mock_extension_manager(
dirname(__FILE__) . '/',
array(
@@ -50,6 +77,7 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te
)
)
);
+ $container->set('template.twig.lexer', new \phpbb\template\twig\lexer($twig));
$this->template->set_custom_style('tests', array($this->template_path, $this->parent_template_path));
}