public function TermLanguageTest::testTermLanguage in Drupal 9
Same name and namespace in other branches
- 8 core/modules/taxonomy/tests/src/Functional/TermLanguageTest.php \Drupal\Tests\taxonomy\Functional\TermLanguageTest::testTermLanguage()
File
- core/modules/taxonomy/tests/src/Functional/TermLanguageTest.php, line 47
Class
- TermLanguageTest
- Tests the language functionality for the taxonomy terms.
Namespace
Drupal\Tests\taxonomy\Functional
Code
public function testTermLanguage() {
$edit = [
'default_language[language_alterable]' => TRUE,
];
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id());
$this
->submitForm($edit, 'Save');
$this
->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary
->id() . '/add');
$this
->assertSession()
->fieldExists('edit-langcode-0-value');
$edit = [
'name[0][value]' => $this
->randomMachineName(),
'langcode[0][value]' => 'aa',
];
$this
->submitForm($edit, 'Save');
$terms = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties([
'name' => $edit['name[0][value]'],
]);
$term = reset($terms);
$this
->assertEquals($edit['langcode[0][value]'], $term
->language()
->getId(), 'The term contains the correct langcode.');
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$this
->assertTrue($this
->assertSession()
->optionExists('edit-langcode-0-value', $edit['langcode[0][value]'])
->isSelected());
$edit['langcode[0][value]'] = 'bb';
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$this
->submitForm($edit, 'Save');
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$this
->assertTrue($this
->assertSession()
->optionExists('edit-langcode-0-value', $edit['langcode[0][value]'])
->isSelected());
}