public function LingotekContentTypeTranslationTest::testUploadingWithAnError in Lingotek Translation 8
Test that we handle errors in upload.
File
- src/
Tests/ LingotekContentTypeTranslationTest.php, line 200
Class
- LingotekContentTypeTranslationTest
- Tests translating a content type.
Namespace
Drupal\lingotek\TestsCode
public function testUploadingWithAnError() {
\Drupal::state()
->set('lingotek.must_error_in_upload', TRUE);
// Check that the translate tab is in the node type.
$this
->drupalGet('/admin/config/regional/config-translation/node_type');
$this
->clickLink(t('Translate'));
// Upload the document, which must fail.
$this
->clickLink('Upload');
$this
->assertText('Article upload failed. Please try again.');
// 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('Upload');
$this
->assertText('Article uploaded successfully');
}