You are here

function ColorTest::_testColor in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/color/src/Tests/ColorTest.php \Drupal\color\Tests\ColorTest::_testColor()

Tests the Color module functionality using the given theme.

Parameters

string $theme: The machine name of the theme being tested.

array $test_values: An associative array of test settings (i.e. 'Main background', 'Text color', 'Color set', etc) for the theme which being tested.

1 call to ColorTest::_testColor()
ColorTest::testColor in core/modules/color/src/Tests/ColorTest.php
Tests the Color module functionality.

File

core/modules/color/src/Tests/ColorTest.php, line 107
Contains \Drupal\color\Tests\ColorTest.

Class

ColorTest
Modify the Bartik theme colors and make sure the changes are reflected on the frontend.

Namespace

Drupal\color\Tests

Code

function _testColor($theme, $test_values) {
  $this
    ->config('system.theme')
    ->set('default', $theme)
    ->save();
  $settings_path = 'admin/appearance/settings/' . $theme;
  $this
    ->drupalLogin($this->bigUser);
  $this
    ->drupalGet($settings_path);
  $this
    ->assertResponse(200);
  $this
    ->assertUniqueText('Color set');
  $edit['scheme'] = '';
  $edit[$test_values['palette_input']] = '#123456';
  $this
    ->drupalPostForm($settings_path, $edit, t('Save configuration'));
  $this
    ->drupalGet('<front>');
  $stylesheets = $this
    ->config('color.theme.' . $theme)
    ->get('stylesheets');
  foreach ($stylesheets as $stylesheet) {
    $this
      ->assertPattern('|' . file_create_url($stylesheet) . '|', 'Make sure the color stylesheet is included in the content. (' . $theme . ')');
    $stylesheet_content = join("\n", file($stylesheet));
    $this
      ->assertTrue(strpos($stylesheet_content, 'color: #123456') !== FALSE, 'Make sure the color we changed is in the color stylesheet. (' . $theme . ')');
  }
  $this
    ->drupalGet($settings_path);
  $this
    ->assertResponse(200);
  $edit['scheme'] = $test_values['scheme'];
  $this
    ->drupalPostForm($settings_path, $edit, t('Save configuration'));
  $this
    ->drupalGet('<front>');
  $stylesheets = $this
    ->config('color.theme.' . $theme)
    ->get('stylesheets');
  foreach ($stylesheets as $stylesheet) {
    $stylesheet_content = join("\n", file($stylesheet));
    $this
      ->assertTrue(strpos($stylesheet_content, 'color: ' . $test_values['scheme_color']) !== FALSE, 'Make sure the color we changed is in the color stylesheet. (' . $theme . ')');
  }

  // Test with aggregated CSS turned on.
  $config = $this
    ->config('system.performance');
  $config
    ->set('css.preprocess', 1);
  $config
    ->save();
  $this
    ->drupalGet('<front>');
  $stylesheets = \Drupal::state()
    ->get('drupal_css_cache_files') ?: array();
  $stylesheet_content = '';
  foreach ($stylesheets as $uri) {
    $stylesheet_content .= join("\n", file(drupal_realpath($uri)));
  }
  $this
    ->assertTrue(strpos($stylesheet_content, 'public://') === FALSE, 'Make sure the color paths have been translated to local paths. (' . $theme . ')');
  $config
    ->set('css.preprocess', 0);
  $config
    ->save();
}