View source
<?php
namespace Drupal\Tests\lingotek\Functional;
use Drupal\language\Entity\ConfigurableLanguage;
class LingotekSystemSiteLocaleTranslationTest extends LingotekTestBase {
public static $modules = [
'block',
'node',
'image',
'comment',
];
protected $node;
protected function setUp() : void {
parent::setUp();
$this
->drupalPlaceBlock('local_tasks_block');
$this
->drupalPlaceBlock('page_title_block');
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_ES')
->save();
ConfigurableLanguage::createFromLangcode('es-ar')
->setThirdPartySetting('lingotek', 'locale', 'es_AR')
->save();
drupal_static_reset();
\Drupal::entityTypeManager()
->clearCachedDefinitions();
$this
->applyEntityUpdates();
$this
->rebuildContainer();
}
public function testSystemSiteTranslation() {
$assert_session = $this
->assertSession();
\Drupal::state()
->set('lingotek.uploaded_content_type', 'system.site');
$this
->drupalLogin($this->rootUser);
$this
->drupalGet('/admin/config/regional/config-translation');
$this
->clickLink(t('Translate'), 2);
$this
->clickLink(t('Upload'));
$this
->assertText(t('System information uploaded successfully'));
$data = json_decode(\Drupal::state()
->get('lingotek.uploaded_content', '[]'), TRUE);
$this
->assertEqual(1, count($data));
$this
->assertTrue(array_key_exists('system.site', $data));
$this
->assertEqual(2, count($data['system.site']));
$this
->assertTrue(array_key_exists('name', $data['system.site']));
$this
->assertTrue(array_key_exists('slogan', $data['system.site']));
$uploaded_url = \Drupal::state()
->get('lingotek.uploaded_url');
$this
->assertIdentical(NULL, $uploaded_url, 'There is not URL.');
$used_profile = \Drupal::state()
->get('lingotek.used_profile');
$this
->assertIdentical('manual', $used_profile, 'The manual profile was used.');
$this
->clickLink(t('Check upload status'));
$this
->assertText(t('System information status checked successfully'));
$link = $this
->xpath('//a[normalize-space()="Request translation" and contains(@href,"es_AR")]');
$link[0]
->click();
$this
->assertText(t('Translation to es_AR requested successfully'));
$this
->assertIdentical('es_AR', \Drupal::state()
->get('lingotek.added_target_locale'));
$this
->clickLink(t('Check Download'));
$this
->assertText(t('Translation to es_AR checked successfully'));
$this
->clickLink('Download');
$this
->assertText(t('Translation to es_AR downloaded successfully'));
$basepath = \Drupal::request()
->getBasePath();
$assert_session
->linkByHrefExists($basepath . '/admin/config/system/site-information/translate/es-ar/edit');
}
}