View source
<?php
namespace Drupal\lingotek\Tests;
use Drupal\node\NodeInterface;
class LingotekContentTypeLocaleTranslationTest extends LingotekTestBase {
public static $modules = [
'block',
'node',
'image',
'comment',
];
protected $node;
protected function setUp() {
parent::setUp();
$this
->drupalPlaceBlock('local_tasks_block');
$this
->drupalPlaceBlock('page_title_block');
$this
->drupalCreateContentType(array(
'type' => 'article',
'name' => 'Article',
));
$post = [
'code' => 'es_ES',
'language' => 'Spanish',
'native' => 'Español',
'direction' => '',
];
$this
->drupalPost('/admin/lingotek/dashboard_endpoint', 'application/json', $post);
$post = [
'code' => 'es_AR',
'language' => 'Spanish',
'native' => 'Español',
'direction' => '',
];
$this
->drupalPost('/admin/lingotek/dashboard_endpoint', 'application/json', $post);
drupal_static_reset();
\Drupal::entityManager()
->clearCachedDefinitions();
\Drupal::service('entity.definition_update_manager')
->applyUpdates();
$this
->rebuildContainer();
}
public function testContentTypeTranslation() {
\Drupal::state()
->set('lingotek.uploaded_content_type', 'content_type');
$this
->drupalLogin($this->rootUser);
$this
->drupalGet('/admin/config/regional/config-translation');
$this
->drupalGet('/admin/config/regional/config-translation/node_type');
$this
->clickLink(t('Translate'));
$this
->clickLink(t('Upload'));
$this
->assertText(t('Article uploaded successfully'));
$data = json_decode(\Drupal::state()
->get('lingotek.uploaded_content', '[]'), TRUE);
$this
->assertEqual(3, count($data));
$this
->assertTrue(array_key_exists('name', $data));
$this
->assertTrue(array_key_exists('description', $data));
$this
->assertTrue(array_key_exists('help', $data));
$uploaded_url = \Drupal::state()
->get('lingotek.uploaded_url');
$this
->assertIdentical(\Drupal::request()
->getUriForPath('/admin/structure/types/manage/article'), $uploaded_url, 'The article type url was used.');
$used_profile = \Drupal::state()
->get('lingotek.used_profile');
$this
->assertIdentical('automatic', $used_profile, 'The automatic profile was used.');
$this
->clickLink(t('Check upload status'));
$this
->assertText(t('Article status checked successfully'));
$this
->clickLinkHelper(t('Request translation'), 0, '//a[normalize-space()=:label and contains(@href,\'es_AR\')]');
$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 status checked successfully'));
$this
->clickLink('Download');
$this
->assertText(t('Translation to es_AR downloaded successfully'));
$basepath = \Drupal::request()
->getBasePath();
$this
->assertLinkByHref($basepath . '/admin/structure/types/manage/article/translate/es-ar/edit');
}
}