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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
<?php
namespace Illuminate\Tests\Mail;
use Aws\Ses\SesClient;
use Illuminate\Config\Repository;
use Illuminate\Container\Container;
use Illuminate\Mail\MailManager;
use Illuminate\Mail\Transport\SesTransport;
use Illuminate\Support\Str;
use Illuminate\View\Factory;
use PHPUnit\Framework\TestCase;
use Swift_Message;
class MailSesTransportTest extends TestCase
{
public function testGetTransport()
{
$container = new Container;
$container->singleton('config', function () {
return new Repository([
'services.ses' => [
'key' => 'foo',
'secret' => 'bar',
'region' => 'us-east-1',
],
]);
});
$manager = new MailManager($container);
/** @var \Illuminate\Mail\Transport\SesTransport $transport */
$transport = $manager->createTransport(['transport' => 'ses']);
$ses = $transport->ses();
$this->assertSame('us-east-1', $ses->getRegion());
}
public function testSend()
{
$message = new Swift_Message('Foo subject', 'Bar body');
$message->setSender('myself@example.com');
$message->setTo('me@example.com');
$message->setBcc('you@example.com');
$client = $this->getMockBuilder(SesClient::class)
->addMethods(['sendRawEmail'])
->disableOriginalConstructor()
->getMock();
$transport = new SesTransport($client);
// Generate a messageId for our mock to return to ensure that the post-sent message
// has X-Message-ID in its headers
$messageId = Str::random(32);
$sendRawEmailMock = new SendRawEmailMock($messageId);
$client->expects($this->once())
->method('sendRawEmail')
->with($this->equalTo([
'Source' => 'myself@example.com',
'RawMessage' => ['Data' => (string) $message],
]))
->willReturn($sendRawEmailMock);
$transport->send($message);
$this->assertEquals($messageId, $message->getHeaders()->get('X-Message-ID')->getFieldBody());
$this->assertEquals($messageId, $message->getHeaders()->get('X-SES-Message-ID')->getFieldBody());
}
public function testSesLocalConfiguration()
{
$container = new Container;
$container->singleton('config', function () {
return new Repository([
'mail' => [
'mailers' => [
'ses' => [
'transport' => 'ses',
'region' => 'eu-west-1',
'options' => [
'ConfigurationSetName' => 'Laravel',
'Tags' => [
['Name' => 'Laravel', 'Value' => 'Framework'],
],
],
],
],
],
'services' => [
'ses' => [
'region' => 'us-east-1',
],
],
]);
});
$container->instance('view', $this->createMock(Factory::class));
$container->bind('events', function () {
return null;
});
$manager = new MailManager($container);
/** @var \Illuminate\Mail\Mailer $mailer */
$mailer = $manager->mailer('ses');
/** @var \Illuminate\Mail\Transport\SesTransport $transport */
$transport = $mailer->getSwiftMailer()->getTransport();
$this->assertSame('eu-west-1', $transport->ses()->getRegion());
$this->assertSame([
'ConfigurationSetName' => 'Laravel',
'Tags' => [
['Name' => 'Laravel', 'Value' => 'Framework'],
],
], $transport->getOptions());
}
}
class SendRawEmailMock
{
protected $getResponse;
public function __construct($responseValue)
{
$this->getResponse = $responseValue;
}
public function get($key)
{
return $this->getResponse;
}
}
|