You are here

WebhookHashTest.php in Mailchimp 2.x

Same filename and directory in other branches
  1. 8 tests/src/Functional/WebhookHashTest.php

File

tests/src/Functional/WebhookHashTest.php
View source
<?php

namespace Drupal\Tests\mailchimp\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Tests Mailchimp webhook protection.
 *
 * @group mailchimp
 */
class WebhookHashTest extends BrowserTestBase {

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'mailchimp',
  ];

  /**
   * Tests configuring a text editor for an existing text format.
   */
  public function testWebhook() {

    // If there are no settings, any request should work.
    $this
      ->drupalGet('mailchimp/webhook/foo');
    $this
      ->assertSession()
      ->statusCodeEquals(200);

    // If a hash is set, an invalid hash should fail.
    $this
      ->config('mailchimp.settings')
      ->set('webhook_hash', 'bar')
      ->save();
    $this
      ->drupalGet('mailchimp/webhook/foo');
    $this
      ->assertSession()
      ->statusCodeEquals(403);

    // If a hash is set and it matches, the request should work.
    $this
      ->drupalGet('mailchimp/webhook/bar');
    $this
      ->assertSession()
      ->statusCodeEquals(200);
  }

}

Classes

Namesort descending Description
WebhookHashTest Tests Mailchimp webhook protection.