public function LocaleSourceUiTest::testOverview in Translation Management Tool 8
File
- sources/
locale/ tests/ src/ Functional/ LocaleSourceUiTest.php, line 39
Class
- LocaleSourceUiTest
- Locale Source UI tests.
Namespace
Drupal\Tests\tmgmt_locale\FunctionalCode
public function testOverview() {
$this
->loginAsTranslator();
$this
->drupalGet('admin/tmgmt/sources/locale/default');
$this
->assertText('Hello World');
$this
->assertText('Example');
$rows = $this
->xpath('//tbody/tr');
$found = FALSE;
foreach ($rows as $row) {
if ($row
->find('css', 'td:nth-child(2)')
->getText() == 'Hello World') {
$found = TRUE;
$this
->assertEqual((string) $row
->find('css', 'td:nth-child(3)')
->getText(), 'tmgmt_locale');
$this
->assertEqual((string) $row
->find('css', 'td:nth-child(5) img')
->getAttribute('title'), t('Translation up to date'));
$this
->assertEqual((string) $row
->find('css', 'td:nth-child(6) img')
->getAttribute('title'), t('Not translated'));
}
}
$this
->assertTrue($found);
// Filter on the label.
$edit = array(
'search[label]' => 'Hello',
);
$this
->drupalPostForm(NULL, $edit, t('Search'));
$this
->assertText('Hello World');
$this
->assertNoText('Example');
$locale_object = \Drupal::database()
->query('SELECT * FROM {locales_source} WHERE source = :source LIMIT 1', array(
':source' => 'Hello World',
))
->fetchObject();
// First add source to the cart to test its functionality.
$edit = array(
'items[' . $locale_object->lid . ']' => TRUE,
);
$this
->drupalPostForm(NULL, $edit, t('Add to cart'));
$this
->assertRaw(t('@count content source was added into the <a href=":url">cart</a>.', array(
'@count' => 1,
':url' => Url::fromRoute('tmgmt.cart')
->toString(),
)));
$edit['target_language[]'] = array(
'gsw-berne',
);
$this
->drupalPostForm('admin/tmgmt/cart', $edit, t('Request translation'));
// Assert that the job item is displayed.
$this
->assertText('Hello World');
$this
->assertText(t('Locale'));
$this
->assertText('2');
$this
->drupalPostForm(NULL, array(
'target_language' => 'gsw-berne',
), t('Submit to provider'));
// Test for the translation flag title.
$this
->drupalGet('admin/tmgmt/sources/locale/default');
$this
->assertRaw(t('Active job item: Needs review'));
// Review and accept the job item.
$job_items = tmgmt_job_item_load_latest('locale', 'default', $locale_object->lid, 'en');
$this
->drupalGet('admin/tmgmt/items/' . $job_items['gsw-berne']
->id());
$this
->assertRaw('gsw-berne: Hello World');
$this
->drupalPostForm(NULL, array(), t('Save as completed'));
$this
->drupalGet('admin/tmgmt/sources/locale/default');
$this
->assertNoRaw(t('Active job item: Needs review'));
$rows = $this
->xpath('//tbody/tr');
$found = FALSE;
foreach ($rows as $row) {
if ($row
->find('css', 'td:nth-child(2)')
->getText() == 'Hello World') {
$found = TRUE;
$this
->assertEqual((string) $row
->find('css', 'td:nth-child(5) img')
->getAttribute('title'), t('Translation up to date'));
$this
->assertEqual((string) $row
->find('css', 'td:nth-child(6) img')
->getAttribute('title'), t('Translation up to date'));
}
}
$this
->assertTrue($found);
// Test the missing translation filter.
$this
->drupalGet('admin/tmgmt/sources/locale/default');
// Check that the source language (en) has been removed from the target language
// select box.
$elements = $this
->xpath('//select[@name=:name]//option[@value=:option]', array(
':name' => 'search[target_language]',
':option' => 'en',
));
$this
->assertTrue(empty($elements));
// Filter on the "Not translated to".
$edit = array(
'search[missing_target_language]' => 'gsw-berne',
);
$this
->drupalPostForm(NULL, $edit, t('Search'));
// Hello world is translated to "gsw-berne" therefore it must not show up
// in the list.
$this
->assertNoText('Hello World');
// Filter on the tmgmt_locale context.
$this
->drupalGet('admin/tmgmt/sources/locale/default');
$edit = array(
'search[context]' => 'tmgmt_locale',
);
$this
->drupalPostForm(NULL, $edit, t('Search'));
$this
->assertText('Hello World');
$this
->assertNoText('Example');
}