function UserUserSearchTestCase::testUserSearch

File

drupal/modules/user/user.test, line 2388
Tests for user.module.

Class

UserUserSearchTestCase
Test user search.

Code

function testUserSearch() {
  $user1 = $this
    ->drupalCreateUser(array(
    'access user profiles',
    'search content',
    'use advanced search',
  ));
  $this
    ->drupalLogin($user1);
  $keys = $user1->mail;
  $edit = array(
    'keys' => $keys,
  );
  $this
    ->drupalPost('search/user/', $edit, t('Search'));
  $this
    ->assertNoText($keys);
  $this
    ->drupalLogout();
  $user2 = $this
    ->drupalCreateUser(array(
    'administer users',
    'access user profiles',
    'search content',
    'use advanced search',
  ));
  $this
    ->drupalLogin($user2);
  $keys = $user2->mail;
  $edit = array(
    'keys' => $keys,
  );
  $this
    ->drupalPost('search/user/', $edit, t('Search'));
  $this
    ->assertText($keys);

  // Verify that wildcard search works.
  $keys = $user1->name;
  $keys = substr($keys, 0, 2) . '*' . substr($keys, 4, 2);
  $edit = array(
    'keys' => $keys,
  );
  $this
    ->drupalPost('search/user/', $edit, t('Search'));
  $this
    ->assertText($user1->name, 'Search for username wildcard resulted in user name on page for administrative user.');

  // Verify that wildcard search works for email.
  $keys = $user1->mail;
  $keys = substr($keys, 0, 2) . '*' . substr($keys, 4, 2);
  $edit = array(
    'keys' => $keys,
  );
  $this
    ->drupalPost('search/user/', $edit, t('Search'));
  $this
    ->assertText($user1->name, 'Search for email wildcard resulted in user name on page for administrative user.');

  // Create a blocked user.
  $blocked_user = $this
    ->drupalCreateUser();
  $edit = array(
    'status' => 0,
  );
  $blocked_user = user_save($blocked_user, $edit);

  // Verify that users with "administer users" permissions can see blocked
  // accounts in search results.
  $edit = array(
    'keys' => $blocked_user->name,
  );
  $this
    ->drupalPost('search/user/', $edit, t('Search'));
  $this
    ->assertText($blocked_user->name, 'Blocked users are listed on the user search results for users with the "administer users" permission.');

  // Verify that users without "administer users" permissions do not see
  // blocked accounts in search results.
  $this
    ->drupalLogin($user1);
  $edit = array(
    'keys' => $blocked_user->name,
  );
  $this
    ->drupalPost('search/user/', $edit, t('Search'));
  $this
    ->assertNoText($blocked_user->name, 'Blocked users are hidden from the user search results.');
  $this
    ->drupalLogout();
}