You are here

public function DynamicEntityReferenceRelationshipTest::testMultipleRelationship in Dynamic Entity Reference 8

Same name and namespace in other branches
  1. 8.2 tests/src/Kernel/Views/DynamicEntityReferenceRelationshipTest.php \Drupal\Tests\dynamic_entity_reference\Kernel\Views\DynamicEntityReferenceRelationshipTest::testMultipleRelationship()

Tests views relationship with multiple referenced entities.

File

tests/src/Kernel/Views/DynamicEntityReferenceRelationshipTest.php, line 116

Class

DynamicEntityReferenceRelationshipTest
Tests dynamic entity reference relationship data.

Namespace

Drupal\Tests\dynamic_entity_reference\Kernel\Views

Code

public function testMultipleRelationship() {

  // Create some test entities which link each other.
  $referenced_entity = EntityTest::create();
  $referenced_entity
    ->save();
  $referenced_entity_mul = EntityTestMul::create();
  $referenced_entity_mul
    ->save();
  $entity = EntityTest::create();
  $entity->field_test[] = $referenced_entity;
  $entity->field_test[] = $referenced_entity_mul;
  $entity
    ->save();
  $this
    ->assertEquals($entity->field_test[0]->entity
    ->id(), $referenced_entity
    ->id());
  $this
    ->assertEquals($entity->field_test[1]->entity
    ->id(), $referenced_entity_mul
    ->id());
  $this->entities[] = $entity;
  $entity = EntityTest::create();
  $entity->field_test[] = $referenced_entity;
  $entity->field_test[] = $referenced_entity_mul;
  $entity
    ->save();
  $this
    ->assertEquals($entity->field_test[0]->entity
    ->id(), $referenced_entity
    ->id());
  $this
    ->assertEquals($entity->field_test[1]->entity
    ->id(), $referenced_entity_mul
    ->id());
  $this->entities[] = $entity;
  Views::viewsData()
    ->clear();

  // Check just the generated views data.
  $views_data_field_test = Views::viewsData()
    ->get('entity_test__field_test');

  // Check views data for test entity referenced from field_test.
  $this
    ->assertEquals($views_data_field_test['entity_test__field_test']['relationship']['id'], 'standard');
  $this
    ->assertEquals($views_data_field_test['entity_test__field_test']['relationship']['base'], 'entity_test');
  $this
    ->assertEquals($views_data_field_test['entity_test__field_test']['relationship']['entity type'], 'entity_test');
  $this
    ->assertEquals($views_data_field_test['entity_test__field_test']['relationship']['base field'], 'id');
  $this
    ->assertEquals($views_data_field_test['entity_test__field_test']['relationship']['relationship field'], 'field_test_target_id');
  $this
    ->assertEquals($views_data_field_test['entity_test__field_test']['relationship']['extra'][0]['left_field'], 'field_test_target_type');
  $this
    ->assertEquals($views_data_field_test['entity_test__field_test']['relationship']['extra'][0]['value'], 'entity_test');

  // Check views data for test entity - data table referenced from field_test.
  $this
    ->assertEquals($views_data_field_test['entity_test_mul__field_test']['relationship']['id'], 'standard');
  $this
    ->assertEquals($views_data_field_test['entity_test_mul__field_test']['relationship']['base'], 'entity_test_mul_property_data');
  $this
    ->assertEquals($views_data_field_test['entity_test_mul__field_test']['relationship']['entity type'], 'entity_test_mul');
  $this
    ->assertEquals($views_data_field_test['entity_test_mul__field_test']['relationship']['base field'], 'id');
  $this
    ->assertEquals($views_data_field_test['entity_test_mul__field_test']['relationship']['relationship field'], 'field_test_target_id');
  $this
    ->assertEquals($views_data_field_test['entity_test_mul__field_test']['relationship']['extra'][0]['left_field'], 'field_test_target_type');
  $this
    ->assertEquals($views_data_field_test['entity_test_mul__field_test']['relationship']['extra'][0]['value'], 'entity_test_mul');

  // Check the backwards reference for test entity using field_test.
  $views_data_entity_test = Views::viewsData()
    ->get('entity_test');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['id'], 'entity_reverse');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['base'], 'entity_test');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['base field'], 'id');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['field table'], 'entity_test__field_test');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['field field'], 'field_test_target_id');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][0]['field'], 'field_test_target_type');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][0]['value'], 'entity_test');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][1]['field'], 'deleted');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][1]['value'], 0);
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][1]['numeric'], TRUE);

  // Check the backwards reference for test entity - data table using
  // field_test.
  $views_data_entity_test = Views::viewsData()
    ->get('entity_test_mul_property_data');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['id'], 'entity_reverse');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['base'], 'entity_test');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['base field'], 'id');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['field table'], 'entity_test__field_test');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['field field'], 'field_test_target_id');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][0]['field'], 'field_test_target_type');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][0]['value'], 'entity_test_mul');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][1]['field'], 'deleted');
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][1]['value'], 0);
  $this
    ->assertEquals($views_data_entity_test['reverse__entity_test__field_test']['relationship']['join_extra'][1]['numeric'], TRUE);

  // Check an actual test view.
  $view = Views::getView('test_dynamic_entity_reference_entity_test_view');
  $this
    ->executeView($view);
  foreach ($view->result as $index => $row) {

    // Just check that the actual ID of the entity is the expected one.
    $this
      ->assertEquals($row->id, $this->entities[$index]
      ->id());

    // Also check that we have the correct result entity.
    $this
      ->assertEquals($row->_entity
      ->id(), $this->entities[$index]
      ->id());
    $this
      ->assertEquals($row->_entity
      ->bundle(), $this->entities[$index]
      ->bundle());

    // Test the relationship.
    $this
      ->assertEquals($row->entity_test_entity_test__field_test_id, 1);

    // Test that the correct relationship entity is on the row.
    $this
      ->assertEquals($row->_relationship_entities['entity_test__field_test']
      ->id(), 1);
    $this
      ->assertEquals($row->_relationship_entities['entity_test__field_test']
      ->bundle(), 'entity_test');
  }
  $view
    ->destroy();
  $view
    ->setDisplay('embed_1');
  $this
    ->executeView($view);
  foreach ($view->result as $index => $row) {

    // Just check that the actual ID of the entity is the expected one.
    $this
      ->assertEquals($row->id, $this->entities[$index]
      ->id());

    // Also check that we have the correct result entity.
    $this
      ->assertEquals($row->_entity
      ->id(), $this->entities[$index]
      ->id());
    $this
      ->assertEquals($row->_entity
      ->bundle(), $this->entities[$index]
      ->bundle());

    // Test the relationship.
    $this
      ->assertEquals($row->entity_test_mul_property_data_entity_test__field_test_id, 1);

    // Test that the correct relationship entity is on the row.
    $this
      ->assertEquals($row->_relationship_entities['entity_test_mul__field_test']
      ->id(), 1);
    $this
      ->assertEquals($row->_relationship_entities['entity_test_mul__field_test']
      ->bundle(), 'entity_test_mul');
  }
}