function TermTranslationUITest::doTestPublishedStatus

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/tests/src/Functional/TermTranslationUITest.php \Drupal\Tests\taxonomy\Functional\TermTranslationUITest::doTestPublishedStatus()
  2. 8.9.x core/modules/taxonomy/tests/src/Functional/TermTranslationUITest.php \Drupal\Tests\taxonomy\Functional\TermTranslationUITest::doTestPublishedStatus()
  3. 10 core/modules/taxonomy/tests/src/Functional/TermTranslationUITest.php \Drupal\Tests\taxonomy\Functional\TermTranslationUITest::doTestPublishedStatus()

Overrides ContentTranslationUITestBase::doTestPublishedStatus

File

core/modules/taxonomy/tests/src/Functional/TermTranslationUITest.php, line 190

Class

TermTranslationUITest
Tests the Term Translation UI.

Namespace

Drupal\Tests\taxonomy\Functional

Code

protected function doTestPublishedStatus() {
    $storage = $this->container
        ->get('entity_type.manager')
        ->getStorage($this->entityTypeId);
    $storage->resetCache([
        $this->entityId,
    ]);
    $entity = $storage->load($this->entityId);
    $languages = $this->container
        ->get('language_manager')
        ->getLanguages();
    $statuses = [
        TRUE,
        FALSE,
    ];
    foreach ($statuses as $index => $value) {
        // (Un)publish the term translations and check that the translation
        // statuses are (un)published accordingly.
        foreach ($this->langcodes as $langcode) {
            $options = [
                'language' => $languages[$langcode],
            ];
            $url = $entity->toUrl('edit-form', $options);
            $this->drupalGet($url, $options);
            $this->submitForm([
                'status[value]' => $value,
            ], 'Save');
        }
        $storage->resetCache([
            $this->entityId,
        ]);
        $entity = $storage->load($this->entityId);
        foreach ($this->langcodes as $langcode) {
            // The term is created as unpublished thus we switch to the published
            // status first.
            $status = !$index;
            $translation = $entity->getTranslation($langcode);
            $this->assertEquals($status, $this->manager
                ->getTranslationMetadata($translation)
                ->isPublished(), 'The translation has been correctly unpublished.');
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.