mirror of
https://github.com/retailcrm/transparent-email.git
synced 2024-11-22 13:26:06 +03:00
45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace bkrukowski\TransparentEmail\Tests\Emails;
|
|
|
|
use bkrukowski\TransparentEmail\Emails\Email;
|
|
use bkrukowski\TransparentEmail\Emails\InvalidEmailException;
|
|
|
|
class EmailTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @dataProvider providerConstructor
|
|
*
|
|
* @param string $email
|
|
* @param bool $expectedException
|
|
* @param string $localPart
|
|
* @param string $domain
|
|
* @param bool $caseSensitive
|
|
*/
|
|
public function testConstructor(
|
|
string $email,
|
|
bool $expectedException,
|
|
string $localPart = '',
|
|
string $domain = '',
|
|
bool $caseSensitive = false
|
|
) {
|
|
if ($expectedException) {
|
|
$this->expectException(InvalidEmailException::class);
|
|
}
|
|
$object = new Email($email, $caseSensitive);
|
|
$this->assertSame($localPart, $object->getLocalPart());
|
|
$this->assertSame($domain, $object->getDomain());
|
|
}
|
|
|
|
public function providerConstructor() : array
|
|
{
|
|
return [
|
|
['john doe@example.com', true],
|
|
['.johndoe@example.com', true],
|
|
['Jane.Doe@Example.COM', false, 'Jane.Doe', 'example.com', true],
|
|
['Jane.Doe@Example.COM', false, 'jane.doe', 'example.com'],
|
|
];
|
|
}
|
|
} |