You are here

public function SecureSiteNameConflictFunctionalTest::testSecureSiteNameConflictUserEdit in Secure Site 7.2

Same name and namespace in other branches
  1. 6.2 securesite.test \SecureSiteNameConflictFunctionalTest::testSecureSiteNameConflictUserEdit()

Set user name to guest name.

File

./securesite.test, line 886
Tests for Secure Site module.

Class

SecureSiteNameConflictFunctionalTest
Functional tests for conflicts between guest name and user names.

Code

public function testSecureSiteNameConflictUserEdit() {
  $this
    ->drupalLogin($this->user);
  $this
    ->drupalPost('user/' . $this->user->uid . '/edit', array(
    'name' => $this->guest,
  ), 'Save');
  $this
    ->assertText("The name {$this->guest} is being used as the " . variable_get('site_name', 'Drupal') . " guest name.", t('Setting user name to guest name.'));
  $this
    ->assertTrue(db_query_range("SELECT uid FROM {users} WHERE name = :name", array(
    ':name' => $this->guest,
  ))
    ->fetchField() === FALSE, t('Checking for user with guest name.'));
}