You are here

public function OptionsFormattersTest::testFormatter in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/options/tests/src/Kernel/OptionsFormattersTest.php \Drupal\Tests\options\Kernel\OptionsFormattersTest::testFormatter()

Tests the formatters.

File

core/modules/options/tests/src/Kernel/OptionsFormattersTest.php, line 26

Class

OptionsFormattersTest
Tests the Options field type formatters.

Namespace

Drupal\Tests\options\Kernel

Code

public function testFormatter() {
  $entity = EntityTest::create();
  $entity->{$this->fieldName}->value = 1;
  $items = $entity
    ->get($this->fieldName);
  $build = $items
    ->view();
  $this
    ->assertEquals('list_default', $build['#formatter'], 'Ensure to fall back to the default formatter.');
  $this
    ->assertEquals('One', $build[0]['#markup']);
  $build = $items
    ->view([
    'type' => 'list_key',
  ]);
  $this
    ->assertEquals('list_key', $build['#formatter'], 'The chosen formatter is used.');
  $this
    ->assertEquals(1, (string) $build[0]['#markup']);
}