Update to Drupal 8.0.6. For more information, see https://www.drupal.org/drupal-8.0.6-release-notes
This commit is contained in:
parent
4297c64508
commit
b11a755ba8
159 changed files with 2340 additions and 543 deletions
|
@ -8,6 +8,7 @@
|
|||
namespace Drupal\config_translation\Tests;
|
||||
|
||||
use Drupal\Component\Serialization\Json;
|
||||
use Drupal\Component\Utility\Html;
|
||||
use Drupal\Component\Utility\SafeMarkup;
|
||||
use Drupal\Component\Utility\Unicode;
|
||||
use Drupal\Core\Language\Language;
|
||||
|
@ -733,6 +734,46 @@ class ConfigTranslationUiTest extends WebTestBase {
|
|||
$this->assertEscaped($translatable_storage_setting);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests the translation of a boolean field settings.
|
||||
*/
|
||||
public function testBooleanFieldConfigTranslation() {
|
||||
// Add a test boolean field.
|
||||
$field_name = strtolower($this->randomMachineName());
|
||||
FieldStorageConfig::create([
|
||||
'field_name' => $field_name,
|
||||
'entity_type' => 'entity_test',
|
||||
'type' => 'boolean',
|
||||
])->save();
|
||||
|
||||
$bundle = strtolower($this->randomMachineName());
|
||||
entity_test_create_bundle($bundle);
|
||||
$field = FieldConfig::create([
|
||||
'field_name' => $field_name,
|
||||
'entity_type' => 'entity_test',
|
||||
'bundle' => $bundle,
|
||||
]);
|
||||
|
||||
$on_label = 'On label (with <em>HTML</em> & things)';
|
||||
$field->setSetting('on_label', $on_label);
|
||||
$off_label = 'Off label (with <em>HTML</em> & things)';
|
||||
$field->setSetting('off_label', $off_label);
|
||||
$field->save();
|
||||
|
||||
$this->drupalLogin($this->translatorUser);
|
||||
|
||||
$this->drupalGet("/entity_test/structure/$bundle/fields/entity_test.$bundle.$field_name/translate");
|
||||
$this->clickLink('Add');
|
||||
|
||||
// Checks the text of details summary element that surrounds the translation
|
||||
// options.
|
||||
$this->assertText(Html::escape(strip_tags($on_label)) . ' Boolean settings');
|
||||
|
||||
// Checks that the correct on and off labels appear on the form.
|
||||
$this->assertEscaped($on_label);
|
||||
$this->assertEscaped($off_label);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test translation storage in locale storage.
|
||||
*/
|
||||
|
|
Reference in a new issue