You are here

public function EasyEmailSendTest::testSendWithoutCcAddress in Easy Email 2.0.x

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

Tests email sending without a CC address field

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 619

Class

EasyEmailSendTest
Class EasyEmailSendTest

Namespace

Drupal\Tests\easy_email\Functional

Code

public function testSendWithoutCcAddress() {
  $template_id = 'test_without_cc_address';
  $template_label = 'Test: Without CC Address';
  $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
    ->removeField($template, 'cc_address');
  $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].')
    ->save();
  $this
    ->drupalGet('admin/content/email/add/' . $template
    ->id());
  $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() . ')',
  ], 'Save');
  $url = explode('/', $this
    ->getSession()
    ->getCurrentUrl());
  $email_id = array_pop($url);

  /** @var \Drupal\easy_email\Entity\EasyEmailInterface $email_entity */
  \Drupal::entityTypeManager()
    ->getStorage('easy_email')
    ->resetCache();
  $email_entity = \Drupal::entityTypeManager()
    ->getStorage('easy_email')
    ->load($email_id);
  $this
    ->assertSession()
    ->pageTextContains('Created new email.');
  $this
    ->assertSession()
    ->pageTextContains('Email sent.');
  $this
    ->assertSession()
    ->elementNotExists('css', '[data-drupal-selector="header-Cc"]');
  $this
    ->assertNotContains($user2
    ->id(), $email_entity
    ->getCCIds());
  $this
    ->assertContains($user3
    ->id(), $email_entity
    ->getBCCIds());
  $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('bcc@example.com, ' . $user3
    ->getEmail(), $email['headers']['Bcc']);
  $this
    ->assertArrayNotHasKey('Cc', $email['headers']);
}