function TMGMTCartTest::testCartEnforceSourceLanguage in Translation Management Tool 8
Test if the source is able to pull content in requested language.
File
- tests/
src/ Functional/ TMGMTCartTest.php, line 39
Class
- TMGMTCartTest
- Verifies basic functionality of the user interface
Namespace
Drupal\Tests\tmgmt\FunctionalCode
function testCartEnforceSourceLanguage() {
$content_type = $this
->drupalCreateContentType();
$node_sk = $this
->drupalCreateNode(array(
'title' => $this
->randomMachineName(),
'langcode' => 'sk',
'type' => $content_type
->id(),
));
$node = $node_sk
->addTranslation('en');
$node->title->value = $this
->randomMachineName();
$node->body->value = $this
->randomMachineName();
$node
->save();
$node_cs = $this
->drupalCreateNode(array(
'title' => $this
->randomMachineName(),
'langcode' => 'cs',
'type' => $content_type
->id(),
));
$this
->loginAsTranslator();
$job_item_sk = tmgmt_job_item_create('content', 'node', $node_sk
->id());
$job_item_sk
->save();
$this
->drupalGet('tmgmt-add-to-cart/' . $job_item_sk
->id());
$job_items_data[$job_item_sk
->getItemId()] = $job_item_sk
->getItemType();
$job_item_cs = tmgmt_job_item_create('content', 'node', $node_cs
->id());
$job_item_cs
->save();
$this
->drupalGet('tmgmt-add-to-cart/' . $job_item_cs
->id());
$job_items_data[$job_item_cs
->getItemId()] = $job_item_cs
->getItemType();
$this
->drupalPostForm('admin/tmgmt/cart', array(
'enforced_source_language' => TRUE,
'source_language' => 'en',
'target_language[]' => array(
'es',
),
), t('Request translation'));
$this
->assertText(t('One job needs to be checked out.'));
$this
->assertRaw(t('One item skipped as for the language @language it was not possible to retrieve a translation.', array(
'@language' => 'English',
)));
$this
->assertText(t('You have enforced the job source language which most likely resulted in having a translation of your original content as the job source text. You should review the job translation received from the translator carefully to prevent the content quality loss.'));
$args = explode('/', $this
->getUrl());
$tjid = array_pop($args);
$this
->drupalPostForm(NULL, array(), t('Submit to provider'));
// We cannot test for the item data as items without a job are not able to
// get the data in case the source language is overridden. Therefore only
// testing for item_id and item_type values.
foreach (Job::load($tjid)
->getItems() as $job_item) {
$this
->assertEqual($job_items_data[$job_item
->getItemId()], $job_item
->getItemType());
}
$this
->drupalGet('admin/tmgmt/cart');
$this
->assertText($node_cs
->getTitle());
$this
->assertNoText($node_sk
->getTitle());
// Test that duplicate submission of an item is not allowed.
$this
->drupalPostForm('admin/tmgmt/cart', array(
'target_language[]' => array(
'es',
),
), t('Request translation'));
$this
->drupalPostForm(NULL, array(), t('Submit to provider'));
$this
->assertText(t('Test translation created.'));
$job_item_cs = tmgmt_job_item_create('content', 'node', $node_cs
->id());
$job_item_cs
->save();
$this
->drupalGet('tmgmt-add-to-cart/' . $job_item_cs
->id());
$job_items_data[$job_item_cs
->getItemId()] = $job_item_cs
->getItemType();
$this
->drupalPostForm('admin/tmgmt/cart', array(
'target_language[]' => array(
'es',
),
), t('Request translation'));
$this
->assertText('1 item conflicts with pending item and will be dropped on submission. Conflicting item: ' . $node_cs
->getTitle() . '.');
$this
->drupalPostForm(NULL, array(), t('Submit to provider'));
$this
->assertText(t('All job items are conflicting, the job can not be submitted.'));
}