View source
<?php
namespace Drupal\Tests\webform\Functional;
use Drupal\Core\Serialization\Yaml;
use Drupal\webform\Entity\Webform;
class WebformEntityTranslationTest extends WebformBrowserTestBase {
public static $modules = [
'block',
'webform',
'webform_ui',
'webform_test_translation',
];
protected function setUp() {
parent::setUp();
$this
->placeBlocks();
}
public function testTranslate() {
$this
->drupalLogin($this->rootUser);
$this
->drupalPostForm('/admin/config/system/site-information', [
'site_name' => 'Test Website',
], 'Save configuration');
$this
->drupalPostForm('/admin/config/system/site-information/translate/es/add', [
'translation[config_names][system.site][name]' => 'Sitio web de prueba',
], 'Save translation');
$translation_manager = \Drupal::service('webform.translation_manager');
$webform = Webform::load('test_translation');
$elements_raw = \Drupal::config('webform.webform.test_translation')
->get('elements');
$elements = Yaml::decode($elements_raw);
$this
->drupalGet('/admin/structure/webform/manage/test_translation');
$this
->assertRaw('>Translate<');
$this
->drupalGet('/admin/structure/webform/manage/test_translation/translate');
$this
->assertRaw('<a href="' . base_path() . 'webform/test_translation"><strong>English (original)</strong></a>');
$this
->assertRaw('<a href="' . base_path() . 'es/webform/test_translation" hreflang="es">Spanish</a>');
$this
->assertNoRaw('<a href="' . base_path() . 'fr/webform/test_translation" hreflang="fr">French</a>');
$this
->assertRaw('<a href="' . base_path() . 'admin/structure/webform/manage/test_translation/translate/es/edit">Edit</a>');
$this
->drupalGet('/admin/structure/webform/manage/test_translation/translate/es/edit');
$this
->assertFieldByName('translation[config_names][webform.webform.test_translation][title]', 'Prueba: Traducción');
$this
->assertField('translation[config_names][webform.webform.test_translation][elements]');
$this
->drupalGet('/es/admin/structure/webform/manage/test_translation');
$this
->assertLink('Text field');
$this
->assertNoLink('Campo de texto');
$this
->drupalPostForm('/es/admin/structure/webform/manage/test_translation', [], 'Reset');
$this
->assertLink('Text field');
$this
->assertNoLink('Campo de texto');
$this
->drupalGet('/es/admin/structure/webform/manage/test_translation/element/textfield/edit');
$this
->assertFieldByName('properties[title]', 'Text field');
$this
->assertNoFieldByName('properties[title]', 'Campo de texto');
$this
->drupalGet('/es/webform/test_translation');
$this
->assertRaw('<label for="edit-textfield">Campo de texto</label>');
$this
->assertRaw('<option value="1">Uno</option>');
$this
->assertRaw('<option value="4">Las cuatro</option>');
$this
->drupalGet('/es/webform/test_translation');
$this
->assertRaw('<label>Compuesto</label>');
$this
->assertRaw('<th class="composite-table--first_name webform-multiple-table--first_name">Nombre</th>');
$this
->assertRaw('<th class="composite-table--last_name webform-multiple-table--last_name">Apellido</th>');
$this
->assertRaw('<th class="composite-table--age webform-multiple-table--age">Edad</th>');
$this
->assertRaw('<span class="field-suffix">años. antiguo</span>');
$this
->drupalGet('/es/webform/test_translation');
$this
->assertRaw('<span class="visually-hidden fieldset-legend">Dirección</span>');
$this
->assertRaw('<label for="edit-address-address">Dirección</label>');
$this
->assertRaw('<label for="edit-address-address-2">Dirección 2</label>');
$this
->assertRaw('<label for="edit-address-city">Ciudad / Pueblo</label>');
$this
->assertRaw('<label for="edit-address-state-province">Estado / Provincia</label>');
$this
->assertRaw('<label for="edit-address-postal-code">ZIP / Código Postal</label>');
$this
->assertRaw('<label for="edit-address-country">Acciones de país</label>');
$this
->assertRaw('Site name: Sitio web de prueba');
$this
->drupalGet('/fr/webform/test_translation');
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->assertRaw('<option value="1">One</option>');
$this
->assertRaw('<option value="4">Four</option>');
$this
->assertRaw('Site name: Test Website');
$translation_element = $translation_manager
->getElements($webform, 'fr', TRUE);
$this
->assertEqual($elements, $translation_element);
$this
->drupalPostForm('/admin/config/system/site-information/translate/fr/add', [
'translation[config_names][system.site][name]' => 'Site Web de test',
], 'Save translation');
$this
->drupalGet('/admin/structure/webform/manage/test_translation/translate/fr/add');
$this
->assertRaw('<textarea lang="fr" data-drupal-selector="edit-translation-config-names-webformwebformtest-translation-elements" aria-describedby="edit-translation-config-names-webformwebformtest-translation-elements--description" class="js-webform-codemirror webform-codemirror yaml form-textarea" data-webform-codemirror-mode="text/x-yaml" id="edit-translation-config-names-webformwebformtest-translation-elements" name="translation[config_names][webform.webform.test_translation][elements]" rows="65" cols="60">variant:
'#title': Variant
textfield:
'#title': 'Text field'
select_options:
'#title': 'Select (options)'
select_custom:
'#title': 'Select (custom)'
'#options':
4: Four
5: Five
6: Six
'#other__option_label': 'Custom number…'
details:
'#title': Details
markup:
'#markup': 'This is some HTML markup.'
composite:
'#title': Composite
'#element':
first_name:
'#title': 'First name'
last_name:
'#title': 'Last name'
age:
'#title': Age
'#field_suffix': ' yrs. old'
address:
'#title': Address
'#address__title': Address
'#address_2__title': 'Address 2'
'#city__title': City/Town
'#state_province__title': State/Province
'#postal_code__title': 'ZIP/Postal Code'
'#country__title': Country
token:
'#title': 'Computed (token)'
autocomplete_options:
'#title': 'Autocomplete (options)'
autocomplete_custom:
'#title': 'Autocomplete (custom)'
actions:
'#title': 'Submit button(s)'
'#submit__label': 'Send message'</textarea>
</div>');
$this
->assertCssSelect('input[name$="[title]"][maxlength=255]');
$this
->assertCssSelect('input[name$="[submission_label]"]');
$this
->assertNoCssSelect('input[name$="[submission_label]"][maxlength]');
$translation_elements = [
'textfield' => [
'#title' => 'French',
'#custom' => 'custom',
],
'custom' => [
'#title' => 'Custom',
],
] + $elements;
$edit = [
'translation[config_names][webform.webform.test_translation][elements]' => Yaml::encode($translation_elements),
];
$this
->drupalPostForm('/admin/structure/webform/manage/test_translation/translate/fr/add', $edit, 'Save translation');
$this
->drupalGet('/fr/webform/test_translation');
$this
->assertRaw('<label for="edit-textfield">French</label>');
$this
->assertRaw('Site name: Site Web de test');
$this
->drupalGet('/admin/structure/webform/manage/test_translation/translate');
$this
->assertRaw('<a href="' . base_path() . 'webform/test_translation"><strong>English (original)</strong></a>');
$this
->assertRaw('<a href="' . base_path() . 'es/webform/test_translation" hreflang="es">Spanish</a>');
$this
->assertRaw('<a href="' . base_path() . 'fr/webform/test_translation" hreflang="fr">French</a>');
$translation_element = $translation_manager
->getElements($webform, 'fr', TRUE);
$this
->assertEqual([
'textfield' => [
'#title' => 'French',
],
], $translation_element);
$this
->drupalGet('/admin/structure/webform/manage/test_translation/results/submissions');
$this
->assertRaw('>Text field<');
$this
->assertRaw('>Select (options)<');
$this
->assertRaw('>Select (custom)<');
$this
->assertRaw('>Composite<');
$this
->drupalGet('/es/admin/structure/webform/manage/test_translation/results/submissions');
$this
->assertRaw('>Campo de texto<');
$this
->assertRaw('>Seleccione (opciones)<');
$this
->assertRaw('>Seleccione (personalizado)<');
$this
->assertRaw('>Compuesto<');
$this
->drupalPostForm('/webform/test_translation', [
'textfield' => 'English Submission',
], 'Send message');
$this
->drupalPostForm('/es/webform/test_translation', [
'textfield' => 'Spanish Submission',
], 'Enviar mensaje');
$this
->drupalPostForm('/fr/webform/test_translation', [
'textfield' => 'French Submission',
], 'Send message');
$this
->drupalGet('/admin/structure/webform/manage/test_translation/results/submissions');
$this
->assertRaw('Site name: Test Website');
$this
->assertNoRaw('Site name: Sitio web de prueba');
$this
->assertNoRaw('Site name: Sitio web de prueba');
\Drupal::configFactory()
->getEditable('system.site')
->set('default_langcode', 'en')
->save();
drupal_flush_all_caches();
$language_manager = \Drupal::languageManager();
$this
->drupalGet('/webform/test_translation', [
'language' => $language_manager
->getLanguage('en'),
]);
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->drupalGet('/webform/test_translation', [
'language' => $language_manager
->getLanguage('es'),
]);
$this
->assertRaw('<label for="edit-textfield">Campo de texto</label>');
$this
->drupalGet('/webform/test_translation', [
'language' => $language_manager
->getLanguage('fr'),
]);
$this
->assertRaw('<label for="edit-textfield">French</label>');
\Drupal::configFactory()
->getEditable('system.site')
->set('default_langcode', 'fr')
->save();
$this
->drupalGet('/webform/test_translation', [
'language' => $language_manager
->getLanguage('en'),
]);
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->drupalGet('/webform/test_translation', [
'language' => $language_manager
->getLanguage('es'),
]);
$this
->assertRaw('<label for="edit-textfield">Campo de texto</label>');
$this
->drupalGet('/webform/test_translation', [
'language' => $language_manager
->getLanguage('fr'),
]);
$this
->assertRaw('<label for="edit-textfield">French</label>');
\Drupal::configFactory()
->getEditable('system.site')
->set('default_langcode', 'en')
->save();
drupal_flush_all_caches();
$edit = [
'title' => 'DUPLICATE',
'id' => 'duplicate',
];
$this
->drupalPostForm('/admin/structure/webform/manage/test_translation/duplicate', $edit, 'Save');
$this
->drupalGet('/webform/duplicate', [
'language' => $language_manager
->getLanguage('en'),
]);
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->drupalGet('/webform/duplicate', [
'language' => $language_manager
->getLanguage('es'),
]);
$this
->assertRaw('<label for="edit-textfield">Campo de texto</label>');
$this
->drupalGet('/webform/duplicate', [
'language' => $language_manager
->getLanguage('fr'),
]);
$this
->assertRaw('<label for="edit-textfield">French</label>');
}
public function testTranslateVariants() {
$this
->drupalGet('/webform/test_translation');
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->assertRaw('<label for="edit-select-options">Select (options)</label>');
$this
->drupalGet('/webform/test_translation', [
'query' => [
'variant' => 'test',
],
]);
$this
->assertRaw('<label for="edit-textfield">Text field - Variant</label>');
$this
->assertRaw('<label for="edit-select-options">Select (options)</label>');
$this
->drupalGet('/es/webform/test_translation');
$this
->assertRaw('<label for="edit-textfield">Campo de texto</label>');
$this
->assertRaw('<label for="edit-select-options">Seleccione (opciones)</label>');
$this
->drupalGet('/es/webform/test_translation', [
'query' => [
'variant' => 'test',
],
]);
$this
->assertRaw('<label for="edit-textfield">Campo de texto - Variante</label>');
$this
->assertRaw('<label for="edit-select-options">Seleccione (opciones)</label>');
$this
->drupalGet('/fr/webform/test_translation');
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->assertRaw('<label for="edit-select-options">Select (options)</label>');
$this
->drupalGet('/fr/webform/test_translation', [
'query' => [
'variant' => 'test',
],
]);
$this
->assertRaw('<label for="edit-textfield">Text field - Variant</label>');
$this
->assertRaw('<label for="edit-select-options">Select (options)</label>');
$webform = Webform::load('test_translation');
$variants = $webform
->getVariants();
foreach ($variants as $variant) {
$webform
->deleteWebformVariant($variant);
}
$webform
->deleteElement('variant');
$webform
->save();
$this
->drupalGet('/webform/test_translation');
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->assertRaw('<label for="edit-select-options">Select (options)</label>');
$this
->drupalGet('/webform/test_translation', [
'query' => [
'variant' => 'test',
],
]);
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->assertRaw('<label for="edit-select-options">Select (options)</label>');
$this
->drupalGet('/es/webform/test_translation');
$this
->assertRaw('<label for="edit-textfield">Campo de texto</label>');
$this
->assertRaw('<label for="edit-select-options">Seleccione (opciones)</label>');
$this
->drupalGet('/es/webform/test_translation', [
'query' => [
'variant' => 'test',
],
]);
$this
->assertRaw('<label for="edit-textfield">Campo de texto</label>');
$this
->assertRaw('<label for="edit-select-options">Seleccione (opciones)</label>');
$this
->drupalGet('/fr/webform/test_translation');
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->assertRaw('<label for="edit-select-options">Select (options)</label>');
$this
->drupalGet('/fr/webform/test_translation', [
'query' => [
'variant' => 'test',
],
]);
$this
->assertRaw('<label for="edit-textfield">Text field</label>');
$this
->assertRaw('<label for="edit-select-options">Select (options)</label>');
}
}