You are here

SearchEmbedFormTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/search/src/Tests/SearchEmbedFormTest.php

File

core/modules/search/src/Tests/SearchEmbedFormTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\search\Tests\SearchEmbedFormTest.
 */
namespace Drupal\search\Tests;


/**
 * Verifies that a form embedded in search results works.
 *
 * @group search
 */
class SearchEmbedFormTest extends SearchTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'search_embedded_form',
  );

  /**
   * Node used for testing.
   *
   * @var \Drupal\node\NodeInterface
   */
  protected $node;

  /**
   * Count of how many times the form has been submitted.
   *
   * @var int
   */
  protected $submitCount = 0;
  protected function setUp() {
    parent::setUp();

    // Create a user and a node, and update the search index.
    $test_user = $this
      ->drupalCreateUser(array(
      'access content',
      'search content',
      'administer nodes',
    ));
    $this
      ->drupalLogin($test_user);
    $this->node = $this
      ->drupalCreateNode();
    $this->container
      ->get('plugin.manager.search')
      ->createInstance('node_search')
      ->updateIndex();
    search_update_totals();

    // Set up a dummy initial count of times the form has been submitted.
    $this->submitCount = \Drupal::state()
      ->get('search_embedded_form.submit_count');
    $this
      ->refreshVariables();
  }

  /**
   * Tests that the embedded form appears and can be submitted.
   */
  function testEmbeddedForm() {

    // First verify we can submit the form from the module's page.
    $this
      ->drupalPostForm('search_embedded_form', array(
      'name' => 'John',
    ), t('Send away'));
    $this
      ->assertText(t('Test form was submitted'), 'Form message appears');
    $count = \Drupal::state()
      ->get('search_embedded_form.submit_count');
    $this
      ->assertEqual($this->submitCount + 1, $count, 'Form submission count is correct');
    $this->submitCount = $count;

    // Now verify that we can see and submit the form from the search results.
    $this
      ->drupalGet('search/node', array(
      'query' => array(
        'keys' => $this->node
          ->label(),
      ),
    ));
    $this
      ->assertText(t('Your name'), 'Form is visible');
    $this
      ->drupalPostForm(NULL, array(
      'name' => 'John',
    ), t('Send away'));
    $this
      ->assertText(t('Test form was submitted'), 'Form message appears');
    $count = \Drupal::state()
      ->get('search_embedded_form.submit_count');
    $this
      ->assertEqual($this->submitCount + 1, $count, 'Form submission count is correct');
    $this->submitCount = $count;

    // Now verify that if we submit the search form, it doesn't count as
    // our form being submitted.
    $this
      ->drupalPostForm('search', array(
      'keys' => 'foo',
    ), t('Search'));
    $this
      ->assertNoText(t('Test form was submitted'), 'Form message does not appear');
    $count = \Drupal::state()
      ->get('search_embedded_form.submit_count');
    $this
      ->assertEqual($this->submitCount, $count, 'Form submission count is correct');
    $this->submitCount = $count;
  }

}

Classes

Namesort descending Description
SearchEmbedFormTest Verifies that a form embedded in search results works.