ContactStorageTest.php

Same filename and directory in other branches
  1. 9 core/modules/contact/tests/src/Functional/ContactStorageTest.php
  2. 8.9.x core/modules/contact/tests/src/Functional/ContactStorageTest.php
  3. 10 core/modules/contact/tests/src/Functional/ContactStorageTest.php

Namespace

Drupal\Tests\contact\Functional

File

core/modules/contact/tests/src/Functional/ContactStorageTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\contact\Functional;

use Drupal\contact\Entity\Message;
use Drupal\user\RoleInterface;

/**
 * Tests storing contact messages.
 *
 * Note that the various test methods in ContactSitewideTest are also run by
 * this test. This is by design to ensure that regular contact.module functions
 * continue to work when a storage handler other than ContentEntityNullStorage
 * is enabled for contact Message entities.
 *
 * @group contact
 */
class ContactStorageTest extends ContactSitewideTest {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'block',
    'text',
    'contact',
    'field_ui',
    'contact_storage_test',
    'contact_test',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * Tests configuration options and the site-wide contact form.
   */
  public function testContactStorage() : void {
    // Create and log in administrative user.
    $admin_user = $this->drupalCreateUser([
      'access site-wide contact form',
      'administer contact forms',
      'administer users',
      'administer account settings',
      'administer contact_message fields',
    ]);
    $this->drupalLogin($admin_user);
    // Create first valid contact form.
    $mail = 'simpletest@example.com';
    $this->addContactForm($id = $this->randomMachineName(16), $label = $this->randomMachineName(16), implode(',', [
      $mail,
    ]), '', TRUE, 'Your message has been sent.', [
      'send_a_pony' => 1,
    ]);
    $this->assertSession()
      ->pageTextContains('Contact form ' . $label . ' has been added.');
    // Ensure that anonymous can submit site-wide contact form.
    user_role_grant_permissions(RoleInterface::ANONYMOUS_ID, [
      'access site-wide contact form',
    ]);
    $this->drupalLogout();
    $this->drupalGet('contact');
    $this->assertSession()
      ->pageTextContains('Your email address');
    $this->assertSession()
      ->pageTextNotContains('Form');
    $this->submitContact($name = $this->randomMachineName(16), $mail, $subject = $this->randomMachineName(16), $id, $message = $this->randomMachineName(64));
    $this->assertSession()
      ->pageTextContains('Your message has been sent.');
    $messages = Message::loadMultiple();
    /** @var \Drupal\contact\Entity\Message $message */
    $message = reset($messages);
    $this->assertEquals($id, $message->getContactForm()
      ->id());
    $this->assertTrue($message->getContactForm()
      ->getThirdPartySetting('contact_storage_test', 'send_a_pony', FALSE));
    $this->assertEquals($name, $message->getSenderName());
    $this->assertEquals($subject, $message->getSubject());
    $this->assertEquals($mail, $message->getSenderMail());
    $config = $this->config("contact.form.{$id}");
    $this->assertEquals($id, $config->get('id'));
  }

}

Classes

Title Deprecated Summary
ContactStorageTest Tests storing contact messages.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.