For more information about this repository, visit the project page at https://www.drupal.org/project/twig_tweak
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
3.5 KiB
140 lines
3.5 KiB
<?php |
|
|
|
namespace Drupal\Tests\twig_tweak\Kernel; |
|
|
|
use Drupal\Core\Cache\Cache; |
|
use Drupal\node\Entity\Node; |
|
use Drupal\node\Entity\NodeType; |
|
use Drupal\Tests\user\Traits\UserCreationTrait; |
|
|
|
/** |
|
* A test for FieldViewBuilder. |
|
* |
|
* @group twig_tweak |
|
*/ |
|
final class FieldViewBuilderTest extends AbstractTestCase { |
|
|
|
use UserCreationTrait; |
|
|
|
/** |
|
* {@inheritdoc} |
|
*/ |
|
protected static $modules = [ |
|
'twig_tweak', |
|
'twig_tweak_test', |
|
'user', |
|
'system', |
|
'node', |
|
]; |
|
|
|
/** |
|
* {@inheritdoc} |
|
*/ |
|
public function setUp(): void { |
|
parent::setUp(); |
|
$this->installEntitySchema('node'); |
|
$this->setUpCurrentUser(['name' => 'User 1'], ['access content']); |
|
NodeType::create(['type' => 'article'])->save(); |
|
} |
|
|
|
/** |
|
* Test callback. |
|
*/ |
|
public function testFieldViewBuilder(): void { |
|
|
|
$view_builder = $this->container->get('twig_tweak.field_view_builder'); |
|
|
|
$values = [ |
|
'type' => 'article', |
|
'title' => 'Public node', |
|
]; |
|
$public_node = Node::create($values); |
|
$public_node->save(); |
|
|
|
$values = [ |
|
'type' => 'article', |
|
'title' => 'Private node', |
|
]; |
|
$private_node = Node::create($values); |
|
$private_node->save(); |
|
|
|
// -- Full mode. |
|
$build = $view_builder->build($public_node, 'title'); |
|
|
|
self::assertArrayHasKey(0, $build); |
|
$expected_cache = [ |
|
'contexts' => [ |
|
'user', |
|
'user.permissions', |
|
], |
|
'tags' => [ |
|
'node:1', |
|
'tag_from_twig_tweak_test_node_access', |
|
], |
|
'max-age' => 50, |
|
]; |
|
self::assertCache($expected_cache, $build['#cache']); |
|
|
|
self::assertSame('<span>Public node</span>', $this->renderPlain($build)); |
|
|
|
// -- Custom mode. |
|
$build = $view_builder->build($public_node, 'title', ['settings' => ['link_to_entity' => TRUE]]); |
|
|
|
self::assertArrayHasKey(0, $build); |
|
$expected_cache = [ |
|
'contexts' => [ |
|
'user', |
|
'user.permissions', |
|
], |
|
'tags' => [ |
|
'node:1', |
|
'tag_from_twig_tweak_test_node_access', |
|
], |
|
'max-age' => 50, |
|
]; |
|
self::assertCache($expected_cache, $build['#cache']); |
|
$expected_html = '<span><a href="/node/1" hreflang="en">Public node</a></span>'; |
|
self::assertSame($expected_html, $this->renderPlain($build)); |
|
|
|
// -- Private node with access check. |
|
$build = $view_builder->build($private_node, 'title'); |
|
|
|
self::assertArrayNotHasKey(0, $build); |
|
$expected_cache = [ |
|
'contexts' => [ |
|
'user', |
|
'user.permissions', |
|
], |
|
'tags' => [ |
|
'node:2', |
|
'tag_from_twig_tweak_test_node_access', |
|
], |
|
'max-age' => 50, |
|
]; |
|
self::assertCache($expected_cache, $build['#cache']); |
|
self::assertSame('', $this->renderPlain($build)); |
|
|
|
// -- Private node without access check. |
|
$build = $view_builder->build($private_node, 'title', 'full', NULL, FALSE); |
|
|
|
self::assertArrayHasKey(0, $build); |
|
$expected_cache = [ |
|
'contexts' => [], |
|
'tags' => ['node:2'], |
|
'max-age' => Cache::PERMANENT, |
|
]; |
|
self::assertSame($expected_cache, $build['#cache']); |
|
self::assertSame('<span>Private node</span>', $this->renderPlain($build)); |
|
} |
|
|
|
/** |
|
* Renders a render array. |
|
*/ |
|
private function renderPlain(array $build): string { |
|
$actual_html = $this->container->get('renderer')->renderPlain($build); |
|
$actual_html = preg_replace('#<footer>.+</footer>#s', '', $actual_html); |
|
$actual_html = preg_replace(['#\s{2,}#', '#\n#'], '', $actual_html); |
|
return $actual_html; |
|
} |
|
|
|
}
|
|
|