You are here

public function EasyEmailSendTest::testSaveWithoutSend in Easy Email 8

Same name and namespace in other branches
  1. 2.0.x tests/src/Functional/EasyEmailSendTest.php \Drupal\Tests\easy_email\Functional\EasyEmailSendTest::testSaveWithoutSend()

Tests email saving without sending.

Throws

\Behat\Mink\Exception\ExpectationException

\Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException

\Drupal\Component\Plugin\Exception\PluginNotFoundException

\Drupal\Core\Entity\EntityStorageException

File

tests/src/Functional/EasyEmailSendTest.php, line 151

Class

EasyEmailSendTest
Class EasyEmailSendTest

Namespace

Drupal\Tests\easy_email\Functional

Code

public function testSaveWithoutSend() {
  $template_id = 'test_no_send';
  $template_label = 'Test: No Send';
  $template = $this
    ->createTemplate([
    'id' => $template_id,
    'label' => $template_label,
  ]);
  $this
    ->addUserField($template, 'field_user', 'User');
  $this
    ->addUserField($template, 'field_cc_user', 'CC User');
  $this
    ->addUserField($template, 'field_bcc_user', 'BCC User');
  $this
    ->drupalGet('admin/structure/email-templates/templates');
  $this
    ->assertSession()
    ->pageTextContains($template_id);
  $this
    ->assertSession()
    ->pageTextContains($template_label);
  $template
    ->setRecipient([
    'test@example.com',
    '[easy_email:field_user:0:entity:mail]',
  ])
    ->setCc([
    'cc@example.com',
    '[easy_email:field_cc_user:0:entity:mail]',
  ])
    ->setBcc([
    'bcc@example.com',
    '[easy_email:field_bcc_user:0:entity:mail]',
  ])
    ->setSubject('Test email for [easy_email:field_user:0:entity:display-name]')
    ->setBodyHtml([
    'value' => '<p>This is a test email (HTML) for user account [easy_email:field_user:0:entity:account-name].</p>',
    'format' => 'html',
  ])
    ->setBodyPlain('This is a test email (Plain Text) for user account [easy_email:field_user:0:entity:account-name].')
    ->setAttachment([
    '/core/misc/druplicon.png',
  ])
    ->save();
  $this
    ->drupalGet('admin/content/email/add/' . $template
    ->id());
  $this
    ->assertSession()
    ->pageTextContains('field_user');
  $this
    ->assertSession()
    ->pageTextContains('field_cc_user');
  $this
    ->assertSession()
    ->pageTextContains('field_bcc_user');
  $user1 = $this
    ->createUser();
  $user2 = $this
    ->createUser();
  $user3 = $this
    ->createUser();
  $this
    ->submitForm([
    'field_user[0][target_id]' => $user1
      ->getAccountName() . ' (' . $user1
      ->id() . ')',
    'field_cc_user[0][target_id]' => $user2
      ->getAccountName() . ' (' . $user2
      ->id() . ')',
    'field_bcc_user[0][target_id]' => $user3
      ->getAccountName() . ' (' . $user3
      ->id() . ')',
    'send' => FALSE,
  ], 'Save');
  $this
    ->assertSession()
    ->pageTextContains('Created new email.');
  $this
    ->assertSession()
    ->pageTextNotContains('Email sent.');

  /** @var \Drupal\Core\Config\ImmutableConfig $site_config */
  $site_config = \Drupal::config('system.site');
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="header-Return-Path"] span.value', $site_config
    ->get('mail'));
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="header-Sender"] span.value', $site_config
    ->get('mail'));
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="header-From"] span.value', $site_config
    ->get('name') . ' <' . $site_config
    ->get('mail') . '>');
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="header-Cc"] span.value', 'cc@example.com');
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="header-Cc"] span.value', $user2
    ->getEmail());
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="header-Bcc"] span.value', 'bcc@example.com');
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="header-Bcc"] span.value', $user3
    ->getEmail());
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="header-To"] span.value', 'test@example.com');
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="header-To"] span.value', $user1
    ->getEmail());
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="inbox-preview"] .from-name', $site_config
    ->get('name'));
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="inbox-preview"] .subject', 'Test email for ' . $user1
    ->getDisplayName());
  $this
    ->assertSession()
    ->elementTextContains('css', '[data-drupal-selector="inbox-preview"] .body-preview', 'This is a test email (HTML) for user account ' . $user1
    ->getDisplayName() . '.');
  $this
    ->assertSession()
    ->linkByHrefNotExists(file_create_url('/core/misc/druplicon.png'));
  $this
    ->assertSession()
    ->pageTextNotContains('Attachments');
  $url = explode('/', $this
    ->getSession()
    ->getCurrentUrl());
  $email_id = array_pop($url);
  $html_body_iframe = $this
    ->assertSession()
    ->elementExists('css', '[data-drupal-selector="html-body"] iframe');
  $html_body_url = $this
    ->getIframeUrlAndQuery($html_body_iframe);
  $plain_body_iframe = $this
    ->assertSession()
    ->elementExists('css', '[data-drupal-selector="plain-body"] iframe');
  $plain_body_url = $this
    ->getIframeUrlAndQuery($plain_body_iframe);
  $this
    ->drupalGet($html_body_url['path'], [
    'query' => $html_body_url['query'],
  ]);
  $this
    ->assertSession()
    ->responseContains('<p>This is a test email (HTML) for user account ' . $user1
    ->getAccountName() . '.</p>');
  $this
    ->drupalGet($plain_body_url['path'], [
    'query' => $plain_body_url['query'],
  ]);
  $this
    ->assertSession()
    ->responseContains('This is a test email (Plain Text) for user account ' . $user1
    ->getAccountName() . '.');
  $emails = $this
    ->getSentEmails([]);
  $this
    ->assertEquals(0, count($emails));
  $this
    ->drupalGet('admin/content/email/' . $email_id . '/edit');
  $this
    ->submitForm([
    'send' => TRUE,
  ], 'Save');
  $this
    ->assertSession()
    ->pageTextContains('Saved email.');
  $this
    ->assertSession()
    ->pageTextContains('Email sent.');
  $emails = $this
    ->getSentEmails([]);
  $this
    ->assertEquals(1, count($emails));
  $email = reset($emails);
  $this
    ->assertEquals($template
    ->id(), $email['key']);
  $this
    ->assertEquals('test@example.com, ' . $user1
    ->getEmail(), $email['to']);
  $this
    ->assertEquals('cc@example.com, ' . $user2
    ->getEmail(), $email['headers']['Cc']);
  $this
    ->assertEquals('bcc@example.com, ' . $user3
    ->getEmail(), $email['headers']['Bcc']);
  $this
    ->assertEquals($site_config
    ->get('name') . ' <' . $site_config
    ->get('mail') . '>', $email['headers']['From']);
  $this
    ->assertEquals($site_config
    ->get('mail'), $email['headers']['Sender']);
  $this
    ->assertArrayNotHasKey('Reply-To', $email['headers']);
  $this
    ->assertEquals('text/html; charset=UTF-8;', $email['headers']['Content-Type']);
  $this
    ->assertStringContainsString('<p>This is a test email (HTML) for user account ' . $user1
    ->getAccountName() . '.</p>', (string) $email['body']);
  $this
    ->assertStringContainsString('This is a test email (Plain Text) for user account ' . $user1
    ->getAccountName() . '.', (string) $email['plain']);
  $this
    ->assertEquals('Test email for ' . $user1
    ->getDisplayName(), $email['subject']);
  $this
    ->assertEquals(1, count($email['params']['files']));
  $attachment = reset($email['params']['files']);
  $this
    ->assertEquals('core/misc/druplicon.png', $attachment->uri);
  $this
    ->assertEquals('druplicon.png', $attachment->filename);
  $this
    ->assertEquals('image/png', $attachment->filemime);
}