diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-02 08:47:41 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-02 08:47:41 +0000 |
commit | c3760557bda91fa2ad044f289dcfd2ede999363d (patch) | |
tree | 9ed4f7b9ab0b216479565851f35f68a536541060 /modules/simpletest/tests/common.test | |
parent | b25a1fd62f261c94a4acbece5f14c20c1b0d3315 (diff) | |
download | brdo-c3760557bda91fa2ad044f289dcfd2ede999363d.tar.gz brdo-c3760557bda91fa2ad044f289dcfd2ede999363d.tar.bz2 |
- Patch #243251 by naxoc, Signe, lilou, mcarbone: JavaScript requiring a query string cannot be loaded.
Diffstat (limited to 'modules/simpletest/tests/common.test')
-rw-r--r-- | modules/simpletest/tests/common.test | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/modules/simpletest/tests/common.test b/modules/simpletest/tests/common.test index 9a93d75c8..aa8f9d422 100644 --- a/modules/simpletest/tests/common.test +++ b/modules/simpletest/tests/common.test @@ -503,7 +503,7 @@ class CascadingStylesheetsTestCase extends DrupalWebTestCase { } function setUp() { - parent::setUp('php', 'locale'); + parent::setUp('php', 'locale', 'common_test'); // Reset drupal_add_css() before each test. drupal_static_reset('drupal_add_css'); } @@ -682,6 +682,16 @@ class CascadingStylesheetsTestCase extends DrupalWebTestCase { // Change the language back to left to right. $language->direction = LANGUAGE_LTR; } + + /** + * Tests that the query string remains intact when adding CSS files that have + * query string parameters. + */ + function testAddCssFileWithQueryString() { + $this->drupalGet('common-test/query-string'); + $query_string = substr(variable_get('css_js_query_string', '0'), 0, 1); + $this->assertRaw(drupal_get_path('module', 'node') . '/node.css?arg1=value1&arg2=value2&' . $query_string, t('Query string was appended correctly to css.')); + } } /** @@ -1255,6 +1265,16 @@ class JavaScriptTestCase extends DrupalWebTestCase { $scripts = drupal_get_js(); $this->assertTrue(strpos($scripts, 'misc/farbtastic/farbtastic.js'), t('The attached_library property adds the additional libraries.')); } + + /** + * Tests that the query string remains intact when adding JavaScript files + * that have query string parameters. + */ + function testAddJsFileWithQueryString() { + $this->drupalGet('common-test/query-string'); + $query_string = substr(variable_get('css_js_query_string', '0'), 0, 1); + $this->assertRaw(drupal_get_path('module', 'node') . '/node.js?arg1=value1&arg2=value2&' . $query_string, t('Query string was appended correctly to js.')); + } } /** |