You are here

public function FieldConfigEntityUnitTest::testToArray in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/tests/src/Unit/FieldConfigEntityUnitTest.php \Drupal\Tests\field\Unit\FieldConfigEntityUnitTest::testToArray()

@covers ::toArray

File

core/modules/field/tests/src/Unit/FieldConfigEntityUnitTest.php, line 247
Contains \Drupal\Tests\field\Unit\FieldConfigEntityUnitTest.

Class

FieldConfigEntityUnitTest
@coversDefaultClass \Drupal\field\Entity\FieldConfig @group field

Namespace

Drupal\Tests\field\Unit

Code

public function testToArray() {
  $field = new FieldConfig([
    'field_name' => $this->fieldStorage
      ->getName(),
    'entity_type' => 'test_entity_type',
    'bundle' => 'test_bundle',
    'field_type' => 'test_field',
  ], $this->entityTypeId);
  $expected = [
    'id' => 'test_entity_type.test_bundle.field_test',
    'uuid' => NULL,
    'status' => TRUE,
    'langcode' => 'en',
    'field_name' => 'field_test',
    'entity_type' => 'test_entity_type',
    'bundle' => 'test_bundle',
    'label' => '',
    'description' => '',
    'required' => FALSE,
    'default_value' => [],
    'default_value_callback' => '',
    'settings' => [],
    'dependencies' => [],
    'field_type' => 'test_field',
  ];
  $this->entityTypeManager
    ->expects($this
    ->any())
    ->method('getDefinition')
    ->with($this->entityTypeId)
    ->will($this
    ->returnValue($this->entityType));
  $this->entityType
    ->expects($this
    ->once())
    ->method('getKey')
    ->with('id')
    ->will($this
    ->returnValue('id'));
  $this->entityType
    ->expects($this
    ->once())
    ->method('getPropertiesToExport')
    ->with('test_entity_type.test_bundle.field_test')
    ->will($this
    ->returnValue(array_combine(array_keys($expected), array_keys($expected))));
  $export = $field
    ->toArray();
  $this
    ->assertEquals($expected, $export);
}