class MailHandlerTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/contact/tests/src/Unit/MailHandlerTest.php \Drupal\Tests\contact\Unit\MailHandlerTest
@coversDefaultClass \Drupal\contact\MailHandler @group contact
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\contact\Unit\MailHandlerTest
Expanded class hierarchy of MailHandlerTest
File
- core/
modules/ contact/ tests/ src/ Unit/ MailHandlerTest.php, line 20 - Contains \Drupal\Tests\contact\Unit\MailHandlerTest.
Namespace
Drupal\Tests\contact\UnitView source
class MailHandlerTest extends UnitTestCase {
/**
* Language manager service.
*
* @var \Drupal\Core\Language\LanguageManagerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $languageManager;
/**
* Logger service.
*
* @var \Psr\Log\LoggerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $logger;
/**
* Mail manager service.
*
* @var \Drupal\Core\Mail\MailManagerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $mailManager;
/**
* Contact mail messages service.
*
* @var \Drupal\contact\MailHandlerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $contactMailHandler;
/**
* The contact form entity.
*
* @var \Drupal\contact\ContactFormInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $contactForm;
/**
* The entity manager service.
*
* @var \Drupal\Core\Entity\EntityManagerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $entityManager;
/**
* The user storage handler.
*
* @var \Drupal\Core\Entity\EntityStorageInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $userStorage;
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->mailManager = $this
->getMock('\\Drupal\\Core\\Mail\\MailManagerInterface');
$this->languageManager = $this
->getMock('\\Drupal\\Core\\Language\\LanguageManagerInterface');
$this->logger = $this
->getMock('\\Psr\\Log\\LoggerInterface');
$this->entityManager = $this
->getMock('\\Drupal\\Core\\Entity\\EntityManagerInterface');
$this->userStorage = $this
->getMock('\\Drupal\\Core\\Entity\\EntityStorageInterface');
$this->entityManager
->expects($this
->any())
->method('getStorage')
->with('user')
->willReturn($this->userStorage);
$string_translation = $this
->getStringTranslationStub();
$this->contactMailHandler = new MailHandler($this->mailManager, $this->languageManager, $this->logger, $string_translation, $this->entityManager);
$language = new Language(array(
'id' => 'en',
));
$this->languageManager
->expects($this
->any())
->method('getDefaultLanguage')
->will($this
->returnValue($language));
$this->languageManager
->expects($this
->any())
->method('getCurrentLanguage')
->will($this
->returnValue($language));
}
/**
* Tests the children() method with an invalid key.
*
* @expectedException \Drupal\contact\MailHandlerException
* @expectedExceptionMessage Unable to determine message recipient
*
* @covers ::sendMailMessages
*/
public function testInvalidRecipient() {
$message = $this
->getMock('\\Drupal\\contact\\MessageInterface');
$message
->expects($this
->once())
->method('isPersonal')
->willReturn(TRUE);
$message
->expects($this
->once())
->method('getPersonalRecipient')
->willReturn(NULL);
$message
->expects($this
->once())
->method('getContactForm')
->willReturn($this
->getMock('\\Drupal\\contact\\ContactFormInterface'));
$sender = $this
->getMock('\\Drupal\\Core\\Session\\AccountInterface');
$this->userStorage
->expects($this
->any())
->method('load')
->willReturn($sender);
// User IDs 1 and 0 have special implications, use 3 instead.
$sender
->expects($this
->any())
->method('id')
->willReturn(3);
$sender
->expects($this
->once())
->method('isAnonymous')
->willReturn(FALSE);
$this->contactMailHandler
->sendMailMessages($message, $sender);
}
/**
* Tests the sendMailMessages method.
*
* @dataProvider getSendMailMessages
*
* @covers ::sendMailMessages
*/
public function testSendMailMessages(MessageInterface $message, AccountInterface $sender, $results) {
$this->logger
->expects($this
->once())
->method('notice');
$this->mailManager
->expects($this
->any())
->method('mail')
->willReturnCallback(function ($module, $key, $to, $langcode, $params, $from) use (&$results) {
$result = array_shift($results);
$this
->assertEquals($module, $result['module']);
$this
->assertEquals($key, $result['key']);
$this
->assertEquals($to, $result['to']);
$this
->assertEquals($langcode, $result['langcode']);
$this
->assertArrayEquals($params, $result['params']);
$this
->assertEquals($from, $result['from']);
});
$this->userStorage
->expects($this
->any())
->method('load')
->willReturn(clone $sender);
$this->contactMailHandler
->sendMailMessages($message, $sender);
}
/**
* Data provider for ::testSendMailMessages.
*/
public function getSendMailMessages() {
$data = array();
$recipients = array(
'admin@drupal.org',
'user@drupal.org',
);
$default_result = array(
'module' => 'contact',
'key' => '',
'to' => implode(', ', $recipients),
'langcode' => 'en',
'params' => array(),
'from' => 'anonymous@drupal.org',
);
$results = array();
$message = $this
->getAnonymousMockMessage($recipients, '');
$sender = $this
->getMockSender();
$result = array(
'key' => 'page_mail',
'params' => array(
'contact_message' => $message,
'sender' => $sender,
'contact_form' => $message
->getContactForm(),
),
);
$results[] = $result + $default_result;
$data[] = array(
$message,
$sender,
$results,
);
$results = array();
$message = $this
->getAnonymousMockMessage($recipients, 'reply');
$sender = $this
->getMockSender();
$result = array(
'key' => 'page_mail',
'params' => array(
'contact_message' => $message,
'sender' => $sender,
'contact_form' => $message
->getContactForm(),
),
);
$results[] = $result + $default_result;
$result['key'] = 'page_autoreply';
$result['to'] = 'anonymous@drupal.org';
$result['from'] = NULL;
$results[] = $result + $default_result;
$data[] = array(
$message,
$sender,
$results,
);
$results = array();
$message = $this
->getAnonymousMockMessage($recipients, '', TRUE);
$sender = $this
->getMockSender();
$result = array(
'key' => 'page_mail',
'params' => array(
'contact_message' => $message,
'sender' => $sender,
'contact_form' => $message
->getContactForm(),
),
);
$results[] = $result + $default_result;
$result['key'] = 'page_copy';
$result['to'] = 'anonymous@drupal.org';
$results[] = $result + $default_result;
$data[] = array(
$message,
$sender,
$results,
);
$results = array();
$message = $this
->getAnonymousMockMessage($recipients, 'reply', TRUE);
$sender = $this
->getMockSender();
$result = array(
'key' => 'page_mail',
'params' => array(
'contact_message' => $message,
'sender' => $sender,
'contact_form' => $message
->getContactForm(),
),
);
$results[] = $result + $default_result;
$result['key'] = 'page_copy';
$result['to'] = 'anonymous@drupal.org';
$results[] = $result + $default_result;
$result['key'] = 'page_autoreply';
$result['from'] = NULL;
$results[] = $result + $default_result;
$data[] = array(
$message,
$sender,
$results,
);
//For authenticated user.
$results = array();
$message = $this
->getAuthenticatedMockMessage();
$sender = $this
->getMockSender(FALSE, 'user@drupal.org');
$result = array(
'module' => 'contact',
'key' => 'user_mail',
'to' => 'user2@drupal.org',
'langcode' => 'en',
'params' => array(
'contact_message' => $message,
'sender' => $sender,
'recipient' => $message
->getPersonalRecipient(),
),
'from' => 'user@drupal.org',
);
$results[] = $result;
$data[] = array(
$message,
$sender,
$results,
);
$results = array();
$message = $this
->getAuthenticatedMockMessage(TRUE);
$sender = $this
->getMockSender(FALSE, 'user@drupal.org');
$result = array(
'module' => 'contact',
'key' => 'user_mail',
'to' => 'user2@drupal.org',
'langcode' => 'en',
'params' => array(
'contact_message' => $message,
'sender' => $sender,
'recipient' => $message
->getPersonalRecipient(),
),
'from' => 'user@drupal.org',
);
$results[] = $result;
$result['key'] = 'user_copy';
$result['to'] = $result['from'];
$results[] = $result;
$data[] = array(
$message,
$sender,
$results,
);
return $data;
}
/**
* Builds a mock sender on given scenario.
*
* @param bool $anonymous
* TRUE if the sender is anonymous.
* @param string $mail_address
* The mail address of the user.
*
* @return \Drupal\Core\Session\AccountInterface|\PHPUnit_Framework_MockObject_MockObject
* Mock sender for testing.
*/
protected function getMockSender($anonymous = TRUE, $mail_address = 'anonymous@drupal.org') {
$sender = $this
->getMock('\\Drupal\\Core\\Session\\AccountInterface');
$sender
->expects($this
->once())
->method('isAnonymous')
->willReturn($anonymous);
$sender
->expects($this
->any())
->method('getEmail')
->willReturn($mail_address);
$sender
->expects($this
->any())
->method('getUsername')
->willReturn('user');
// User ID 1 has special implications, use 3 instead.
$sender
->expects($this
->any())
->method('id')
->willReturn($anonymous ? 0 : 3);
if ($anonymous) {
// Anonymous user values set in params include updated values for name and
// mail.
$sender->name = 'Anonymous (not verified)';
$sender->mail = 'anonymous@drupal.org';
}
return $sender;
}
/**
* Builds a mock message from anonymous user.
*
* @param array $recipients
* An array of recipient email addresses.
* @param bool $auto_reply
* TRUE if auto reply is enable.
* @param bool $copy_sender
* TRUE if a copy should be sent, FALSE if not.
*
* @return \Drupal\contact\MessageInterface|\PHPUnit_Framework_MockObject_MockObject
* Mock message for testing.
*/
protected function getAnonymousMockMessage($recipients, $auto_reply, $copy_sender = FALSE) {
$message = $this
->getMock('\\Drupal\\contact\\MessageInterface');
$message
->expects($this
->any())
->method('getSenderName')
->willReturn('Anonymous');
$message
->expects($this
->once())
->method('getSenderMail')
->willReturn('anonymous@drupal.org');
$message
->expects($this
->any())
->method('isPersonal')
->willReturn(FALSE);
$message
->expects($this
->once())
->method('copySender')
->willReturn($copy_sender);
$message
->expects($this
->any())
->method('getContactForm')
->willReturn($this
->getMockContactForm($recipients, $auto_reply));
return $message;
}
/**
* Builds a mock message from authenticated user.
*
* @param bool $copy_sender
* TRUE if a copy should be sent, FALSE if not.
*
* @return \Drupal\contact\MessageInterface|\PHPUnit_Framework_MockObject_MockObject
* Mock message for testing.
*/
protected function getAuthenticatedMockMessage($copy_sender = FALSE) {
$message = $this
->getMock('\\Drupal\\contact\\MessageInterface');
$message
->expects($this
->any())
->method('isPersonal')
->willReturn(TRUE);
$message
->expects($this
->once())
->method('copySender')
->willReturn($copy_sender);
$recipient = $this
->getMock('\\Drupal\\user\\UserInterface');
$recipient
->expects($this
->once())
->method('getEmail')
->willReturn('user2@drupal.org');
$recipient
->expects($this
->once())
->method('getUsername')
->willReturn('user2');
$recipient
->expects($this
->once())
->method('getPreferredLangcode')
->willReturn('en');
$message
->expects($this
->any())
->method('getPersonalRecipient')
->willReturn($recipient);
$message
->expects($this
->any())
->method('getContactForm')
->willReturn($this
->getMockContactForm('user2@drupal.org', FALSE));
return $message;
}
/**
* Builds a mock message on given scenario.
*
* @param array $recipients
* An array of recipient email addresses.
* @param string $auto_reply
* An auto-reply message to send to the message author.
*
* @return \Drupal\contact\ContactFormInterface|\PHPUnit_Framework_MockObject_MockObject
* Mock message for testing.
*/
protected function getMockContactForm($recipients, $auto_reply) {
$contact_form = $this
->getMock('\\Drupal\\contact\\ContactFormInterface');
$contact_form
->expects($this
->once())
->method('getRecipients')
->willReturn($recipients);
$contact_form
->expects($this
->once())
->method('getReply')
->willReturn($auto_reply);
return $contact_form;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MailHandlerTest:: |
protected | property | The contact form entity. | |
MailHandlerTest:: |
protected | property | Contact mail messages service. | |
MailHandlerTest:: |
protected | property | The entity manager service. | |
MailHandlerTest:: |
protected | property | Language manager service. | |
MailHandlerTest:: |
protected | property | Logger service. | |
MailHandlerTest:: |
protected | property | Mail manager service. | |
MailHandlerTest:: |
protected | property | The user storage handler. | |
MailHandlerTest:: |
protected | function | Builds a mock message from anonymous user. | |
MailHandlerTest:: |
protected | function | Builds a mock message from authenticated user. | |
MailHandlerTest:: |
protected | function | Builds a mock message on given scenario. | |
MailHandlerTest:: |
protected | function | Builds a mock sender on given scenario. | |
MailHandlerTest:: |
public | function | Data provider for ::testSendMailMessages. | |
MailHandlerTest:: |
protected | function |
Overrides UnitTestCase:: |
|
MailHandlerTest:: |
public | function | Tests the children() method with an invalid key. | |
MailHandlerTest:: |
public | function | Tests the sendMailMessages method. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |