public function UserRoleAdminTest::testRoleWeightOrdering in Drupal 9
Same name and namespace in other branches
- 8 core/modules/user/tests/src/Functional/UserRoleAdminTest.php \Drupal\Tests\user\Functional\UserRoleAdminTest::testRoleWeightOrdering()
- 10 core/modules/user/tests/src/Functional/UserRoleAdminTest.php \Drupal\Tests\user\Functional\UserRoleAdminTest::testRoleWeightOrdering()
Tests user role weight change operation and ordering.
File
- core/modules/ user/ tests/ src/ Functional/ UserRoleAdminTest.php, line 108 
Class
- UserRoleAdminTest
- Tests adding, editing and deleting user roles and changing role weights.
Namespace
Drupal\Tests\user\FunctionalCode
public function testRoleWeightOrdering() {
  $this
    ->drupalLogin($this->adminUser);
  $roles = user_roles();
  $weight = count($roles);
  $new_role_weights = [];
  $saved_rids = [];
  // Change the role weights to make the roles in reverse order.
  $edit = [];
  foreach ($roles as $role) {
    $edit['entities[' . $role
      ->id() . '][weight]'] = $weight;
    $new_role_weights[$role
      ->id()] = $weight;
    $saved_rids[] = $role
      ->id();
    $weight--;
  }
  $this
    ->drupalGet('admin/people/roles');
  $this
    ->submitForm($edit, 'Save');
  $this
    ->assertSession()
    ->pageTextContains('The role settings have been updated.');
  // Load up the user roles with the new weights.
  $roles = user_roles();
  $rids = [];
  // Test that the role weights have been correctly saved.
  foreach ($roles as $role) {
    $this
      ->assertEquals($role
      ->getWeight(), $new_role_weights[$role
      ->id()]);
    $rids[] = $role
      ->id();
  }
  // The order of the roles should be reversed.
  $this
    ->assertSame(array_reverse($saved_rids), $rids);
}