public function LingotekNodeBulkTranslationTest::testUploadingWithAnError in Lingotek Translation 8
Test that we handle errors in upload.
File
- src/
Tests/ LingotekNodeBulkTranslationTest.php, line 634
Class
- LingotekNodeBulkTranslationTest
- Tests translating a node using the bulk management form.
Namespace
Drupal\lingotek\TestsCode
public function testUploadingWithAnError() {
\Drupal::state()
->set('lingotek.must_error_in_upload', TRUE);
// Create a node.
$edit = array();
$edit['title[0][value]'] = 'Llamas are cool';
$edit['body[0][value]'] = 'Llamas are very cool';
$edit['langcode[0][value]'] = 'en';
$edit['lingotek_translation_profile'] = 'manual';
$this
->drupalPostForm('node/add/article', $edit, t('Save and publish'));
$this
->goToContentBulkManagementForm();
// Upload the document, which must fail.
$this
->clickLink('EN');
$this
->assertText('The upload for node Llamas are cool 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 has been marked as error.');
// The node has been marked with the error status.
$this->node = Node::load(1);
/** @var LingotekContentTranslationServiceInterface $translation_service */
$translation_service = \Drupal::service('lingotek.content_translation');
$source_status = $translation_service
->getSourceStatus($this->node);
$this
->assertEqual(Lingotek::STATUS_ERROR, $source_status, 'The node 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('Node Llamas are cool has been uploaded.');
}