class AddRoleUserTest

Tests the role add plugin.

Hierarchy

  • class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase

Expanded class hierarchy of AddRoleUserTest

See also

\Drupal\user\Plugin\Action\AddRoleUser

File

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

Namespace

Drupal\user\Tests\Plugin\Action
View source
class AddRoleUserTest extends UnitTestCase {

  /**
   * The mocked account.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $account;
  public static function getInfo() {
    return array(
      'name' => 'Add user plugin',
      'description' => 'Tests the role add plugin',
      'group' => 'User',
    );
  }

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->account = $this
      ->getMockBuilder('Drupal\\user\\Plugin\\Core\\Entity\\User')
      ->disableOriginalConstructor()
      ->getMock();
  }

  /**
   * 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 = array(
      'rid' => 'test_role_1',
    );
    $remove_role_plugin = new AddRoleUser($config, 'user_add_role_action', array(
      'type' => 'user',
    ));
    $remove_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 = array(
      'rid' => 'test_role_1',
    );
    $remove_role_plugin = new AddRoleUser($config, 'user_remove_role_action', array(
      'type' => 'user',
    ));
    $remove_role_plugin
      ->execute($this->account);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AddRoleUserTest::$account protected property The mocked account.
AddRoleUserTest::getInfo public static function This method exists to support the simpletest UI runner. Overrides UnitTestCase::getInfo
AddRoleUserTest::setUp protected function
AddRoleUserTest::testExecuteAddExistingRole public function Tests the execute method on a user with a role.
AddRoleUserTest::testExecuteAddNonExistingRole public function Tests the execute method on a user without a specific role.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::randomName public static function Generates a random string containing letters and numbers.