public function ContactEmailsRecipientTest::testSendToDefault in Contact Emails 8
Test default functionality to email address.
Throws
\Exception
File
- src/
Tests/ ContactEmailsRecipientTest.php, line 32
Class
- ContactEmailsRecipientTest
- Tests contact emails recipients.
Namespace
Drupal\contact_emails\TestsCode
public function testSendToDefault() {
$this
->setSiteMail();
// Add the email.
$params = [
'subject[0][value]' => 'Contact Emails Test Form Subject',
'message[0][value]' => 'Contact Emails Test Form Body',
'recipient_type[0][value]' => 'default',
'reply_to_type[0][value]' => 'default',
'status[value]' => TRUE,
];
$this
->drupalPostForm('/admin/structure/contact/manage/contact_emails_test_form/emails/add', $params, t('Save'));
// Submit the contact form on the front-end of the website.
$params = [
'subject[0][value]' => 'Submission Test Form Subject',
'message[0][value]' => 'Submission Test Form Body',
];
$this
->drupalPostForm('/contact/contact_emails_test_form', $params, t('Send message'));
// Assert that the to is the default site email.
$this
->assertText('Message-to:site-default-mail@test.com', 'Message to set to default successfully.');
}