function UserAutocompleteTest::testUserAutocomplete

Tests access to user autocompletion and verify the correct results.

File

drupal/core/modules/user/lib/Drupal/user/Tests/UserAutocompleteTest.php, line 35
Definition of Drupal\user\Tests\UserAutocompleteTest.

Class

UserAutocompleteTest
Test user autocompletion.

Namespace

Drupal\user\Tests

Code

function testUserAutocomplete() {

  // Check access from unprivileged user, should be denied.
  $this
    ->drupalLogin($this->unprivileged_user);
  $this
    ->drupalGet('user/autocomplete', array(
    'query' => array(
      'q' => $this->unprivileged_user->name[0],
    ),
  ));
  $this
    ->assertResponse(403, 'Autocompletion access denied to user without permission.');

  // Check access from privileged user.
  $this
    ->drupalLogout();
  $this
    ->drupalLogin($this->privileged_user);
  $this
    ->drupalGet('user/autocomplete', array(
    'query' => array(
      'q' => $this->unprivileged_user->name[0],
    ),
  ));
  $this
    ->assertResponse(200, 'Autocompletion access allowed.');

  // Using first letter of the user's name, make sure the user's full name is in the results.
  $this
    ->assertRaw($this->unprivileged_user->name, 'User name found in autocompletion results.');
}