From 61d4faab186c34f84390b3be6187d2b95559a55f Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Tue, 1 Sep 2009 20:40:40 +0000 Subject: #497948: Oops. Adding the color.test file. --- modules/color/color.test | 50 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 modules/color/color.test (limited to 'modules') diff --git a/modules/color/color.test b/modules/color/color.test new file mode 100644 index 000000000..caaa92557 --- /dev/null +++ b/modules/color/color.test @@ -0,0 +1,50 @@ + 'Color functionality', + 'description' => 'Modify the garland theme color and make sure the changes are reflected on the frontend', + 'group' => 'Color', + ); + } + + function setUp() { + parent::setUp('color'); + // Create users. + $this->big_user = $this->drupalCreateUser(array('administer site configuration')); + } + + /** + * Test color module functionality. + */ + function testColor() { + $this->drupalLogin($this->big_user); + $this->drupalGet('admin/appearance/settings/garland'); + $this->assertResponse(200); + $edit['scheme'] = ''; + $edit['palette[link]'] = '#123456'; + $this->drupalPost('admin/appearance/settings/garland', $edit, t('Save configuration')); + + global $theme_key; + $this->drupalGet(''); + $stylesheets = variable_get('color_' . $theme_key . '_stylesheets', array()); + $this->assertPattern('|' . file_create_url($stylesheets[0]) . '|', 'Make sure the color stylesheet is included in the content.'); + + $stylesheet_content = join("\n", file($stylesheets[0])); + $matched = preg_match('/(.*color: #123456.*)/i', $stylesheet_content, $matches); + $this->assertTrue($matched == 1, 'Make sure the color we changed is in the color stylesheet.'); + } + +} -- cgit v1.2.3