You are here

public function SearchBlockTest::testSearchFormBlock in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/search/tests/src/Functional/SearchBlockTest.php \Drupal\Tests\search\Functional\SearchBlockTest::testSearchFormBlock()

Tests that the search form block can be placed and works.

File

core/modules/search/tests/src/Functional/SearchBlockTest.php, line 51

Class

SearchBlockTest
Tests if the search form block is available.

Namespace

Drupal\Tests\search\Functional

Code

public function testSearchFormBlock() {

  // Test availability of the search block in the admin "Place blocks" list.
  $this
    ->drupalGet('admin/structure/block');
  $this
    ->getSession()
    ->getPage()
    ->findLink('Place block')
    ->click();
  $this
    ->assertSession()
    ->linkByHrefExists('/admin/structure/block/add/search_form_block/classy', 0, 'Did not find the search block in block candidate list.');
  $block = $this
    ->drupalPlaceBlock('search_form_block');
  $this
    ->drupalGet('');
  $this
    ->assertSession()
    ->pageTextContains($block
    ->label());

  // Check that name attribute is not empty.
  $pattern = "//input[@type='submit' and @name='']";
  $elements = $this
    ->xpath($pattern);
  $this
    ->assertTrue(empty($elements), 'The search input field does not have empty name attribute.');

  // Test a normal search via the block form, from the front page.
  $terms = [
    'keys' => 'test',
  ];
  $this
    ->drupalGet('');
  $this
    ->submitForm($terms, 'Search');
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $this
    ->assertSession()
    ->pageTextContains('Your search yielded no results');

  // Test a search from the block on a 404 page.
  $this
    ->drupalGet('foo');
  $this
    ->assertSession()
    ->statusCodeEquals(404);
  $this
    ->submitForm($terms, 'Search');
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $this
    ->assertSession()
    ->pageTextContains('Your search yielded no results');
  $visibility = $block
    ->getVisibility();
  $visibility['request_path']['pages'] = 'search';
  $block
    ->setVisibilityConfig('request_path', $visibility['request_path']);
  $this
    ->drupalGet('');
  $this
    ->submitForm($terms, 'Search');
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $this
    ->assertSession()
    ->pageTextContains('Your search yielded no results');

  // Confirm that the form submits to the default search page.

  /** @var \Drupal\search\SearchPageRepositoryInterface $search_page_repository */
  $search_page_repository = \Drupal::service('search.search_page_repository');
  $entity_id = $search_page_repository
    ->getDefaultSearchPage();
  $this
    ->assertEquals($this
    ->getUrl(), Url::fromRoute('search.view_' . $entity_id, [], [
    'query' => [
      'keys' => $terms['keys'],
    ],
    'absolute' => TRUE,
  ])
    ->toString(), 'Submitted to correct URL.');

  // Test an empty search via the block form, from the front page.
  $terms = [
    'keys' => '',
  ];
  $this
    ->drupalGet('');
  $this
    ->submitForm($terms, 'Search');
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $this
    ->assertSession()
    ->pageTextContains('Please enter some keywords');

  // Confirm that the user is redirected to the search page, when form is
  // submitted empty.
  $this
    ->assertEquals($this
    ->getUrl(), Url::fromRoute('search.view_' . $entity_id, [], [
    'query' => [
      'keys' => '',
    ],
    'absolute' => TRUE,
  ])
    ->toString(), 'Redirected to correct URL.');

  // Test that after entering a too-short keyword in the form, you can then
  // search again with a longer keyword. First test using the block form.
  $this
    ->drupalGet('node');
  $this
    ->submitForm([
    'keys' => $this
      ->randomMachineName(1),
  ], 'Search');
  $this
    ->assertSession()
    ->pageTextContains('You must include at least one keyword to match in the content');
  $this
    ->assertSession()
    ->pageTextNotContains('Please enter some keywords');
  $this
    ->submitForm([
    'keys' => $this
      ->randomMachineName(),
  ], 'Search', 'search-block-form');
  $this
    ->assertSession()
    ->pageTextNotContains('You must include at least one keyword to match in the content');

  // Same test again, using the search page form for the second search this
  // time.
  $this
    ->drupalGet('node');
  $this
    ->submitForm([
    'keys' => $this
      ->randomMachineName(1),
  ], 'Search');
  $this
    ->submitForm([
    'keys' => $this
      ->randomMachineName(),
  ], 'Search', 'search-form');
  $this
    ->assertSession()
    ->pageTextNotContains('You must include at least one keyword to match in the content');

  // Edit the block configuration so that it searches users instead of nodes,
  // and test.
  $this
    ->drupalGet('admin/structure/block/manage/' . $block
    ->id());
  $this
    ->submitForm([
    'settings[page_id]' => 'user_search',
  ], 'Save block');
  $name = $this->adminUser
    ->getAccountName();
  $this
    ->drupalGet('node');
  $this
    ->submitForm([
    'keys' => $name,
  ], 'Search');
  $this
    ->assertSession()
    ->linkExists($name);
}