You are here

public function SqlContentEntityStorageTest::testGetTableMappingRevisionableTranslatable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageTest.php \Drupal\Tests\Core\Entity\Sql\SqlContentEntityStorageTest::testGetTableMappingRevisionableTranslatable()

Tests getTableMapping() with a revisionable, translatable entity type.

@covers ::__construct @covers ::getTableMapping

@dataProvider providerTestGetTableMappingSimple()

Parameters

string[] $entity_keys: A map of entity keys to use for the mocked entity type.

File

core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageTest.php, line 718
Contains \Drupal\Tests\Core\Entity\Sql\SqlContentEntityStorageTest.

Class

SqlContentEntityStorageTest
@coversDefaultClass \Drupal\Core\Entity\Sql\SqlContentEntityStorage @group Entity

Namespace

Drupal\Tests\Core\Entity\Sql

Code

public function testGetTableMappingRevisionableTranslatable(array $entity_keys) {

  // This allows to re-use the data provider.
  $entity_keys = array(
    'id' => $entity_keys['id'],
    'revision' => 'test_revision',
    'bundle' => $entity_keys['bundle'],
    'uuid' => $entity_keys['uuid'],
    'langcode' => 'langcode',
  );
  $this->entityType
    ->expects($this
    ->atLeastOnce())
    ->method('isRevisionable')
    ->will($this
    ->returnValue(TRUE));
  $this->entityType
    ->expects($this
    ->atLeastOnce())
    ->method('isTranslatable')
    ->will($this
    ->returnValue(TRUE));
  $this->entityType
    ->expects($this
    ->atLeastOnce())
    ->method('getDataTable')
    ->will($this
    ->returnValue('entity_test_field_data'));
  $this->entityType
    ->expects($this
    ->any())
    ->method('getKey')
    ->will($this
    ->returnValueMap(array(
    array(
      'id',
      $entity_keys['id'],
    ),
    array(
      'uuid',
      $entity_keys['uuid'],
    ),
    array(
      'bundle',
      $entity_keys['bundle'],
    ),
    array(
      'revision',
      $entity_keys['revision'],
    ),
    array(
      'langcode',
      $entity_keys['langcode'],
    ),
  )));
  $this
    ->setUpEntityStorage();
  $mapping = $this->entityStorage
    ->getTableMapping();
  $expected = array(
    'entity_test',
    'entity_test_field_data',
    'entity_test_revision',
    'entity_test_field_revision',
  );
  $this
    ->assertEquals($expected, $mapping
    ->getTableNames());

  // The default language code is stored on the base table.
  $expected = array_values(array_filter(array(
    $entity_keys['id'],
    $entity_keys['revision'],
    $entity_keys['bundle'],
    $entity_keys['uuid'],
    $entity_keys['langcode'],
  )));
  $actual = $mapping
    ->getFieldNames('entity_test');
  $this
    ->assertEquals($expected, $actual);

  // The revision table on the other hand does not store the bundle and the
  // UUID.
  $expected = array_values(array_filter(array(
    $entity_keys['id'],
    $entity_keys['revision'],
    $entity_keys['langcode'],
  )));
  $actual = $mapping
    ->getFieldNames('entity_test_revision');
  $this
    ->assertEquals($expected, $actual);

  // The UUID is not stored on the data table.
  $expected = array_values(array_filter(array(
    $entity_keys['id'],
    $entity_keys['revision'],
    $entity_keys['bundle'],
    $entity_keys['langcode'],
  )));
  $actual = $mapping
    ->getFieldNames('entity_test_field_data');
  $this
    ->assertEquals($expected, $actual);

  // The data revision also does not store the bundle.
  $expected = array_values(array_filter(array(
    $entity_keys['id'],
    $entity_keys['revision'],
    $entity_keys['langcode'],
  )));
  $actual = $mapping
    ->getFieldNames('entity_test_field_revision');
  $this
    ->assertEquals($expected, $actual);
  $expected = array();
  $actual = $mapping
    ->getExtraColumns('entity_test');
  $this
    ->assertEquals($expected, $actual);
  $actual = $mapping
    ->getExtraColumns('entity_test_revision');
  $this
    ->assertEquals($expected, $actual);
  $actual = $mapping
    ->getExtraColumns('entity_test_field_data');
  $this
    ->assertEquals($expected, $actual);
  $actual = $mapping
    ->getExtraColumns('entity_test_field_revision');
  $this
    ->assertEquals($expected, $actual);
}