-
-
Notifications
You must be signed in to change notification settings - Fork 414
Expand file tree
/
Copy pathInteractsWithTwigComponentsTest.php
More file actions
94 lines (82 loc) · 3.16 KB
/
InteractsWithTwigComponentsTest.php
File metadata and controls
94 lines (82 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\UX\TwigComponent\Tests\Integration\Test;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
use Symfony\UX\TwigComponent\Test\InteractsWithTwigComponents;
use Symfony\UX\TwigComponent\Tests\Fixtures\Component\ComponentA;
use Symfony\UX\TwigComponent\Tests\Fixtures\Component\WithSlots;
use Symfony\UX\TwigComponent\Tests\Fixtures\Component\WithSlotsAndLimitedScope;
use Symfony\UX\TwigComponent\Tests\Fixtures\Service\ServiceA;
final class InteractsWithTwigComponentsTest extends KernelTestCase
{
use InteractsWithTwigComponents;
/**
* @dataProvider componentANameProvider
*/
public function testCanMountComponent(string $name)
{
$component = $this->mountTwigComponent($name, [
'propA' => 'prop a value',
'propB' => 'prop b value',
]);
$this->assertInstanceof(ComponentA::class, $component);
$this->assertInstanceOf(ServiceA::class, $component->getService());
$this->assertSame('prop a value', $component->propA);
$this->assertSame('prop b value', $component->getPropB());
}
/**
* @dataProvider componentANameProvider
*/
public function testCanRenderComponent(string $name)
{
$rendered = $this->renderTwigComponent($name, [
'propA' => 'prop a value',
'propB' => 'prop b value',
]);
$this->assertStringContainsString('propA: prop a value', $rendered);
$this->assertStringContainsString('propB: prop b value', $rendered);
$this->assertStringContainsString('service: service a value', $rendered);
$this->assertCount(2, $rendered->crawler()->filter('ul li'));
}
/**
* @dataProvider withSlotsNameProvider
*/
public function testCanRenderComponentWithSlots(string $name)
{
$rendered = $this->renderTwigComponent(
name: $name,
content: '<p>some content</p>',
blocks: [
'slot1' => '<p>some slot1 content</p>',
'slot2' => $this->renderTwigComponent('component_a', [
'propA' => 'prop a value',
'propB' => 'prop b value',
]),
],
);
$this->assertStringContainsString('<p>some content</p>', $rendered);
$this->assertStringContainsString('<p>some slot1 content</p>', $rendered);
$this->assertStringContainsString('propA: prop a value', $rendered);
$this->assertStringContainsString('propB: prop b value', $rendered);
$this->assertStringContainsString('service: service a value', $rendered);
}
public static function componentANameProvider(): iterable
{
yield ['component_a'];
yield [ComponentA::class];
}
public static function withSlotsNameProvider(): iterable
{
yield ['WithSlots'];
yield [WithSlots::class];
yield ['WithSlotsAndLimitedScope'];
yield [WithSlotsAndLimitedScope::class];
}
}