RemoveRoleUserTest.php

Same filename and directory in other branches
  1. 9 core/modules/user/tests/src/Unit/Plugin/Action/RemoveRoleUserTest.php
  2. 8.9.x core/modules/user/tests/src/Unit/Plugin/Action/RemoveRoleUserTest.php
  3. 10 core/modules/user/tests/src/Unit/Plugin/Action/RemoveRoleUserTest.php

Namespace

Drupal\Tests\user\Unit\Plugin\Action

File

core/modules/user/tests/src/Unit/Plugin/Action/RemoveRoleUserTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\user\Unit\Plugin\Action;

use Drupal\user\Plugin\Action\RemoveRoleUser;

/**
 * @coversDefaultClass \Drupal\user\Plugin\Action\RemoveRoleUser
 * @group user
 */
class RemoveRoleUserTest extends RoleUserTestBase {
  
  /**
   * Tests the execute method on a user with a role.
   */
  public function testExecuteRemoveExistingRole() : void {
    $this->account
      ->expects($this->once())
      ->method('removeRole')
      ->willReturn($this->account);
    $this->account
      ->expects($this->any())
      ->method('hasRole')
      ->with($this->equalTo('test_role_1'))
      ->willReturn(TRUE);
    $config = [
      'rid' => 'test_role_1',
    ];
    $remove_role_plugin = new RemoveRoleUser($config, 'user_remove_role_action', [
      'type' => 'user',
    ], $this->userRoleEntityType);
    $remove_role_plugin->execute($this->account);
  }
  
  /**
   * Tests the execute method on a user without a specific role.
   */
  public function testExecuteRemoveNonExistingRole() : void {
    $this->account
      ->expects($this->never())
      ->method('removeRole')
      ->willReturn($this->account);
    $this->account
      ->expects($this->any())
      ->method('hasRole')
      ->with($this->equalTo('test_role_1'))
      ->willReturn(FALSE);
    $config = [
      'rid' => 'test_role_1',
    ];
    $remove_role_plugin = new RemoveRoleUser($config, 'user_remove_role_action', [
      'type' => 'user',
    ], $this->userRoleEntityType);
    $remove_role_plugin->execute($this->account);
  }

}

Classes

Title Deprecated Summary
RemoveRoleUserTest @coversDefaultClass \Drupal\user\Plugin\Action\RemoveRoleUser[[api-linebreak]] @group user

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.