You are here

class UserRoleTest in Feeds 8.3

Same name in this branch
  1. 8.3 tests/src/Unit/Feeds/Target/UserRoleTest.php \Drupal\Tests\feeds\Unit\Feeds\Target\UserRoleTest
  2. 8.3 tests/src/Kernel/Feeds/Target/UserRoleTest.php \Drupal\Tests\feeds\Kernel\Feeds\Target\UserRoleTest

@coversDefaultClass \Drupal\feeds\Feeds\Target\UserRole @group feeds

Hierarchy

Expanded class hierarchy of UserRoleTest

File

tests/src/Unit/Feeds/Target/UserRoleTest.php, line 20

Namespace

Drupal\Tests\feeds\Unit\Feeds\Target
View source
class UserRoleTest extends ConfigEntityReferenceTestBase {

  /**
   * {@inheritdoc}
   */
  public function setUp() {
    parent::setUp();
    $this->transliteration
      ->transliterate('Bar', LanguageInterface::LANGCODE_DEFAULT, '_')
      ->willReturn('Bar');

    // Create a role.
    $foo_role = $this
      ->prophesize(RoleInterface::class);
    $foo_role
      ->label()
      ->willReturn('Foo');

    // Entity storage (needed for entity queries).
    $this->entityStorage = $this
      ->prophesize(RoleStorageInterface::class);
    $this->entityStorage
      ->loadMultiple()
      ->willReturn([
      RoleInterface::ANONYMOUS_ID => $this
        ->createMock(RoleInterface::class),
      RoleInterface::AUTHENTICATED_ID => $this
        ->createMock(RoleInterface::class),
      'foo' => $foo_role
        ->reveal(),
    ]);
    $this->entityTypeManager
      ->getStorage('user_role')
      ->willReturn($this->entityStorage);
    $this->typedConfigManager
      ->getDefinition('user.role.*')
      ->willReturn([
      'label' => 'User role settings',
      'mapping' => [
        'uuid' => [
          'type' => 'uuid',
          'label' => 'UUID',
        ],
        'id' => [
          'type' => 'string',
          'label' => 'ID',
        ],
        'label' => [
          'type' => 'label',
          'label' => 'Label',
        ],
      ],
    ]);
    $this
      ->buildContainer();
  }

  /**
   * {@inheritdoc}
   */
  protected function createTargetPluginInstance(array $configuration = []) {
    $configuration += [
      'feed_type' => $this
        ->createMock(FeedTypeInterface::class),
      'target_definition' => $this
        ->createTargetDefinitionMock(),
      'reference_by' => 'label',
    ];
    return new UserRole($configuration, 'user_role', [], $this->entityTypeManager
      ->reveal(), $this->entityFinder
      ->reveal(), $this->transliteration
      ->reveal(), $this->typedConfigManager
      ->reveal());
  }

  /**
   * {@inheritdoc}
   */
  protected function getTargetClass() {
    return UserRole::class;
  }

  /**
   * {@inheritdoc}
   */
  protected function getEntityStorageClass() {
    return RoleStorageInterface::class;
  }

  /**
   * {@inheritdoc}
   */
  protected function getReferencableEntityTypeId() {
    return 'user_role';
  }

  /**
   * {@inheritdoc}
   */
  protected function createReferencableEntityType() {
    $referenceable_entity_type = $this
      ->prophesize(ConfigEntityTypeInterface::class);
    $referenceable_entity_type
      ->entityClassImplements(ConfigEntityInterface::class)
      ->willReturn(TRUE)
      ->shouldBeCalled();
    $referenceable_entity_type
      ->getKey('label')
      ->willReturn('label');
    $referenceable_entity_type
      ->getConfigPrefix()
      ->willReturn('user.role');
    $this->entityTypeManager
      ->getDefinition('user_role')
      ->willReturn($referenceable_entity_type)
      ->shouldBeCalled();
    return $referenceable_entity_type;
  }

  /**
   * Tests finding a role by label.
   *
   * @covers ::prepareValue
   * @covers ::findEntity
   */
  public function testPrepareValue() {
    $this->entityFinder
      ->findEntities($this
      ->getReferencableEntityTypeId(), 'label', 'Foo')
      ->willReturn([
      'foo',
    ])
      ->shouldBeCalled();
    $method = $this
      ->getProtectedClosure($this
      ->createTargetPluginInstance(), 'prepareValue');
    $values = [
      'target_id' => 'Foo',
    ];
    $method(0, $values);
    $this
      ->assertSame($values, [
      'target_id' => 'foo',
    ]);
  }

  /**
   * Tests prepareValue() method without match.
   *
   * @covers ::prepareValue
   * @covers ::findEntity
   */
  public function testPrepareValueReferenceNotFound() {
    $this->entityFinder
      ->findEntities($this
      ->getReferencableEntityTypeId(), 'label', 'Bar')
      ->willReturn([])
      ->shouldBeCalled();
    $method = $this
      ->getProtectedClosure($this
      ->createTargetPluginInstance(), 'prepareValue');
    $values = [
      'target_id' => 'Bar',
    ];
    $this
      ->expectException(ReferenceNotFoundException::class);
    $this
      ->expectExceptionMessage("The role <em class=\"placeholder\">Bar</em> cannot be assigned because it does not exist.");
    $method(0, $values);
  }

  /**
   * Tests referencing a non-allowed role.
   *
   * @covers ::prepareValue
   * @covers ::findEntity
   */
  public function testPrepareValueNonAllowedRole() {
    $this->entityFinder
      ->findEntities($this
      ->getReferencableEntityTypeId(), 'label', 'Foo')
      ->willReturn([
      'foo',
    ])
      ->shouldBeCalled();

    // The 'Foo' role may not be used.
    $target_plugin = $this
      ->createTargetPluginInstance([
      'allowed_roles' => [
        'foo' => FALSE,
      ],
    ]);
    $method = $this
      ->getProtectedClosure($target_plugin, 'prepareValue');
    $values = [
      'target_id' => 'Foo',
    ];
    $this
      ->expectException(TargetValidationException::class, 'The role <em class=\\"placeholder\\">foo</em> may not be referenced.');
    $method(0, $values);
  }

  /**
   * Tests referencing a newly created role.
   *
   * @covers ::prepareValue
   * @covers ::findEntity
   * @covers ::createRole
   */
  public function testPrepareValueWithNewRole() {
    $this->entityFinder
      ->findEntities($this
      ->getReferencableEntityTypeId(), 'label', 'Bar')
      ->willReturn([])
      ->shouldBeCalled();
    $role = $this
      ->prophesize(RoleInterface::class);
    $role
      ->save()
      ->willReturn(TRUE);
    $role
      ->id()
      ->willReturn('bar');
    $this->entityStorage
      ->create([
      'id' => 'bar',
      'label' => 'Bar',
    ])
      ->willReturn($role
      ->reveal())
      ->shouldBeCalled();
    $target_plugin = $this
      ->createTargetPluginInstance([
      'autocreate' => TRUE,
    ]);
    $method = $this
      ->getProtectedClosure($target_plugin, 'prepareValue');
    $values = [
      'target_id' => 'Bar',
    ];
    $method(0, $values);
    $this
      ->assertSame($values, [
      'target_id' => 'bar',
    ]);
  }

  /**
   * Tests prepareValue() with passing a space as value.
   *
   * @covers ::prepareValue
   * @covers ::findEntity
   * @covers ::createRole
   */
  public function testPrepareValueEmptyFeedWithAutoCreateRole() {
    $target_plugin = $this
      ->createTargetPluginInstance([
      'autocreate' => TRUE,
    ]);
    $method = $this
      ->getProtectedClosure($target_plugin, 'prepareValue');
    $values = [
      'target_id' => ' ',
    ];
    $this
      ->expectException(EmptyFeedException::class);
    $method(0, $values);
  }

  /**
   * @covers ::getSummary
   */
  public function testGetSummary() {
    $expected = [
      'Reference by: <em class="placeholder">Label</em>',
      'Allowed roles: <em class="placeholder">Foo</em>',
      'Only assign existing roles',
      'Revoke roles: no',
    ];
    $summary = $this
      ->createTargetPluginInstance()
      ->getSummary();
    foreach ($summary as $key => $value) {
      $summary[$key] = (string) $value;
    }
    $this
      ->assertEquals($expected, $summary);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigEntityReferenceTestBase::$transliteration protected property The transliteration manager.
ConfigEntityReferenceTestBase::$typedConfigManager protected property The manager for managing config schema type plugins.
EntityReferenceTestBase::$entityFinder protected property The Feeds entity finder service.
EntityReferenceTestBase::$entityStorage protected property The entity storage prophecy used in the test.
EntityReferenceTestBase::$entityTypeManager protected property The entity type manager prophecy used in the test.
EntityReferenceTestBase::buildContainer protected function Builds the Drupal service container.
EntityReferenceTestBase::createTargetDefinitionMock protected function Creates a Feeds target definition mock.
EntityReferenceTestBase::testPrepareTarget public function @covers ::prepareTarget Overrides FieldTargetTestBase::testPrepareTarget 1
EntityReferenceTestBase::testPrepareValueEmptyFeed public function Tests prepareValue() without passing values. 1
FeedsMockingTrait::getMockAccount protected function Mocks an account object.
FeedsMockingTrait::getMockedAccountSwitcher protected function Returns a mocked AccountSwitcher object.
FeedsMockingTrait::getMockFeed protected function Returns a mocked feed entity.
FeedsMockingTrait::getMockFeedType protected function Returns a mocked feed type entity.
FeedsMockingTrait::getMockFieldDefinition protected function Mocks a field definition. 1
FeedsMockingTrait::getMockFileSystem protected function Mocks the file system.
FeedsReflectionTrait::callProtectedMethod protected function Calls a protected method on the given object.
FeedsReflectionTrait::getMethod protected function Gets a ReflectionMethod for a class method.
FeedsReflectionTrait::getProtectedClosure protected function Returns a dynamically created closure for the object's method.
FeedsReflectionTrait::setProtectedProperty protected function Sets a protected property.
FeedsUnitTestCase::absolutePath protected function Returns the absolute directory path of the Feeds module.
FeedsUnitTestCase::defineConstants protected function Defines stub constants.
FeedsUnitTestCase::getMockStreamWrapperManager protected function Returns a mock stream wrapper manager.
FeedsUnitTestCase::resourcesPath protected function Returns the absolute directory path of the resources folder.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UserRoleTest::createReferencableEntityType protected function Creates a referencable entity type instance. Overrides EntityReferenceTestBase::createReferencableEntityType
UserRoleTest::createTargetPluginInstance protected function Creates a new target plugin instance. Overrides EntityReferenceTestBase::createTargetPluginInstance
UserRoleTest::getEntityStorageClass protected function Returns the entity storage class name to use in this test. Overrides EntityReferenceTestBase::getEntityStorageClass
UserRoleTest::getReferencableEntityTypeId protected function Returns the entity type machine name to use in this test. Overrides EntityReferenceTestBase::getReferencableEntityTypeId
UserRoleTest::getTargetClass protected function Returns the target class. Overrides FieldTargetTestBase::getTargetClass
UserRoleTest::setUp public function Overrides ConfigEntityReferenceTestBase::setUp
UserRoleTest::testGetSummary public function @covers ::getSummary
UserRoleTest::testPrepareValue public function Tests finding a role by label.
UserRoleTest::testPrepareValueEmptyFeedWithAutoCreateRole public function Tests prepareValue() with passing a space as value.
UserRoleTest::testPrepareValueNonAllowedRole public function Tests referencing a non-allowed role.
UserRoleTest::testPrepareValueReferenceNotFound public function Tests prepareValue() method without match.
UserRoleTest::testPrepareValueWithNewRole public function Tests referencing a newly created role.