ColorConfigSchemaTest.php
Same filename in other branches
Namespace
Drupal\Tests\color\FunctionalFile
-
core/
modules/ color/ tests/ src/ Functional/ ColorConfigSchemaTest.php
View source
<?php
namespace Drupal\Tests\color\Functional;
use Drupal\Tests\BrowserTestBase;
/**
* Ensures the color config schema is correct.
*
* @group color
*/
class ColorConfigSchemaTest extends BrowserTestBase {
/**
* Modules to install.
*
* @var array
*/
public static $modules = [
'color',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* A user with administrative permissions.
*
* @var \Drupal\user\UserInterface
*/
protected $adminUser;
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
\Drupal::service('theme_installer')->install([
'bartik',
]);
// Create user.
$this->adminUser = $this->drupalCreateUser([
'administer themes',
]);
$this->drupalLogin($this->adminUser);
}
/**
* Tests whether the color config schema is valid.
*/
public function testValidColorConfigSchema() {
$settings_path = 'admin/appearance/settings/bartik';
$edit['scheme'] = '';
$edit['palette[bg]'] = '#123456';
$this->drupalPostForm($settings_path, $edit, t('Save configuration'));
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ColorConfigSchemaTest | Ensures the color config schema is correct. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.