View source
<?php
namespace Drupal\Tests\lingotek\Functional;
use Drupal\language\Entity\ConfigurableLanguage;
class LingotekFieldBodyBulkDebugTest extends LingotekTestBase {
public static $modules = [
'block',
'node',
'field_ui',
];
protected function setUp() {
parent::setUp();
$type = $this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
node_add_body_field($type);
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_MX')
->save();
$this
->saveLingotekConfigTranslationSettings([
'node_fields' => 'automatic',
]);
}
public function testDebugOptionsDisplay() {
$this
->drupalLogin($this->rootUser);
$this
->goToConfigBulkManagementForm();
$this
->assertEmpty($this
->xpath('//select[@id=:id]//optgroup[@label=:label]', [
':id' => 'edit-operation',
':label' => 'debug',
]), 'There is no debug group.');
$this
->drupalGet('admin/lingotek/settings');
$this
->drupalPostForm(NULL, [], t('Enable debug operations'));
$this
->goToConfigBulkManagementForm();
$this
->assertNotEmpty($this
->xpath('//select[@id=:id]//optgroup[@label=:label]', [
':id' => 'edit-operation',
':label' => 'debug',
]), 'There is a debug group.');
$this
->assertNotEmpty($this
->xpath('//select[@id=:id]//option[@value=:value]', [
':id' => 'edit-operation',
':value' => 'debug.export',
]), 'There is a debug export option.');
}
public function testDebugExport() {
$this
->drupalLogin($this->rootUser);
$this
->drupalGet('admin/lingotek/settings');
$this
->drupalPostForm(NULL, [], t('Enable debug operations'));
$this
->goToConfigBulkManagementForm('node_fields');
$edit = [
'table[node.article.body]' => TRUE,
$this
->getBulkOperationFormName() => 'change_profile:manual',
];
$this
->drupalPostForm(NULL, $edit, $this
->getApplyActionsButtonLabel());
$edit = [
'table[node.article.body]' => TRUE,
$this
->getBulkOperationFormName() => 'debug.export',
];
$this
->drupalPostForm(NULL, $edit, $this
->getApplyActionsButtonLabel());
$this
->assertText('Exports available');
$this
->clickLink('config.node.article.body.json');
$response = json_decode($this
->getSession()
->getPage()
->getContent(), TRUE);
$this
->assertIdentical('Body', $response['field.field.node.article.body']['label']);
$this
->assertIdentical('', $response['field.field.node.article.body']['description']);
$this
->assertIdentical('node.article.body (config): Body', $response['_debug']['title']);
$this
->assertIdentical('manual', $response['_debug']['profile']);
$this
->assertIdentical('en_US', $response['_debug']['source_locale']);
}
}