public function EasyEmailTemplateCreateTest::testCreateNoHtmlTemplate in Easy Email 8
Same name and namespace in other branches
- 2.0.x tests/src/Functional/EasyEmailTemplateCreateTest.php \Drupal\Tests\easy_email\Functional\EasyEmailTemplateCreateTest::testCreateNoHtmlTemplate()
Tests template create/edit form with no HTML body field
Throws
\Behat\Mink\Exception\ExpectationException
\Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
\Drupal\Component\Plugin\Exception\PluginNotFoundException
\Drupal\Core\Entity\EntityStorageException
File
- tests/
src/ Functional/ EasyEmailTemplateCreateTest.php, line 134
Class
- EasyEmailTemplateCreateTest
- Class EasyEmailTemplateCreateTest
Namespace
Drupal\Tests\easy_email\FunctionalCode
public function testCreateNoHtmlTemplate() {
$template = $this
->createTemplate([
'id' => 'test_no_html_body',
'label' => 'Test: No HTML Body',
]);
$this
->drupalGet('admin/structure/email-templates/templates/' . $template
->id() . '/edit/fields/easy_email.' . $template
->id() . '.body_html/delete');
$this
->submitForm([], 'Delete');
$this
->drupalGet('admin/structure/email-templates/templates/' . $template
->id() . '/edit');
$this
->assertSession()
->fieldValueEquals('Label', 'Test: No HTML Body');
$this
->assertSession()
->fieldValueEquals('Unique Key Pattern', '');
$this
->assertSession()
->fieldValueEquals('recipient', '');
$this
->assertSession()
->fieldValueEquals('edit-cc', '');
$this
->assertSession()
->fieldValueEquals('edit-bcc', '');
$this
->assertSession()
->fieldValueEquals('From Name', '');
$this
->assertSession()
->fieldValueEquals('From Address', '');
$this
->assertSession()
->fieldValueEquals('Reply To Address', '');
$this
->assertSession()
->fieldValueEquals('Subject', '');
$this
->assertSession()
->elementNotExists('css', 'details[data-drupal-selector="edit-body-html"]');
$this
->assertSession()
->fieldNotExists('HTML Body');
$this
->assertSession()
->fieldNotExists('Inbox Preview');
$this
->assertSession()
->elementExists('css', 'details[data-drupal-selector="edit-body-plain"]');
$this
->assertSession()
->fieldValueEquals('Plain Text Body', '');
$this
->assertSession()
->fieldNotExists('generateBodyPlain');
$this
->assertSession()
->fieldValueEquals('Dynamic Attachments', '');
$this
->assertSession()
->fieldValueEquals('saveAttachment', FALSE);
$this
->assertSession()
->fieldValueEquals('attachmentScheme', 'private');
$this
->assertSession()
->fieldValueEquals('File Directory', '');
$this
->assertSession()
->linkExists('Browse available tokens.');
}