chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?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());
}
}