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
|
<?php
class Swift_Plugins_ReporterPluginTest extends \SwiftMailerTestCase
{
public function testReportingPasses()
{
$message = $this->createMessage();
$evt = $this->createSendEvent();
$reporter = $this->createReporter();
$message->shouldReceive('getTo')->zeroOrMoreTimes()->andReturn(['foo@bar.tld' => 'Foo']);
$evt->shouldReceive('getMessage')->zeroOrMoreTimes()->andReturn($message);
$evt->shouldReceive('getFailedRecipients')->zeroOrMoreTimes()->andReturn([]);
$reporter->shouldReceive('notify')->once()->with($message, 'foo@bar.tld', Swift_Plugins_Reporter::RESULT_PASS);
$plugin = new Swift_Plugins_ReporterPlugin($reporter);
$plugin->sendPerformed($evt);
}
public function testReportingFailedTo()
{
$message = $this->createMessage();
$evt = $this->createSendEvent();
$reporter = $this->createReporter();
$message->shouldReceive('getTo')->zeroOrMoreTimes()->andReturn(['foo@bar.tld' => 'Foo', 'zip@button' => 'Zip']);
$evt->shouldReceive('getMessage')->zeroOrMoreTimes()->andReturn($message);
$evt->shouldReceive('getFailedRecipients')->zeroOrMoreTimes()->andReturn(['zip@button']);
$reporter->shouldReceive('notify')->once()->with($message, 'foo@bar.tld', Swift_Plugins_Reporter::RESULT_PASS);
$reporter->shouldReceive('notify')->once()->with($message, 'zip@button', Swift_Plugins_Reporter::RESULT_FAIL);
$plugin = new Swift_Plugins_ReporterPlugin($reporter);
$plugin->sendPerformed($evt);
}
public function testReportingFailedCc()
{
$message = $this->createMessage();
$evt = $this->createSendEvent();
$reporter = $this->createReporter();
$message->shouldReceive('getTo')->zeroOrMoreTimes()->andReturn(['foo@bar.tld' => 'Foo']);
$message->shouldReceive('getCc')->zeroOrMoreTimes()->andReturn(['zip@button' => 'Zip', 'test@test.com' => 'Test']);
$evt->shouldReceive('getMessage')->zeroOrMoreTimes()->andReturn($message);
$evt->shouldReceive('getFailedRecipients')->zeroOrMoreTimes()->andReturn(['zip@button']);
$reporter->shouldReceive('notify')->once()->with($message, 'foo@bar.tld', Swift_Plugins_Reporter::RESULT_PASS);
$reporter->shouldReceive('notify')->once()->with($message, 'zip@button', Swift_Plugins_Reporter::RESULT_FAIL);
$reporter->shouldReceive('notify')->once()->with($message, 'test@test.com', Swift_Plugins_Reporter::RESULT_PASS);
$plugin = new Swift_Plugins_ReporterPlugin($reporter);
$plugin->sendPerformed($evt);
}
public function testReportingFailedBcc()
{
$message = $this->createMessage();
$evt = $this->createSendEvent();
$reporter = $this->createReporter();
$message->shouldReceive('getTo')->zeroOrMoreTimes()->andReturn(['foo@bar.tld' => 'Foo']);
$message->shouldReceive('getBcc')->zeroOrMoreTimes()->andReturn(['zip@button' => 'Zip', 'test@test.com' => 'Test']);
$evt->shouldReceive('getMessage')->zeroOrMoreTimes()->andReturn($message);
$evt->shouldReceive('getFailedRecipients')->zeroOrMoreTimes()->andReturn(['zip@button']);
$reporter->shouldReceive('notify')->once()->with($message, 'foo@bar.tld', Swift_Plugins_Reporter::RESULT_PASS);
$reporter->shouldReceive('notify')->once()->with($message, 'zip@button', Swift_Plugins_Reporter::RESULT_FAIL);
$reporter->shouldReceive('notify')->once()->with($message, 'test@test.com', Swift_Plugins_Reporter::RESULT_PASS);
$plugin = new Swift_Plugins_ReporterPlugin($reporter);
$plugin->sendPerformed($evt);
}
private function createMessage()
{
return $this->getMockery('Swift_Mime_SimpleMessage')->shouldIgnoreMissing();
}
private function createSendEvent()
{
return $this->getMockery('Swift_Events_SendEvent')->shouldIgnoreMissing();
}
private function createReporter()
{
return $this->getMockery('Swift_Plugins_Reporter')->shouldIgnoreMissing();
}
}
|