You are here

function VocabularyTranslationTest::testVocabularyLanguage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/taxonomy/src/Tests/VocabularyTranslationTest.php \Drupal\taxonomy\Tests\VocabularyTranslationTest::testVocabularyLanguage()

Tests language settings for vocabularies.

File

core/modules/taxonomy/src/Tests/VocabularyTranslationTest.php, line 39
Contains \Drupal\taxonomy\Tests\VocabularyTranslationTest.

Class

VocabularyTranslationTest
Tests content translation for vocabularies.

Namespace

Drupal\taxonomy\Tests

Code

function testVocabularyLanguage() {
  $this
    ->drupalGet('admin/structure/taxonomy/add');

  // Check that the field to enable content translation is available.
  $this
    ->assertField('edit-default-language-content-translation', 'The content translation checkbox is present on the page.');

  // Create the vocabulary.
  $vid = Unicode::strtolower($this
    ->randomMachineName());
  $edit['name'] = $this
    ->randomMachineName();
  $edit['description'] = $this
    ->randomMachineName();
  $edit['langcode'] = 'en';
  $edit['vid'] = $vid;
  $edit['default_language[content_translation]'] = TRUE;
  $this
    ->drupalPostForm(NULL, $edit, t('Save'));

  // Check if content translation is enabled on the edit page.
  $this
    ->drupalGet('admin/structure/taxonomy/manage/' . $vid);
  $this
    ->assertFieldChecked('edit-default-language-content-translation', 'The content translation was correctly selected.');
}