You are here

public function LanguageSelectWidgetTest::testWithoutIncludedLockedLanguage in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/language/tests/src/Kernel/LanguageSelectWidgetTest.php \Drupal\Tests\language\Kernel\LanguageSelectWidgetTest::testWithoutIncludedLockedLanguage()

Test the widget without the locked languages.

File

core/modules/language/tests/src/Kernel/LanguageSelectWidgetTest.php, line 66

Class

LanguageSelectWidgetTest
Tests the language select widget.

Namespace

Drupal\Tests\language\Kernel

Code

public function testWithoutIncludedLockedLanguage() {
  $this->entityFormDisplay
    ->setComponent('langcode', [
    'type' => 'language_select',
    'settings' => [
      'include_locked' => FALSE,
    ],
  ])
    ->save();
  $entity = EntityTest::create([
    'name' => $this
      ->randomString(),
  ]);
  $form = $this->container
    ->get('entity.form_builder')
    ->getForm($entity);
  $options = array_keys($form['langcode']['widget'][0]['value']['#options']);
  $this
    ->assertSame([
    'en',
  ], $options);
}