Passed
Push — master ( 20ba69...1ea7e6 )
by Victor
47s queued 11s
created

testEmbeddedTemplatesShouldHaveTheirPresentersInvoked()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
declare(strict_types=1);
3
4
namespace Shoot\Shoot\Tests\Integration\Embedding;
5
6
use PHPUnit\Framework\MockObject\MockObject;
7
use Shoot\Shoot\PresenterInterface;
8
use Shoot\Shoot\Tests\Integration\IntegrationTestCase;
9
10
final class EmbeddingTest extends IntegrationTestCase
11
{
12
    /** @var PresenterInterface|MockObject */
13
    private $pagePresenter;
14
15
    /** @var string */
16
    protected $templateDirectory = __DIR__ . '/Templates';
17
18
    /**
19
     * @return void
20
     */
21
    protected function setUp()
22
    {
23
        $this->pagePresenter = $this->createMock(PresenterInterface::class);
24
        $this->pagePresenter
25
            ->method('present')
26
            ->will($this->returnArgument(1));
27
28
        $this->addToContainer('PagePresenter', $this->pagePresenter);
29
30
        parent::setUp();
31
    }
32
33
    /**
34
     * @return void
35
     */
36
    public function testEmbeddedTemplatesShouldHaveTheirPresentersInvoked()
37
    {
38
        $output = $this->renderTemplate('page.twig');
39
40
        $this->assertContains('<li><a href="/">Home</a></li>', $output);
41
    }
42
43
    /**
44
     * @return void
45
     */
46
    public function testOverriddenBlocksShouldReceiveVariablesFromParent()
47
    {
48
        $output = $this->renderTemplate('page.twig');
49
50
        $this->assertContains('<h1>page_title</h1>', $output);
51
        $this->assertContains('<p>page_content</p>', $output);
52
    }
53
54
    /**
55
     * @return void
56
     */
57
    public function testEmbeddedTemplatesShouldReceiveVariablesPassedAsArguments()
58
    {
59
        $output = $this->renderTemplate('page.twig');
60
61
        $this->assertContains('<main class="main--overriden">', $output);
62
    }
63
64
    /**
65
     * @return void
66
     */
67
    public function testPresentersShouldOnlyBeCalledOnce()
68
    {
69
        $this->markTestSkipped('Presenters should only be called once: currently fails, fix pending.');
70
71
        $this->pagePresenter
72
            ->expects($this->once())
73
            ->method('present');
74
75
        $this->renderTemplate('page.twig');
76
    }
77
}
78