function ContentTranslationUITestBase::doTestTranslationDeletion
Tests translation deletion.
1 call to ContentTranslationUITestBase::doTestTranslationDeletion()
- ContentTranslationUITestBase::testTranslationUI in core/modules/ content_translation/ tests/ src/ Functional/ ContentTranslationUITestBase.php 
- Tests the basic translation UI.
File
- 
              core/modules/ content_translation/ tests/ src/ Functional/ ContentTranslationUITestBase.php, line 371 
Class
- ContentTranslationUITestBase
- Tests the Content Translation UI.
Namespace
Drupal\Tests\content_translation\FunctionalCode
protected function doTestTranslationDeletion() {
  // Confirm and delete a translation.
  $this->drupalLogin($this->translator);
  $langcode = 'fr';
  $storage = $this->container
    ->get('entity_type.manager')
    ->getStorage($this->entityTypeId);
  $storage->resetCache([
    $this->entityId,
  ]);
  $entity = $storage->load($this->entityId);
  $language = ConfigurableLanguage::load($langcode);
  $url = $entity->toUrl('edit-form', [
    'language' => $language,
  ]);
  $this->drupalGet($url);
  $this->submitForm([], 'Delete translation');
  $this->submitForm([], 'Delete ' . $language->getName() . ' translation');
  $storage->resetCache([
    $this->entityId,
  ]);
  $entity = $storage->load($this->entityId, TRUE);
  $this->assertIsObject($entity);
  $translations = $entity->getTranslationLanguages();
  $this->assertCount(2, $translations);
  $this->assertArrayNotHasKey($langcode, $translations);
  // Check that the translator cannot delete the original translation.
  $args = [
    $this->entityTypeId => $entity->id(),
    'language' => 'en',
  ];
  $this->drupalGet(Url::fromRoute("entity.{$this->entityTypeId}.content_translation_delete", $args));
  $this->assertSession()
    ->statusCodeEquals(403);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
