container->get('renderer'); /** @var \Drupal\Core\Template\TwigEnvironment $environment */ $environment = \Drupal::service('twig'); $this->assertEqual($environment->renderInline('test-no-context'), 'test-no-context'); $this->assertEqual($environment->renderInline('test-with-context {{ llama }}', ['llama' => 'muuh']), 'test-with-context muuh'); $element = []; $unsafe_string = ''; $element['test'] = [ '#type' => 'inline_template', '#template' => 'test-with-context ', '#context' => ['unsafe_content' => $unsafe_string], ]; $this->assertEqual($renderer->renderRoot($element), 'test-with-context '); // Enable twig_auto_reload and twig_debug. $settings = Settings::getAll(); $settings['twig_debug'] = TRUE; $settings['twig_auto_reload'] = TRUE; new Settings($settings); $this->container = \Drupal::service('kernel')->rebuildContainer(); \Drupal::setContainer($this->container); $element = []; $element['test'] = [ '#type' => 'inline_template', '#template' => 'test-with-context {{ llama }}', '#context' => ['llama' => 'muuh'], ]; $element_copy = $element; // Render it twice so that twig caching is triggered. $this->assertEqual($renderer->renderRoot($element), 'test-with-context muuh'); $this->assertEqual($renderer->renderRoot($element_copy), 'test-with-context muuh'); // Tests caching of inline templates with long content to ensure the // generated cache key can be used as a filename. $element = []; $element['test'] = [ '#type' => 'inline_template', '#template' => 'Llamas sometimes spit and wrestle with their {{ llama }}. Kittens are soft and fuzzy and they sometimes say {{ kitten }}. Flamingos have long legs and they are usually {{ flamingo }}. Pandas eat bamboo and they are {{ panda }}. Giraffes have long necks and long tongues and they eat {{ giraffe }}.', '#context' => [ 'llama' => 'necks', 'kitten' => 'meow', 'flamingo' => 'pink', 'panda' => 'bears', 'giraffe' => 'leaves', ], ]; $expected = 'Llamas sometimes spit and wrestle with their necks. Kittens are soft and fuzzy and they sometimes say meow. Flamingos have long legs and they are usually pink. Pandas eat bamboo and they are bears. Giraffes have long necks and long tongues and they eat leaves.'; $element_copy = $element; // Render it twice so that twig caching is triggered. $this->assertEqual($renderer->renderRoot($element), $expected); $this->assertEqual($renderer->renderRoot($element_copy), $expected); $name = '{# inline_template_start #}' . $element['test']['#template']; $prefix = $environment->getTwigCachePrefix(); $cache = $environment->getCache(); $class = $environment->getTemplateClass($name); $expected = $prefix . '_inline-template_' . substr(Crypt::hashBase64($class), 0, TwigPhpStorageCache::SUFFIX_SUBSTRING_LENGTH); $this->assertEqual($expected, $cache->generateKey($name, $class)); } /** * Tests that exceptions are thrown when a template is not found. */ public function testTemplateNotFoundException() { /** @var \Drupal\Core\Template\TwigEnvironment $environment */ $environment = \Drupal::service('twig'); try { $environment->loadTemplate('this-template-does-not-exist.html.twig')->render([]); $this->fail('Did not throw an exception as expected.'); } catch (\Twig_Error_Loader $e) { $this->assertTrue(strpos($e->getMessage(), 'Template "this-template-does-not-exist.html.twig" is not defined') === 0); } } /** * Ensures that cacheFilename() varies by extensions + deployment identifier. */ public function testCacheFilename() { /** @var \Drupal\Core\Template\TwigEnvironment $environment */ // Note: Later we refetch the twig service in order to bypass its internal // static cache. $environment = \Drupal::service('twig'); // A template basename greater than the constant // TwigPhpStorageCache::SUFFIX_SUBSTRING_LENGTH should get truncated. $cache = $environment->getCache(); $long_name = 'core/modules/system/templates/block--system-messages-block.html.twig'; $this->assertGreaterThan(TwigPhpStorageCache::SUFFIX_SUBSTRING_LENGTH, strlen(basename($long_name))); $class = $environment->getTemplateClass($long_name); $key = $cache->generateKey($long_name, $class); $prefix = $environment->getTwigCachePrefix(); // The key should consist of the prefix, an underscore, and two strings // each truncated to length TwigPhpStorageCache::SUFFIX_SUBSTRING_LENGTH // separated by an underscore. $expected = strlen($prefix) + 2 + 2 * TwigPhpStorageCache::SUFFIX_SUBSTRING_LENGTH; $this->assertEquals($expected, strlen($key)); $original_filename = $environment->getCacheFilename('core/modules/system/templates/container.html.twig'); \Drupal::getContainer()->set('twig', NULL); \Drupal::service('module_installer')->install(['twig_extension_test']); $environment = \Drupal::service('twig'); $new_extension_filename = $environment->getCacheFilename('core/modules/system/templates/container.html.twig'); \Drupal::getContainer()->set('twig', NULL); $this->assertNotEqual($new_extension_filename, $original_filename); } }