public function LingotekContentTypeTranslationTest::testUpdatingWithAnError in Lingotek Translation 8
Test that we handle errors in update.
File
- src/
Tests/ LingotekContentTypeTranslationTest.php, line 227
Class
- LingotekContentTypeTranslationTest
- Tests translating a content type.
Namespace
Drupal\lingotek\TestsCode
public function testUpdatingWithAnError() {
// Check that the translate tab is in the node type.
$this
->drupalGet('/admin/config/regional/config-translation');
$this
->drupalGet('/admin/config/regional/config-translation/node_type');
$this
->clickLink(t('Translate'));
// Upload the document, which must succeed.
$this
->clickLink('Upload');
$this
->assertText('Article uploaded successfully');
// Check that the upload succeeded.
$this
->clickLink('Check upload status');
$this
->assertText('Article status checked successfully');
// Edit the content type.
$edit['name'] = 'Blogpost';
$this
->drupalPostForm('/admin/structure/types/manage/article', $edit, t('Save content type'));
$this
->assertText('The content type Blogpost has been updated.');
// Go back to the form.
$this
->drupalGet('/admin/config/regional/config-translation/node_type');
$this
->clickLink(t('Translate'));
\Drupal::state()
->set('lingotek.must_error_in_upload', TRUE);
// Re-upload. Must fail now.
$this
->clickLink('Upload');
$this
->assertText('Blogpost update 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('Blogpost has been updated.');
}