mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-22 20:46:03 +03:00
61 lines
1.3 KiB
PHP
61 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Copyright (C) 2013 Mailgun
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
namespace Mailgun\Tests\Api;
|
|
|
|
use GuzzleHttp\Psr7\Response;
|
|
use Mailgun\Api\EmailValidation;
|
|
|
|
/**
|
|
* @author David Garcia <me@davidgarcia.cat>
|
|
*/
|
|
class EmailValidationTest extends TestCase
|
|
{
|
|
protected function getApiClass()
|
|
{
|
|
return EmailValidation::class;
|
|
}
|
|
|
|
public function testValidEmail()
|
|
{
|
|
$params = [
|
|
'address' => 'me@davidgarcia.cat',
|
|
'mailbox_verification' => true,
|
|
];
|
|
|
|
$api = $this->getApiMock();
|
|
|
|
$api->expects($this->once())
|
|
->method('httpGet')
|
|
->with('/address/private/validate', $params)
|
|
->willReturn(new Response());
|
|
|
|
$api->validate($params['address'], $params['mailbox_verification']);
|
|
}
|
|
|
|
public function testParseEmail()
|
|
{
|
|
$params = [
|
|
'addresses' => 'me@davidgarcia.cat',
|
|
'syntax_only' => true,
|
|
];
|
|
|
|
$api = $this->getApiMock();
|
|
|
|
$api->expects($this->once())
|
|
->method('httpGet')
|
|
->with('/address/private/parse', $params)
|
|
->willReturn(new Response());
|
|
|
|
$api->parse($params['addresses'], $params['syntax_only']);
|
|
}
|
|
}
|