aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/lib/flexi/TemplateMagicMethodsTest.php
blob: ad2690a743064d061c6a4860d31fa659889f577c (plain)
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
<?php

use Flexi\Factory;
use Flexi\Template;

final class TemplateMagicMethodsTestCase extends \Codeception\Test\Unit
{
    private Factory $factory;

    public function setUp(): void
    {
        $this->factory = $this->make(Factory::class, [
            'open' => $this->make(Template::class),
        ]);
        $this->template = $this->factory->open('');
    }

    public function tearDown(): void
    {
        unset($this->factory);
        unset($this->template);
    }

    public function testShouldSetAnAttributeUsingTheMagicMethods()
    {
        $this->template->foo = 'bar';
        $this->assertEquals('bar', $this->template->get_attribute('foo'));
    }

    public function testShouldNotSetAProtectedMemberFieldAsAnAttribute()
    {
        $this->template->layout = 'bar';
        $this->assertEquals('bar', $this->template->layout);
        $this->assertNotEquals('bar', $this->template->get_layout());
    }

    public function testShouldOverwriteAnAttribute()
    {
        $this->template->set_attribute('foo', 'bar');
        $this->template->foo = 'baz';
        $this->assertEquals('baz', $this->template->get_attribute('foo'));
    }

    public function testShouldReturnAnExistingAttributeUsingTheMagicMethods()
    {
        $this->template->set_attribute('foo', 'bar');
        $this->assertEquals('bar', $this->template->foo);
    }

    public function testShouldReturnNullForANonExistingAttributeUsingTheMagicMethods()
    {
        $this->assertNull($this->template->foo);
    }

    public function testShouldUnsetAnAttributeUsingTheMagicMethods()
    {
        $this->template->foo = 'bar';
        unset($this->template->foo);
        $this->assertNull($this->template->foo);
    }

    public function testShouldReturnNullOnUnsettingANonAttribute()
    {
        unset($this->template->foo);
        $this->assertNull($this->template->foo);
    }

    public function testShouldReturnTrueOnIssetForAnAttribute()
    {
        $this->template->foo = 'bar';
        $this->assertTrue(isset($this->template->foo));
    }

    public function testShouldReturnFalseOnIssetForANonExistingAttribute()
    {
        $this->assertFalse(isset($this->template->foo));
    }
}