public function RemoveRoleUserTest::testExecuteRemoveNonExistingRole

Tests the execute method on a user without a specific role.

File

drupal/core/modules/user/tests/Drupal/user/Tests/Plugin/Action/RemoveRoleUserTest.php, line 68
Contains \Drupal\user\Tests\Plugin\Action\RemoveRoleUserTest.

Class

RemoveRoleUserTest
Tests the role remove plugin.

Namespace

Drupal\user\Tests\Plugin\Action

Code

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