You are here

public function SearchCommentTest::assertCommentAccess in Drupal 10

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

Update search index and search for comment.

@internal

File

core/modules/search/tests/src/Functional/SearchCommentTest.php, line 313

Class

SearchCommentTest
Tests integration searching comments.

Namespace

Drupal\Tests\search\Functional

Code

public function assertCommentAccess(bool $assume_access, string $message) : void {

  // Invoke search index update.
  \Drupal::service('search.index')
    ->markForReindex('node_search', $this->node
    ->id());
  $this
    ->cronRun();

  // Search for the comment subject.
  $edit = [
    'keys' => "'" . $this->commentSubject . "'",
  ];
  $this
    ->drupalGet('search/node');
  $this
    ->submitForm($edit, 'Search');
  try {
    if ($assume_access) {
      $this
        ->assertSession()
        ->pageTextContains($this->node
        ->label());
      $this
        ->assertSession()
        ->pageTextContains($this->commentSubject);
    }
    else {
      $this
        ->assertSession()
        ->pageTextContains('Your search yielded no results.');
    }
  } catch (ResponseTextException $exception) {
    $this
      ->fail($message);
  }
}