function UserRoleAdminTest::testRoleWeightOrdering in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/user/src/Tests/UserRoleAdminTest.php \Drupal\user\Tests\UserRoleAdminTest::testRoleWeightOrdering()
Test user role weight change operation and ordering.
File
- core/
modules/ user/ src/ Tests/ UserRoleAdminTest.php, line 106 - Contains \Drupal\user\Tests\UserRoleAdminTest.
Class
- UserRoleAdminTest
- Tests adding, editing and deleting user roles and changing role weights.
Namespace
Drupal\user\TestsCode
function testRoleWeightOrdering() {
$this
->drupalLogin($this->adminUser);
$roles = user_roles();
$weight = count($roles);
$new_role_weights = array();
$saved_rids = array();
// Change the role weights to make the roles in reverse order.
$edit = array();
foreach ($roles as $role) {
$edit['entities[' . $role
->id() . '][weight]'] = $weight;
$new_role_weights[$role
->id()] = $weight;
$saved_rids[] = $role
->id();
$weight--;
}
$this
->drupalPostForm('admin/people/roles', $edit, t('Save order'));
$this
->assertText(t('The role settings have been updated.'), 'The role settings form submitted successfully.');
// Load up the user roles with the new weights.
drupal_static_reset('user_roles');
$roles = user_roles();
$rids = array();
// Test that the role weights have been correctly saved.
foreach ($roles as $role) {
$this
->assertEqual($role
->getWeight(), $new_role_weights[$role
->id()]);
$rids[] = $role
->id();
}
// The order of the roles should be reversed.
$this
->assertIdentical($rids, array_reverse($saved_rids));
}