You are here

RangeDecimalSprintfFormatterUiTest.php in Range 8

File

tests/src/Functional/Formatter/RangeDecimalSprintfFormatterUiTest.php
View source
<?php

namespace Drupal\Tests\range\Functional\Formatter;


/**
 * Tests the 'range_decimal_sprintf' formatter UI.
 *
 * @group range
 */
class RangeDecimalSprintfFormatterUiTest extends RangeFormatterUiTestBase {

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    $this->fieldType = 'range_decimal';
    $this->formatterType = 'range_decimal_sprintf';
    parent::setUp();
  }

  /**
   * {@inheritdoc}
   */
  public function testFormatterUi() {
    parent::testFormatterUi();
    $this
      ->drupalGet('entity_test/structure/entity_test/display');

    // Enable Default formatter.
    $edit = [
      "fields[{$this->fieldName}][parent]" => 'content',
      "fields[{$this->fieldName}][region]" => 'content',
      "fields[{$this->fieldName}][type]" => $this->formatterType,
    ];
    $this
      ->submitForm($edit, 'Save');

    // Ensure that default summary is correct.
    $this->session
      ->pageTextContains('1234.12-4321.10');

    // Go to formatter settings form.
    $this
      ->submitForm([], $this->fieldName . '_settings_edit');

    // Ensure that form displays correct set of fields.
    $this->session
      ->fieldValueEquals('Range separator', '-');
    $this->session
      ->fieldValueEquals('Format', '%.2f');
    $this->session
      ->fieldNotExists('Thousand marker');
    $this->session
      ->fieldNotExists('Decimal marker');
    $this->session
      ->fieldNotExists('Scale');

    // Update formatter settings.
    $edit = [
      "fields[{$this->fieldName}][settings_edit_form][settings][range_separator]" => '|',
      "fields[{$this->fieldName}][settings_edit_form][settings][format_string]" => '%.4e',
    ];
    $this
      ->submitForm($edit, 'Update');

    // Ensure that summary is correct.
    $this->session
      ->pageTextContains('1.2341e+3|4.3211e+3');

    // Go to formatter settings form.
    $this
      ->submitForm([], $this->fieldName . '_settings_edit');

    // Ensure that form displays correct set of fields.
    $this->session
      ->fieldValueEquals('Range separator', '|');
    $this->session
      ->fieldValueEquals('Format', '%.4e');
  }

}

Classes

Namesort descending Description
RangeDecimalSprintfFormatterUiTest Tests the 'range_decimal_sprintf' formatter UI.