File size: 3,202 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
95
96
<?php

declare(strict_types=1);

namespace Mautic\EmailBundle\Tests\Helper\DTO;

use Mautic\EmailBundle\Helper\DTO\AddressDTO;
use Mautic\EmailBundle\Helper\Exception\TokenNotFoundOrEmptyException;
use PHPUnit\Framework\TestCase;

class AddressDTOTest extends TestCase
{
    public function testNameTokenReturnsTrue(): void
    {
        $this->assertTrue(AddressDTO::fromAddressArray(['[email protected]' => '{contactfield=other_name}'])->isNameTokenized());
    }

    public function testNameTokenReturnsFalse(): void
    {
        $this->assertFalse((new AddressDTO('[email protected]', 'Someone Somewhere'))->isNameTokenized());
    }

    public function testNameTokenEmptyThrowsException(): void
    {
        $this->expectException(TokenNotFoundOrEmptyException::class);

        AddressDTO::fromAddressArray(['[email protected]' => '{contactfield=other_name}'])->getNameTokenValue([]);
    }

    public function testNameTokenIsReturned(): void
    {
        $contact = ['other_name' => 'Thing Two'];

        $this->assertEquals(
            'Thing Two',
            (new AddressDTO('[email protected]', '{contactfield=other_name}'))->getNameTokenValue($contact)
        );
    }

    public function testEmailTokenReturnsTrue(): void
    {
        $this->assertTrue((new AddressDTO('{contactfield=other_email}', 'Someone Somewhere'))->isEmailTokenized());
    }

    public function testEmailTokenReturnsFalse(): void
    {
        $this->assertFalse((new AddressDTO('[email protected]', 'Someone Somewhere'))->isEmailTokenized());
    }

    public function testEmailTokenEmptyThrowsException(): void
    {
        $this->expectException(TokenNotFoundOrEmptyException::class);

        (new AddressDTO('{contactfield=other_email}', 'Thing One'))->getEmailTokenValue([]);
    }

    public function testEmailTokenIsReturned(): void
    {
        $contact = ['other_email' => '[email protected]'];

        $this->assertEquals(
            '[email protected]',
            (new AddressDTO('{contactfield=other_email}', ''))->getEmailTokenValue($contact)
        );
    }

    public function testTokenValuesReturned(): void
    {
        $contact = [
            'other_email' => '[email protected]',
            'other_name'  => 'Thing Two',
        ];

        $addressDTO = new AddressDTO('{contactfield=other_email}', '{contactfield=other_name}');

        $this->assertEquals('[email protected]', $addressDTO->getEmailTokenValue($contact));
        $this->assertEquals('Thing Two', $addressDTO->getNameTokenValue($contact));
    }

    public function testDefaultsAreReturned(): void
    {
        $addressDTO = new AddressDTO('[email protected]', 'Someone Somewhere');

        $this->assertEquals('[email protected]', $addressDTO->getEmail());
        $this->assertEquals('Someone Somewhere', $addressDTO->getName());
    }

    public function testSpecialCharactersAreDecoded(): void
    {
        $addressDTO = new AddressDTO('[email protected]', 'No Body&#39;s Business');

        $this->assertEquals('[email protected]', $addressDTO->getEmail());
        $this->assertEquals("No Body's Business", $addressDTO->getName());
    }
}