OptionsFormattersTest.php

Same filename and directory in other branches
  1. 9 core/modules/options/tests/src/Kernel/OptionsFormattersTest.php
  2. 8.9.x core/modules/options/tests/src/Kernel/OptionsFormattersTest.php
  3. 11.x core/modules/options/tests/src/Kernel/OptionsFormattersTest.php

Namespace

Drupal\Tests\options\Kernel

File

core/modules/options/tests/src/Kernel/OptionsFormattersTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\options\Kernel;

use Drupal\entity_test\Entity\EntityTest;

/**
 * Tests the Options field type formatters.
 *
 * @group options
 * @see \Drupal\options\Plugin\Field\FieldFormatter\OptionsDefaultFormatter
 * @see \Drupal\options\Plugin\Field\FieldFormatter\OptionsKeyFormatter
 */
class OptionsFormattersTest extends OptionsFieldUnitTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
  }
  
  /**
   * Tests the formatters.
   */
  public function testFormatter() : void {
    $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']);
  }

}

Classes

Title Deprecated Summary
OptionsFormattersTest Tests the Options field type formatters.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.