You are here

public function ConfigTranslationDateFormatUiTest::testDateFormatUI in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/config_translation/tests/src/Functional/ConfigTranslationDateFormatUiTest.php \Drupal\Tests\config_translation\Functional\ConfigTranslationDateFormatUiTest::testDateFormatUI()
  2. 10 core/modules/config_translation/tests/src/Functional/ConfigTranslationDateFormatUiTest.php \Drupal\Tests\config_translation\Functional\ConfigTranslationDateFormatUiTest::testDateFormatUI()

Tests date format translation behavior.

File

core/modules/config_translation/tests/src/Functional/ConfigTranslationDateFormatUiTest.php, line 45

Class

ConfigTranslationDateFormatUiTest
Tests the content translation behaviors on date formats.

Namespace

Drupal\Tests\config_translation\Functional

Code

public function testDateFormatUI() {
  $this
    ->drupalGet('admin/config/regional/date-time');

  // Assert translation link unlocked date format.
  $this
    ->assertSession()
    ->linkByHrefExists('admin/config/regional/date-time/formats/manage/medium/translate');

  // Assert translation link locked date format.
  $this
    ->assertSession()
    ->linkByHrefExists('admin/config/regional/date-time/formats/manage/html_datetime/translate');

  // Date pattern is visible on unlocked date formats.
  $this
    ->drupalGet('admin/config/regional/date-time/formats/manage/medium/translate/de/add');
  $this
    ->assertSession()
    ->fieldExists('translation[config_names][core.date_format.medium][pattern]');

  // Date pattern is not visible on locked date formats.
  $this
    ->drupalGet('admin/config/regional/date-time/formats/manage/html_datetime/translate/es/add');
  $this
    ->assertSession()
    ->fieldNotExists('translation[config_names][core.date_format.html_datetime][pattern]');
}