class AddRoleUserTest in Drupal 9
Same name and namespace in other branches
- 8 core/modules/user/tests/src/Unit/Plugin/Action/AddRoleUserTest.php \Drupal\Tests\user\Unit\Plugin\Action\AddRoleUserTest
@coversDefaultClass \Drupal\user\Plugin\Action\AddRoleUser @group user
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitCompatibilityTrait, PhpUnitWarnings
- class \Drupal\Tests\user\Unit\Plugin\Action\RoleUserTestBase
- class \Drupal\Tests\user\Unit\Plugin\Action\AddRoleUserTest
- class \Drupal\Tests\user\Unit\Plugin\Action\RoleUserTestBase
Expanded class hierarchy of AddRoleUserTest
File
- core/
modules/ user/ tests/ src/ Unit/ Plugin/ Action/ AddRoleUserTest.php, line 11
Namespace
Drupal\Tests\user\Unit\Plugin\ActionView source
class AddRoleUserTest extends RoleUserTestBase {
/**
* Tests the execute method on a user with a role.
*/
public function testExecuteAddExistingRole() {
$this->account
->expects($this
->never())
->method('addRole');
$this->account
->expects($this
->any())
->method('hasRole')
->with($this
->equalTo('test_role_1'))
->will($this
->returnValue(TRUE));
$config = [
'rid' => 'test_role_1',
];
$add_role_plugin = new AddRoleUser($config, 'user_add_role_action', [
'type' => 'user',
], $this->userRoleEntityType);
$add_role_plugin
->execute($this->account);
}
/**
* Tests the execute method on a user without a specific role.
*/
public function testExecuteAddNonExistingRole() {
$this->account
->expects($this
->once())
->method('addRole');
$this->account
->expects($this
->any())
->method('hasRole')
->with($this
->equalTo('test_role_1'))
->will($this
->returnValue(FALSE));
$config = [
'rid' => 'test_role_1',
];
$add_role_plugin = new AddRoleUser($config, 'user_add_role_action', [
'type' => 'user',
], $this->userRoleEntityType);
$add_role_plugin
->execute($this->account);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AddRoleUserTest:: |
public | function | Tests the execute method on a user with a role. | |
AddRoleUserTest:: |
public | function | Tests the execute method on a user without a specific role. | |
PhpUnitWarnings:: |
private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
PhpUnitWarnings:: |
public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
RoleUserTestBase:: |
protected | property | The mocked account. | |
RoleUserTestBase:: |
protected | property | The user role entity type. | |
RoleUserTestBase:: |
protected | function |
Overrides UnitTestCase:: |
|
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
public static | function |