You are here

class EntityReferenceTest in Feeds 8.3

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

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

Hierarchy

Expanded class hierarchy of EntityReferenceTest

File

tests/src/Unit/Feeds/Target/EntityReferenceTest.php, line 18

Namespace

Drupal\Tests\feeds\Unit\Feeds\Target
View source
class EntityReferenceTest extends EntityReferenceTestBase {

  /**
   * Field manager used in the test.
   *
   * @var \Prophecy\Prophecy\ProphecyInterface|\Drupal\Core\Entity\EntityFieldManagerInterface
   */
  protected $entityFieldManager;

  /**
   * {@inheritdoc}
   */
  public function setUp() {
    parent::setUp();
    $this->entityFieldManager = $this
      ->prophesize(EntityFieldManagerInterface::class);
    $this->entityFieldManager
      ->getFieldStorageDefinitions('referenceable_entity_type')
      ->willReturn([]);
    $this
      ->buildContainer();
  }

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

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

  /**
   * {@inheritdoc}
   */
  protected function createReferencableEntityType() {
    $referenceable_entity_type = $this
      ->prophesize(EntityTypeInterface::class);
    $referenceable_entity_type
      ->entityClassImplements(ContentEntityInterface::class)
      ->willReturn(TRUE)
      ->shouldBeCalled();
    $referenceable_entity_type
      ->getKey('label')
      ->willReturn('referenceable_entity_type label');
    return $referenceable_entity_type;
  }

  /**
   * @covers ::prepareTarget
   */
  public function testPrepareTarget() {
    $field_definition_mock = $this
      ->getMockFieldDefinition();
    $field_definition_mock
      ->expects($this
      ->once())
      ->method('getSetting')
      ->will($this
      ->returnValue('referenceable_entity_type'));
    $method = $this
      ->getMethod($this
      ->getTargetClass(), 'prepareTarget')
      ->getClosure();
    $this
      ->assertInstanceof(FieldTargetDefinition::class, $method($field_definition_mock));
  }

  /**
   * @covers ::prepareValue
   * @covers ::findEntities
   */
  public function testPrepareValue() {
    $this->entityFinder
      ->findEntities('referenceable_entity_type', 'referenceable_entity_type label', 1, [])
      ->willReturn([
      12,
      13,
      14,
    ])
      ->shouldBeCalled();
    $method = $this
      ->getProtectedClosure($this
      ->createTargetPluginInstance(), 'prepareValue');
    $values = [
      'target_id' => 1,
    ];
    $method(0, $values);
    $this
      ->assertSame($values, [
      'target_id' => 12,
    ]);
  }

  /**
   * @covers ::prepareValue
   *
   * Tests prepareValue() without passing values.
   */
  public function testPrepareValueEmptyFeed() {
    $method = $this
      ->getProtectedClosure($this
      ->createTargetPluginInstance(), 'prepareValue');
    $values = [
      'target_id' => '',
    ];
    $this
      ->expectException(EmptyFeedException::class);
    $method(0, $values);
  }

  /**
   * @covers ::prepareValue
   * @covers ::findEntities
   *
   * Tests prepareValue() method without match.
   */
  public function testPrepareValueReferenceNotFound() {
    $this->entityFinder
      ->findEntities('referenceable_entity_type', 'referenceable_entity_type label', 1, [])
      ->willReturn([])
      ->shouldBeCalled();
    $method = $this
      ->getProtectedClosure($this
      ->createTargetPluginInstance(), 'prepareValue');
    $values = [
      'target_id' => 1,
    ];
    $this
      ->expectException(ReferenceNotFoundException::class, "Referenced entity not found for field <em class=\"placeholder\">referenceable_entity_type label</em> with value <em class=\"placeholder\">1</em>.");
    $method(0, $values);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityReferenceTest::$entityFieldManager protected property Field manager used in the test.
EntityReferenceTest::createReferencableEntityType protected function Creates a referencable entity type instance. Overrides EntityReferenceTestBase::createReferencableEntityType
EntityReferenceTest::createTargetPluginInstance protected function Creates a new target plugin instance. Overrides EntityReferenceTestBase::createTargetPluginInstance
EntityReferenceTest::getTargetClass protected function Returns the target class. Overrides FieldTargetTestBase::getTargetClass
EntityReferenceTest::setUp public function Overrides EntityReferenceTestBase::setUp
EntityReferenceTest::testPrepareTarget public function @covers ::prepareTarget Overrides EntityReferenceTestBase::testPrepareTarget
EntityReferenceTest::testPrepareValue public function @covers ::prepareValue @covers ::findEntities
EntityReferenceTest::testPrepareValueEmptyFeed public function @covers ::prepareValue Overrides EntityReferenceTestBase::testPrepareValueEmptyFeed
EntityReferenceTest::testPrepareValueReferenceNotFound public function @covers ::prepareValue @covers ::findEntities
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::getEntityStorageClass protected function Returns the entity storage class name to use in this test. 1
EntityReferenceTestBase::getReferencableEntityTypeId protected function Returns the entity type machine name to use in this test. 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.