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\Functional
Code
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);
$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();
$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'));
$this
->assertText('Hello World');
$this
->assertText(t('Locale'));
$this
->assertText('2');
$this
->drupalPostForm(NULL, array(
'target_language' => 'gsw-berne',
), t('Submit to provider'));
$this
->drupalGet('admin/tmgmt/sources/locale/default');
$this
->assertRaw(t('Active job item: Needs review'));
$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);
$this
->drupalGet('admin/tmgmt/sources/locale/default');
$elements = $this
->xpath('//select[@name=:name]//option[@value=:option]', array(
':name' => 'search[target_language]',
':option' => 'en',
));
$this
->assertTrue(empty($elements));
$edit = array(
'search[missing_target_language]' => 'gsw-berne',
);
$this
->drupalPostForm(NULL, $edit, t('Search'));
$this
->assertNoText('Hello World');
$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');
}