You are here

public function SearchEmbedFormTest::testEmbeddedForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/search/tests/src/Functional/SearchEmbedFormTest.php \Drupal\Tests\search\Functional\SearchEmbedFormTest::testEmbeddedForm()
  2. 10 core/modules/search/tests/src/Functional/SearchEmbedFormTest.php \Drupal\Tests\search\Functional\SearchEmbedFormTest::testEmbeddedForm()

Tests that the embedded form appears and can be submitted.

File

core/modules/search/tests/src/Functional/SearchEmbedFormTest.php, line 63

Class

SearchEmbedFormTest
Verifies that a form embedded in search results works.

Namespace

Drupal\Tests\search\Functional

Code

public function testEmbeddedForm() {

  // First verify we can submit the form from the module's page.
  $this
    ->drupalPostForm('search_embedded_form', [
    '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', [
    'query' => [
      'keys' => $this->node
        ->label(),
    ],
  ]);
  $this
    ->assertText(t('Your name'), 'Form is visible');
  $this
    ->drupalPostForm(NULL, [
    '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', [
    '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;
}