public function LingotekContentTypeBulkTranslationTest::testUpdatingWithAnErrorUsingActions in Lingotek Translation 8
Test that we handle errors in update.
File
- src/
Tests/ LingotekContentTypeBulkTranslationTest.php, line 534
Class
- LingotekContentTypeBulkTranslationTest
- Tests translating a config entity using the bulk management form.
Namespace
Drupal\lingotek\TestsCode
public function testUpdatingWithAnErrorUsingActions() {
// Set upload as manual.
$edit = [
'table[node_type][profile]' => 'manual',
];
$this
->drupalPostForm('admin/lingotek/settings', $edit, 'Save', [], [], 'lingoteksettings-tab-configuration-form');
$this
->goToConfigBulkManagementForm('node_type');
// Upload the document, which must succeed.
$basepath = \Drupal::request()
->getBasePath();
$this
->assertLinkByHref($basepath . '/admin/lingotek/config/upload/node_type/article?destination=' . $basepath . '/admin/lingotek/config/manage');
$edit = [
'table[article]' => TRUE,
'operation' => 'upload',
];
$this
->drupalPostForm(NULL, $edit, t('Execute'));
$this
->assertText('Operations completed.');
// Check upload.
$this
->clickLink('EN');
// Edit the node type.
$edit = [
'name' => 'Blogpost',
];
$this
->drupalPostForm('/admin/structure/types/manage/article', $edit, t('Save content type'));
\Drupal::state()
->set('lingotek.must_error_in_upload', TRUE);
$this
->goToConfigBulkManagementForm('node_type');
$edit = [
'table[article]' => TRUE,
'operation' => 'upload',
];
$this
->drupalPostForm(NULL, $edit, t('Execute'));
$this
->assertText('Blogpost update failed. Please try again.');
// Check the right class is added.
$source_error = $this
->xpath("//span[contains(@class,'language-icon') and contains(@class,'source-error') and ./a[contains(text(), 'EN')]]");
$this
->assertEqual(count($source_error), 1, 'The node type has been marked as error.');
// The node type has been marked with the error status.
$nodeType = NodeType::load('article');
/** @var LingotekConfigTranslationServiceInterface $translation_service */
$translation_service = \Drupal::service('lingotek.config_translation');
$source_status = $translation_service
->getSourceStatus($nodeType);
$this
->assertEqual(Lingotek::STATUS_ERROR, $source_status, 'The node type has been marked as error.');
// I can still re-try the upload.
\Drupal::state()
->set('lingotek.must_error_in_upload', FALSE);
$this
->clickLink('EN');
$this
->assertText('Blogpost has been updated.');
}