function UserSubAdminTest::testSubAdmin

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Functional/UserSubAdminTest.php \Drupal\Tests\user\Functional\UserSubAdminTest::testSubAdmin()
  2. 8.9.x core/modules/user/tests/src/Functional/UserSubAdminTest.php \Drupal\Tests\user\Functional\UserSubAdminTest::testSubAdmin()
  3. 11.x core/modules/user/tests/src/Functional/UserSubAdminTest.php \Drupal\Tests\user\Functional\UserSubAdminTest::testSubAdmin()

Tests create and cancel forms as 'sub-admin'.

File

core/modules/user/tests/src/Functional/UserSubAdminTest.php, line 29

Class

UserSubAdminTest
Test 'sub-admin' account with permission to edit some users but without 'administer users' permission.

Namespace

Drupal\Tests\user\Functional

Code

public function testSubAdmin() : void {
  $user = $this->drupalCreateUser([
    'sub-admin',
  ]);
  $this->drupalLogin($user);
  // Test that the create user page has admin fields.
  $this->drupalGet('admin/people/create');
  $this->assertSession()
    ->fieldExists("edit-name");
  $this->assertSession()
    ->fieldExists("edit-notify");
  // Not 'status' or 'roles' as they require extra permission.
  $this->assertSession()
    ->fieldNotExists("edit-status-0");
  $this->assertSession()
    ->fieldNotExists("edit-role");
  // Test that create user gives an admin style message.
  $edit = [
    'name' => $this->randomMachineName(),
    'mail' => $this->randomMachineName() . '@example.com',
    'pass[pass1]' => $pass = $this->randomString(),
    'pass[pass2]' => $pass,
    'notify' => FALSE,
  ];
  $this->drupalGet('admin/people/create');
  $this->submitForm($edit, 'Create new account');
  $this->assertSession()
    ->pageTextContains('Created a new user account for ' . $edit['name'] . '. No email has been sent.');
  // Test that the cancel user page has admin fields.
  $cancel_user = $this->createUser();
  $this->drupalGet('user/' . $cancel_user->id() . '/cancel');
  $this->assertSession()
    ->responseContains('Are you sure you want to cancel the account ' . $cancel_user->getAccountName() . '?');
  $this->assertSession()
    ->responseContains('Disable the account and keep its content.');
  // Test that cancel confirmation gives an admin style message.
  $this->submitForm([], 'Confirm');
  $this->assertSession()
    ->pageTextContains('Account ' . $cancel_user->getAccountName() . ' has been disabled.');
  // Repeat with permission to select account cancellation method.
  $user->addRole($this->drupalCreateRole([
    'select account cancellation method',
  ]))
    ->save();
  $cancel_user = $this->createUser();
  $this->drupalGet('user/' . $cancel_user->id() . '/cancel');
  $this->assertSession()
    ->pageTextContains('Cancellation method');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.