Version 1
[yaffs-website] / web / core / modules / contact / tests / src / Functional / ContactStorageTest.php
diff --git a/web/core/modules/contact/tests/src/Functional/ContactStorageTest.php b/web/core/modules/contact/tests/src/Functional/ContactStorageTest.php
new file mode 100644 (file)
index 0000000..acacab4
--- /dev/null
@@ -0,0 +1,77 @@
+<?php
+
+namespace Drupal\Tests\contact\Functional;
+
+use Drupal\Component\Utility\Unicode;
+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 {
+
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public static $modules = [
+    'block',
+    'text',
+    'contact',
+    'field_ui',
+    'contact_storage_test',
+    'contact_test',
+  ];
+
+  /**
+   * Tests configuration options and the site-wide contact form.
+   */
+  public function testContactStorage() {
+    // 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 = Unicode::strtolower($this->randomMachineName(16)), $label = $this->randomMachineName(16), implode(',', [$mail]), '', TRUE, 'Your message has been sent.', [
+      'send_a_pony' => 1,
+    ]);
+    $this->assertText(t('Contact form @label has been added.', ['@label' => $label]));
+
+    // 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->assertText(t('Your email address'));
+    $this->assertNoText(t('Form'));
+    $this->submitContact($name = $this->randomMachineName(16), $mail, $subject = $this->randomMachineName(16), $id, $message = $this->randomMachineName(64));
+    $this->assertText(t('Your message has been sent.'));
+
+    $messages = Message::loadMultiple();
+    /** @var \Drupal\contact\Entity\Message $message */
+    $message = reset($messages);
+    $this->assertEqual($message->getContactForm()->id(), $id);
+    $this->assertTrue($message->getContactForm()->getThirdPartySetting('contact_storage_test', 'send_a_pony', FALSE));
+    $this->assertEqual($message->getSenderName(), $name);
+    $this->assertEqual($message->getSubject(), $subject);
+    $this->assertEqual($message->getSenderMail(), $mail);
+
+    $config = $this->config("contact.form.$id");
+    $this->assertEqual($config->get('id'), $id);
+  }
+
+}