Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add email assertions trait #9322

Merged
merged 9 commits into from
Aug 30, 2016
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
292 changes: 292 additions & 0 deletions src/TestSuite/EmailAssertTrait.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,292 @@
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since 3.3.1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3.3.3 :)

* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\TestSuite;

use Cake\Mailer\Email;

/**
* Email and mailer assertions.
*
* @method \PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount any()
* @method void assertSame($expected, $result, $message)
* @method void assertTextContains($needle, $haystack, $message)
* @method \PHPUnit_Framework_MockObject_MockBuilder getMockBuilder($className)
*/
trait EmailAssertTrait
{

/**
* @var \Cake\Mailer\Email
*/
protected $_email;

/**
* Sends email using the test email instance.
*
* @param array|string|null $content The email's content to send.
* @return void
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

public function send($content = null)
{
$this->email(true)->send($content);
}

/**
* Creates an email instance overriding its transport for testing purposes.
*
* @param bool $new Tells if new instance should forcebly be created.
* @return \Cake\Mailer\Email
*/
public function email($new = false)
{
if ($new || !$this->_email) {
$this->_email = new Email();
$this->_email->profile(['transport' => 'debug'] + $this->_email->profile());
}

return $this->_email;
}

/**
* Generates mock for given mailer class.
*
* @param string $className The mailer's FQCN.
* @param array $methods The methods to mock on the mailer.
* @return \Cake\Mailer\Mailer|\PHPUnit_Framework_MockObject_MockObject
*/
public function getMockForMailer($className, array $methods = [])
{
$name = current(array_slice(explode('\\', $className), -1));

if (!in_array('profile', $methods)) {
$methods[] = 'profile';
}

$mailer = $this->getMockBuilder($className)
->setMockClassName($name)
->setMethods($methods)
->setConstructorArgs([$this->email()])
->getMock();

$mailer->expects($this->any())
->method('profile')
->willReturn($mailer);

return $mailer;
}

/**
* Asserts email content (both text and HTML) contains `$needle`.
*
* @param string $needle Text to look for.
* @param string|null $message The failure message to define.
* @return void
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

public function assertEmailMessageContains($needle, $message = null)
{
$this->assertEmailHtmlMessageContains($needle, $message);
$this->assertEmailTextMessageContains($needle, $message);
}

/**
* Asserts HTML email content contains `$needle`.
*
* @param string $needle Text to look for.
* @param string|null $message The failure message to define.
* @return void
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

public function assertEmailHtmlMessageContains($needle, $message = null)
{
$haystack = $this->email()->message('html');
$this->assertTextContains($needle, $haystack, $message);
}

/**
* Asserts text email content contains `$needle`.
*
* @param string $needle Text to look for.
* @param string|null $message The failure message to define.
* @return void
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

public function assertEmailTextMessageContains($needle, $message = null)
{
$haystack = $this->email()->message('text');
$this->assertTextContains($needle, $haystack, $message);
}

/**
* Asserts email's subject contains `$expected`.
*
* @param string $expected Email's subject.
* @param string|null $message The failure message to define.
* @return void
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

public function assertEmailSubject($expected, $message = null)
{
$result = $this->email()->subject();
$this->assertSame($expected, $result, $message);
}

/**
* Asserts email's sender email address and optionally name.
*
* @param string $email Sender's email address.
* @param string|null $name Sender's name.
* @param string|null $message The failure message to define.
* @return void
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

public function assertEmailFrom($email, $name = null, $message = null)
{
if ($name === null) {
$name = $email;
}

$expected = [$email => $name];
$result = $this->email()->from();
$this->assertSame($expected, $result, $message);
}

/**
* Asserts email is CC'd to only one email address (and optionally name).
*
* @param string $email CC'd email address.
* @param string|null $name CC'd person name.
* @param string|null $message The failure message to define.
* @return void
*/
public function assertEmailCc($email, $name = null, $message = null)
{
if ($name === null) {
$name = $email;
}

$expected = [$email => $name];
$result = $this->email()->cc();
$this->assertSame($expected, $result, $message);
}

/**
* Asserts email CC'd addresses contain given email address (and
* optionally name).
*
* @param string $email CC'd email address.
* @param string|null $name CC'd person name.
* @param string|null $message The failure message to define.
* @return void
*/
public function assertEmailCcContains($email, $name = null, $message = null)
{
$result = $this->email()->cc();
$this->assertNotEmpty($result[$email], $message);
if ($name !== null) {
$this->assertEquals($result[$email], $name, $message);
}
}

/**
* Asserts email is BCC'd to only one email address (and optionally name).
*
* @param string $email BCC'd email address.
* @param string|null $name BCC'd person name.
* @param string|null $message The failure message to define.
* @return void
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

public function assertEmailBcc($email, $name = null, $message = null)
{
if ($name === null) {
$name = $email;
}

$expected = [$email => $name];
$result = $this->email()->bcc();
$this->assertSame($expected, $result, $message);
}

/**
* Asserts email BCC'd addresses contain given email address (and
* optionally name).
*
* @param string $email BCC'd email address.
* @param string|null $name BCC'd person name.
* @param string|null $message The failure message to define.
* @return void
*/
public function assertEmailBccContains($email, $name = null, $message = null)
{
$result = $this->email()->bcc();
$this->assertNotEmpty($result[$email], $message);
if ($name !== null) {
$this->assertEquals($result[$email], $name, $message);
}
}

/**
* Asserts email is sent to only the given recipient's address (and
* optionally name).
*
* @param string $email Recipient's email address.
* @param string|null $name Recipient's name.
* @param string|null $message The failure message to define.
* @return void
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing @return tag in function comment

public function assertEmailTo($email, $name = null, $message = null)
{
if ($name === null) {
$name = $email;
}

$expected = [$email => $name];
$result = $this->email()->to();
$this->assertSame($expected, $result, $message);
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should there also be assertions for cc, bcc and attachments?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and also maybe a assertEmailToContains() to look for an email address in a list

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Totally, was just a PoC to start with.


/**
* Asserts email recipients' list contains given email address (and
* optionally name).
*
* @param string $email Recipient's email address.
* @param string|null $name Recipient's name.
* @param string|null $message The failure message to define.
* @return void
*/
public function assertEmailToContains($email, $name = null, $message = null)
{
$result = $this->email()->to();
$this->assertNotEmpty($result[$email], $message);
if ($name !== null) {
$this->assertEquals($result[$email], $name, $message);
}
}

/**
* Asserts the email attachments contain the given filename (and optionally
* file info).
*
* @param string $filename Expected attachment's filename.
* @param array|null $file Expected attachment's file info.
* @param string|null $message The failure message to define.
* @return void
*/
public function assertEmailAttachmentsContains($filename, array $file = null, $message = null)
{
$result = $this->email()->attachments();
$this->assertNotEmpty($result[$filename], $message);
if ($file === null) {
return;
}
$this->assertContains($file, $result, $message);
$this->assertEquals($file, $result[$filename], $message);
}
}
63 changes: 63 additions & 0 deletions tests/TestCase/TestSuite/EmailAssertTraitTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since 3.3.1
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Test\TestCase\TestSuite;

use Cake\Mailer\Email;
use Cake\Mailer\Transport\DebugTransport;
use Cake\TestSuite\EmailAssertTrait;
use Cake\TestSuite\TestCase;
use TestApp\Mailer\TestUserMailer;

class EmailAssertTraitTest extends TestCase
{

use EmailAssertTrait;

public function setUp()
{
parent::setUp();
Email::configTransport('debug', ['className' => DebugTransport::class]);
}

public function tearDown()
{
parent::tearDown();
Email::dropTransport('debug');
}

public function testFunctional()
{
$mailer = $this->getMockForMailer(TestUserMailer::class);
$email = $mailer->getEmailForAssertion();
$this->assertSame($this->_email, $email);

$mailer->invite('lorenzo@cakephp.org');
$this->assertEmailSubject('CakePHP');
$this->assertEmailFrom('jadb@cakephp.org');
$this->assertEmailTo('lorenzo@cakephp.org');
$this->assertEmailToContains('lorenzo@cakephp.org');
$this->assertEmailToContains('lorenzo@cakephp.org', 'lorenzo@cakephp.org');
$this->assertEmailCcContains('markstory@cakephp.org');
$this->assertEmailCcContains('admad@cakephp.org', 'Adnan');
$this->assertEmailBccContains('dereuromark@cakephp.org');
$this->assertEmailBccContains('antograssiot@cakephp.org');
$this->assertEmailTextMessageContains('Hello lorenzo@cakephp.org');
$this->assertEmailAttachmentsContains('TestUserMailer.php');
$this->assertEmailAttachmentsContains('TestMailer.php', [
'file' => dirname(dirname(__DIR__)) . DS . 'test_app' . DS . 'TestApp' . DS . 'Mailer' . DS . 'TestMailer.php',
'mimetype' => 'application/octet-stream',
]);
}
}
39 changes: 39 additions & 0 deletions tests/test_app/TestApp/Mailer/TestUserMailer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?php
/**
* CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
* @since 3.4.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3.3.3 :)

* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace TestApp\Mailer;

/**
* Test Suite Test App Mailer class.
*/
class TestUserMailer extends TestMailer
{

public function invite($email)
{
$this->_email
->subject('CakePHP')
->from('jadb@cakephp.org')
->to($email)
->cc('markstory@cakephp.org')
->addCc('admad@cakephp.org', 'Adnan')
->bcc('dereuromark@cakephp.org', 'Mark')
->addBcc('antograssiot@cakephp.org')
->attachments([
dirname(__FILE__) . DS . 'TestMailer.php',
dirname(__FILE__) . DS . 'TestUserMailer.php'
])
->send('Hello ' . $email);
}
}