You are here

protected function EntityReferenceIntegrationTest::assertFieldValues in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php \Drupal\Tests\field\Functional\EntityReference\EntityReferenceIntegrationTest::assertFieldValues()

Asserts that the reference field values are correct.

Parameters

string $entity_name: The name of the test entity.

\Drupal\Core\Entity\EntityInterface[] $referenced_entities: An array of referenced entities.

1 call to EntityReferenceIntegrationTest::assertFieldValues()
EntityReferenceIntegrationTest::testSupportedEntityTypesAndWidgets in core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php
Tests the entity reference field with all its supported field widgets.

File

core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php, line 196

Class

EntityReferenceIntegrationTest
Tests various Entity reference UI components.

Namespace

Drupal\Tests\field\Functional\EntityReference

Code

protected function assertFieldValues($entity_name, $referenced_entities) {
  $entity = current($this->container
    ->get('entity_type.manager')
    ->getStorage($this->entityType)
    ->loadByProperties([
    'name' => $entity_name,
  ]));
  $this
    ->assertNotEmpty($entity, new FormattableMarkup('%entity_type: Entity found in the database.', [
    '%entity_type' => $this->entityType,
  ]));
  $this
    ->assertEqual($entity->{$this->fieldName}->target_id, $referenced_entities[0]
    ->id());
  $this
    ->assertEqual($entity->{$this->fieldName}->entity
    ->id(), $referenced_entities[0]
    ->id());
  $this
    ->assertEqual($entity->{$this->fieldName}->entity
    ->label(), $referenced_entities[0]
    ->label());
  $this
    ->assertEqual($entity->{$this->fieldName}[1]->target_id, $referenced_entities[1]
    ->id());
  $this
    ->assertEqual($entity->{$this->fieldName}[1]->entity
    ->id(), $referenced_entities[1]
    ->id());
  $this
    ->assertEqual($entity->{$this->fieldName}[1]->entity
    ->label(), $referenced_entities[1]
    ->label());
}