You are here

public function CommentNotifyAnonymousTest::testAnonymousAllCommentsTest in Comment Notify 8

Tests the "All comments" notification option used by an anonymous user.

File

tests/src/Functional/CommentNotifyAnonymousTest.php, line 49

Class

CommentNotifyAnonymousTest
Comment notifications tests as anonymous user.

Namespace

Drupal\Tests\comment_notify\Functional

Code

public function testAnonymousAllCommentsTest() {

  /** @var \Drupal\node\Entity\Node $node */
  $node = $this
    ->drupalCreateNode([
    'type' => 'article',
  ]);
  $subscribe = [
    'notify' => TRUE,
    'notify_type' => COMMENT_NOTIFY_ENTITY,
  ];
  $contact = [
    'name' => $this
      ->randomMachineName(),
    'mail' => $this
      ->getRandomEmailAddress(),
  ];
  $comment = $this
    ->postComment($node
    ->toUrl()
    ->toString(), $this
    ->randomMachineName(), $this
    ->randomMachineName(), $subscribe, $contact);

  // Confirm that the notification is saved.
  $result = comment_notify_get_notification_type($comment['id']);
  $this
    ->assertEquals($result, $subscribe['notify_type'], 'All Comments option was saved properly.');

  // Tests that the user receives the email if a new comment is posted.
  $this
    ->postComment($node
    ->toUrl()
    ->toString(), $this
    ->randomMachineName(), $this
    ->randomMachineName(), [
    'notify' => FALSE,
    'notify_type' => COMMENT_NOTIFY_ENTITY,
  ], [
    'name' => $this
      ->randomMachineName(),
    'mail' => $this
      ->getRandomEmailAddress(),
  ]);
  $this
    ->assertMail('to', $contact['mail'], t('Message was sent to the anonymous user.'));

  // Test the unsubscribe link.
  $mails = $this
    ->getMails();
  preg_match("/\\/comment_notify\\/disable\\/.+/", $mails[0]['body'], $output);
  $this
    ->drupalGet($output[0]);
  $this
    ->assertTrue($this
    ->getSession()
    ->getPage()
    ->hasContent("Your comment follow-up notification for this post was disabled. Thanks."));

  // Confirm that the notification has been disabled.
  $result = comment_notify_get_notification_type($comment['id']);
  $this
    ->assertEquals($result, COMMENT_NOTIFY_DISABLED, 'The notification has been disabled');

  // Tests that the user stopped receiving notifications.
  $this->container
    ->get('state')
    ->set('system.test_mail_collector', []);
  $this
    ->postComment($node
    ->toUrl()
    ->toString(), $this
    ->randomMachineName(), $this
    ->randomMachineName(), [
    'notify' => FALSE,
    'notify_type' => COMMENT_NOTIFY_ENTITY,
  ], [
    'name' => $this
      ->randomMachineName(),
    'mail' => $this
      ->getRandomEmailAddress(),
  ]);
  $captured_emails = $this->container
    ->get('state')
    ->get('system.test_mail_collector');
  $this
    ->assertEmpty($captured_emails, 'No notifications has been sent.');
}