You are here

public function RemoveRoleUserTest::testExecuteRemoveExistingRole in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/tests/src/Unit/Plugin/Action/RemoveRoleUserTest.php \Drupal\Tests\user\Unit\Plugin\Action\RemoveRoleUserTest::testExecuteRemoveExistingRole()

Tests the execute method on a user with a role.

File

core/modules/user/tests/src/Unit/Plugin/Action/RemoveRoleUserTest.php, line 21
Contains \Drupal\Tests\user\Unit\Plugin\Action\RemoveRoleUserTest.

Class

RemoveRoleUserTest
@coversDefaultClass \Drupal\user\Plugin\Action\RemoveRoleUser @group user

Namespace

Drupal\Tests\user\Unit\Plugin\Action

Code

public function testExecuteRemoveExistingRole() {
  $this->account
    ->expects($this
    ->once())
    ->method('removeRole');
  $this->account
    ->expects($this
    ->any())
    ->method('hasRole')
    ->with($this
    ->equalTo('test_role_1'))
    ->will($this
    ->returnValue(TRUE));
  $config = array(
    'rid' => 'test_role_1',
  );
  $remove_role_plugin = new RemoveRoleUser($config, 'user_remove_role_action', array(
    'type' => 'user',
  ), $this->userRoleEntityType);
  $remove_role_plugin
    ->execute($this->account);
}