View source
<?php
namespace Drupal\Tests\lingotek\Unit\Plugin\RelatedEntitiesDetector;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\ContentEntityType;
use Drupal\Core\Entity\ContentEntityTypeInterface;
use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Field\BaseFieldDefinition;
use Drupal\Core\Field\FieldStorageDefinitionInterface;
use Drupal\entity_test\FieldStorageDefinition;
use Drupal\lingotek\LingotekConfigurationServiceInterface;
use Drupal\lingotek\Plugin\RelatedEntitiesDetector\NestedErViewmodeEntitiesDetector;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\DependencyInjection\ContainerInterface;
class NestedErViewmodeEntitiesDetectorTest extends UnitTestCase {
protected $detector;
protected $moduleHandler;
protected $entityTypeManager;
protected $entityFieldManager;
protected $lingotekConfiguration;
protected function setUp() : void {
parent::setUp();
$this->entityTypeManager = $this
->createMock(EntityTypeManagerInterface::class);
$this->entityFieldManager = $this
->createMock(EntityFieldManagerInterface::class);
$this->lingotekConfiguration = $this
->createMock(LingotekConfigurationServiceInterface::class);
$this->detector = new NestedErViewmodeEntitiesDetector([], 'nested_er_viewmode_entities', [], $this->entityTypeManager, $this->entityFieldManager, $this->lingotekConfiguration);
$this->entityType = $this
->createMock(ContentEntityTypeInterface::class);
$this->entityType
->expects($this
->any())
->method('hasKey')
->with('langcode')
->willReturn(TRUE);
$this->entityType
->expects($this
->any())
->method('id')
->willReturn('entity_id');
$this->entityType
->expects($this
->any())
->method('getBundleEntityType')
->willReturn('entity_id');
$this->entityType
->expects($this
->any())
->method('getLabel')
->willReturn('Entity');
}
public function testConstruct() {
$detector = new NestedErViewmodeEntitiesDetector([], 'nested_er_viewmode_entities', [], $this->entityTypeManager, $this->entityFieldManager, $this->lingotekConfiguration);
$this
->assertNotNull($detector);
}
public function testCreate() {
$container = $this
->createMock(ContainerInterface::class);
$container
->expects($this
->exactly(3))
->method('get')
->withConsecutive([
'entity_type.manager',
], [
'entity_field.manager',
], [
'lingotek.configuration',
])
->willReturnOnConsecutiveCalls($this->entityTypeManager, $this->entityFieldManager, $this->lingotekConfiguration);
$detector = NestedErViewmodeEntitiesDetector::create($container, [], 'nested_er_viewmode_entities', []);
$this
->assertNotNull($detector);
}
public function testRunWithoutNestedEntityReferenceRevisionFields() {
$titleFieldDefinition = $this
->createMock(BaseFieldDefinition::class);
$titleFieldDefinition
->expects($this
->any())
->method('getType')
->willReturn('text');
$titleFieldDefinition
->expects($this
->any())
->method('getName')
->willReturn('Title');
$this->entityFieldManager
->expects($this
->any())
->method('getFieldDefinitions')
->willReturn([
$titleFieldDefinition,
]);
$entity = $this
->createMock(ContentEntityInterface::class);
$entity
->expects($this
->any())
->method('getEntityTypeId')
->willReturn($this->entityType
->id());
$entity
->expects($this
->any())
->method('id')
->willReturn(1);
$entity
->expects($this
->any())
->method('bundle')
->willReturn('bundle');
$entity
->expects($this
->once())
->method('getUntranslated')
->willReturnSelf();
$entities = [];
$related = [];
$visited = [];
$this->detector
->extract($entity, $entities, $related, 1, $visited);
$this
->assertCount(1, $entities);
$this
->assertEquals($entities['entity_id'][1], $entity);
$this
->assertEmpty($related);
}
public function testRunWithLingotekEnabledNestedERViewModeField() {
$this->lingotekConfiguration
->expects($this
->once())
->method('isFieldLingotekEnabled')
->with('entity_id', 'bundle', 'er_viewmode_field')
->willReturn(TRUE);
$this->lingotekConfiguration
->expects($this
->once())
->method('isEnabled')
->with('another_entity', 'another_bundle')
->willReturn(TRUE);
$titleFieldDefinition = $this
->createMock(BaseFieldDefinition::class);
$titleFieldDefinition
->expects($this
->any())
->method('getType')
->willReturn('text');
$titleFieldDefinition
->expects($this
->any())
->method('getName')
->willReturn('Title');
$target_entity_type = $this
->createMock(ContentEntityType::class);
$embedded_er_viewmode = $this
->createmock(ContentEntityInterface::class);
$embedded_er_viewmode
->expects($this
->any())
->method('referencedEntities')
->willReturn([
$embedded_er_viewmode,
]);
$embedded_er_viewmode
->expects($this
->any())
->method('bundle')
->willReturn('another_bundle');
$embedded_er_viewmode
->expects($this
->any())
->method('id')
->willreturn(2);
$embedded_er_viewmode
->expects($this
->once())
->method('isTranslatable')
->willReturn(TRUE);
$embedded_er_viewmode
->expects($this
->any())
->method('getUntranslated')
->willReturnSelf();
$embedded_er_viewmode
->expects($this
->any())
->method('getEntityTypeId')
->willReturn('another_entity');
$nestedEntityReferenceFieldStorageDefinition = $this
->createMock(FieldStorageDefinition::class);
$nestedEntityReferenceFieldStorageDefinition
->expects($this
->any())
->method('getSetting')
->with('target_type')
->willReturn('another_entity');
$nestedEntityReferenceFieldDefinition = $this
->createMock(BaseFieldDefinition::class);
$nestedEntityReferenceFieldDefinition
->expects($this
->any())
->method('getType')
->willReturn('er_viewmode');
$nestedEntityReferenceFieldDefinition
->expects($this
->any())
->method('getName')
->willReturn('Nested Reference');
$nestedEntityReferenceFieldDefinition
->expects($this
->any())
->method('getFieldStorageDefinition')
->willReturn($nestedEntityReferenceFieldStorageDefinition);
$this->entityTypeManager
->expects($this
->any())
->method('getDefinition')
->with('another_entity')
->willReturn($target_entity_type);
$this->entityFieldManager
->expects($this
->any())
->method('getFieldDefinitions')
->with('entity_id')
->willReturn([
'title' => $titleFieldDefinition,
'er_viewmode_field' => $nestedEntityReferenceFieldDefinition,
]);
$itemList = $this
->createMock(EntityInterface::class);
$itemList
->expects($this
->once())
->method('referencedEntities')
->willReturn([
$embedded_er_viewmode,
]);
$entity = $this
->createMock(ContentEntityInterface::class);
$entity
->expects($this
->any())
->method('getEntityTypeId')
->willReturn($this->entityType
->id());
$entity
->expects($this
->any())
->method('bundle')
->willReturn('bundle');
$entity
->expects($this
->any())
->method('id')
->willReturn(1);
$entity
->expects($this
->any())
->method('getUntranslated')
->willReturnSelf();
$entity
->expects($this
->any())
->method('get')
->with('er_viewmode_field')
->willReturn($itemList);
$entities = [];
$related = [];
$visited = [];
$this->detector
->extract($entity, $entities, $related, 2, $visited);
$this
->assertCount(1, $entities);
$this
->assertEquals($entities['entity_id'][1], $entity);
$this
->assertCount(1, $related);
$this
->assertEquals($related['another_entity'][2], $embedded_er_viewmode);
}
public function testRunWithNonTranslatableNestedERViewModeFields() {
$this->lingotekConfiguration
->expects($this
->never())
->method('isFieldLingotekEnabled')
->with('entity_id', 'bundle', 'er_viewmode_field')
->willReturn(TRUE);
$this->lingotekConfiguration
->expects($this
->never())
->method('isEnabled')
->with('another_entity', 'another_bundle')
->willReturn(TRUE);
$titleFieldDefinition = $this
->createMock(BaseFieldDefinition::class);
$titleFieldDefinition
->expects($this
->any())
->method('getType')
->willReturn('text');
$titleFieldDefinition
->expects($this
->any())
->method('getName')
->willReturn('Title');
$target_entity_type = $this
->createMock(ContentEntityType::class);
$embedded_er_viewmode = $this
->createmock(ContentEntityInterface::class);
$embedded_er_viewmode
->expects($this
->any())
->method('referencedEntities')
->willReturn([
$embedded_er_viewmode,
]);
$embedded_er_viewmode
->expects($this
->any())
->method('bundle')
->willReturn('another_bundle');
$embedded_er_viewmode
->expects($this
->any())
->method('id')
->willreturn(2);
$embedded_er_viewmode
->expects($this
->any())
->method('isTranslatable')
->willReturn(FALSE);
$embedded_er_viewmode
->expects($this
->any())
->method('getEntityTypeId')
->willReturn('another_entity');
$embedded_er_viewmode
->expects($this
->any())
->method('getUntranslated')
->willReturnSelf();
$nestedEntityReferenceFieldStorageDefinition = $this
->createMock(FieldStorageDefinition::class);
$nestedEntityReferenceFieldStorageDefinition
->expects($this
->any())
->method('getSetting')
->with('target_type')
->willReturn('another_entity');
$nestedEntityReferenceFieldDefinition = $this
->createMock(BaseFieldDefinition::class);
$nestedEntityReferenceFieldDefinition
->expects($this
->any())
->method('getType')
->willReturn('er_viewmode');
$nestedEntityReferenceFieldDefinition
->expects($this
->any())
->method('getName')
->willReturn('Nested Reference');
$nestedEntityReferenceFieldDefinition
->expects($this
->any())
->method('getFieldStorageDefinition')
->willReturn($nestedEntityReferenceFieldStorageDefinition);
$this->entityTypeManager
->expects($this
->any())
->method('getDefinition')
->with('another_entity')
->willReturn($target_entity_type);
$this->entityFieldManager
->expects($this
->any())
->method('getFieldDefinitions')
->willReturn([
'title' => $titleFieldDefinition,
'er_viewmode_field' => $nestedEntityReferenceFieldDefinition,
]);
$itemList = $this
->createMock(EntityInterface::class);
$itemList
->expects($this
->once())
->method('referencedEntities')
->willReturn([
$embedded_er_viewmode,
]);
$entity = $this
->createMock(ContentEntityInterface::class);
$entity
->expects($this
->any())
->method('getEntityTypeId')
->willReturn($this->entityType
->id());
$entity
->expects($this
->any())
->method('bundle')
->willReturn('bundle');
$entity
->expects($this
->any())
->method('id')
->willReturn(1);
$entity
->expects($this
->any())
->method('getUntranslated')
->willReturnSelf();
$entity
->expects($this
->any())
->method('get')
->with('er_viewmode_field')
->willReturn($itemList);
$entities = [];
$related = [];
$visited = [];
$this->detector
->extract($entity, $entities, $related, 2, $visited);
$this
->assertCount(1, $entities);
$this
->assertEquals($entities['entity_id'][1], $entity);
$this
->assertCount(0, $related);
}
public function testRunWithLingotekDisabledNestedERViewModeFields() {
$this->lingotekConfiguration
->expects($this
->once())
->method('isFieldLingotekEnabled')
->with('entity_id', 'bundle', 'er_viewmode_field')
->willReturn(FALSE);
$this->lingotekConfiguration
->expects($this
->once())
->method('isEnabled')
->with('another_entity', 'another_bundle')
->willReturn(TRUE);
$titleFieldDefinition = $this
->createMock(BaseFieldDefinition::class);
$titleFieldDefinition
->expects($this
->any())
->method('getType')
->willReturn('text');
$titleFieldDefinition
->expects($this
->any())
->method('getName')
->willReturn('Title');
$target_entity_type = $this
->createMock(ContentEntityType::class);
$embedded_entity_reference_revisions = $this
->createmock(ContentEntityInterface::class);
$embedded_entity_reference_revisions
->expects($this
->any())
->method('referencedEntities')
->willReturn([
$embedded_entity_reference_revisions,
]);
$embedded_entity_reference_revisions
->expects($this
->any())
->method('getEntityTypeId')
->willReturn('another_entity');
$embedded_entity_reference_revisions
->expects($this
->any())
->method('bundle')
->willReturn('another_bundle');
$embedded_entity_reference_revisions
->expects($this
->any())
->method('id')
->willReturn(2);
$embedded_entity_reference_revisions
->expects($this
->any())
->method('isTranslatable')
->willReturn(TRUE);
$embedded_entity_reference_revisions
->expects($this
->any())
->method('getUntranslated')
->willReturnSelf();
$nestedEntityReferenceFieldStorageDefinition = $this
->createMock(FieldStorageDefinitionInterface::class);
$nestedEntityReferenceFieldStorageDefinition
->expects($this
->any())
->method('getSetting')
->with('target_type')
->willReturn('another_entity');
$nestedEntityReferenceFieldDefinition = $this
->createMock(BaseFieldDefinition::class);
$nestedEntityReferenceFieldDefinition
->expects($this
->any())
->method('getType')
->willReturn('er_viewmode');
$nestedEntityReferenceFieldDefinition
->expects($this
->any())
->method('getName')
->willReturn('Nested Reference');
$nestedEntityReferenceFieldDefinition
->expects($this
->any())
->method('getFieldStorageDefinition')
->willReturn($nestedEntityReferenceFieldStorageDefinition);
$this->entityTypeManager
->expects($this
->exactly(1))
->method('getDefinition')
->with('another_entity')
->willReturn($target_entity_type);
$this->entityFieldManager
->expects($this
->exactly(2))
->method('getFieldDefinitions')
->withConsecutive([
'entity_id',
], [
'another_entity',
])
->willReturnOnConsecutiveCalls([
'title' => $titleFieldDefinition,
'er_viewmode_field' => $nestedEntityReferenceFieldDefinition,
], []);
$itemList = $this
->createMock(EntityInterface::class);
$itemList
->expects($this
->once())
->method('referencedEntities')
->willReturn([
$embedded_entity_reference_revisions,
]);
$entity = $this
->createMock(ContentEntityInterface::class);
$entity
->expects($this
->any())
->method('getEntityTypeId')
->willReturn($this->entityType
->id());
$entity
->expects($this
->any())
->method('bundle')
->willReturn('bundle');
$entity
->expects($this
->any())
->method('id')
->willReturn(1);
$entity
->expects($this
->any())
->method('getUntranslated')
->willReturnSelf();
$entity
->expects($this
->any())
->method('get')
->with('er_viewmode_field')
->willReturn($itemList);
$entities = [];
$related = [];
$visited = [];
$this->detector
->extract($entity, $entities, $related, 2, $visited);
$this
->assertCount(2, $entities);
$this
->assertEquals($entities['entity_id'][1], $entity);
$this
->assertEquals($entities['another_entity'][2], $embedded_entity_reference_revisions);
$this
->assertCount(0, $related);
}
}