mirror of
https://github.com/retailcrm/transparent-email.git
synced 2024-11-22 13:26:06 +03:00
270cc2d831
The local-part of a mailbox MUST BE treated as case sensitive.
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace bkrukowski\Gordianus\Tests\Services;
|
|
|
|
use bkrukowski\Gordianus\Services\GmailCOM;
|
|
|
|
class GmailCOMTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @dataProvider providerGetPrimaryEmail
|
|
*
|
|
* @param string $inputEmail
|
|
* @param string $outputEmail
|
|
*/
|
|
public function testGetPrimaryEmail(string $inputEmail, string $outputEmail)
|
|
{
|
|
$this->assertSame($outputEmail, (new GmailCOM())->getPrimaryEmail($inputEmail));
|
|
}
|
|
|
|
public function providerGetPrimaryEmail()
|
|
{
|
|
return [
|
|
['foo.bar@gmail.com', 'foobar@gmail.com'],
|
|
['Foo.Bar@GMAIL.COM', 'foobar@gmail.com'],
|
|
['foobar+alias@gmail.com', 'foobar@gmail.com'],
|
|
['fo.ob.ar+alias@gmail.com', 'foobar@gmail.com'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerIsDomainSupported
|
|
*
|
|
* @param string $domain
|
|
* @param bool $result
|
|
*/
|
|
public function testIsDomainSupported(string $domain, bool $result)
|
|
{
|
|
$this->assertSame($result, (new GmailCOM())->isDomainSupported($domain));
|
|
}
|
|
|
|
public function providerIsDomainSupported()
|
|
{
|
|
return [
|
|
['gmail.com', true],
|
|
['gmail.COM', true],
|
|
['google.com', false],
|
|
['gmailcom', false],
|
|
['g.mail.com', false]
|
|
];
|
|
}
|
|
} |