Mercurial > hg > isophonics-drupal-site
diff core/tests/Drupal/FunctionalJavascriptTests/JavascriptGetDrupalSettingsTest.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/tests/Drupal/FunctionalJavascriptTests/JavascriptGetDrupalSettingsTest.php Thu Feb 28 13:21:36 2019 +0000 @@ -0,0 +1,44 @@ +<?php + +namespace Drupal\FunctionalJavascriptTests; + +/** + * Tests Drupal settings retrieval in JavascriptTestBase tests. + * + * @group javascript + */ +class JavascriptGetDrupalSettingsTest extends WebDriverTestBase { + + /** + * {@inheritdoc} + */ + protected static $modules = ['test_page_test']; + + /** + * Tests retrieval of Drupal settings. + * + * @see \Drupal\FunctionalJavascriptTests\WebDriverTestBase::getDrupalSettings() + */ + public function testGetDrupalSettings() { + $this->drupalLogin($this->drupalCreateUser()); + $this->drupalGet('test-page'); + + // Check that we can read the JS settings. + $js_settings = $this->getDrupalSettings(); + $this->assertSame('azAZ09();.,\\\/-_{}', $js_settings['test-setting']); + + // Dynamically change the setting using Javascript. + $script = <<<EndOfScript +(function () { + drupalSettings['test-setting'] = 'foo'; +})(); +EndOfScript; + + $this->getSession()->evaluateScript($script); + + // Check that the setting has been changed. + $js_settings = $this->getDrupalSettings(); + $this->assertSame('foo', $js_settings['test-setting']); + } + +}