class ConfigFormBaseTraitTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest
@coversDefaultClass \Drupal\Core\Form\ConfigFormBaseTrait @group Form
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest
Expanded class hierarchy of ConfigFormBaseTraitTest
File
- core/
tests/ Drupal/ Tests/ Core/ Form/ ConfigFormBaseTraitTest.php, line 16 - Contains \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest.
Namespace
Drupal\Tests\Core\FormView source
class ConfigFormBaseTraitTest extends UnitTestCase {
/**
* @covers ::config
*/
public function testConfig() {
$trait = $this
->getMockForTrait('Drupal\\Core\\Form\\ConfigFormBaseTrait');
// Set up some configuration in a mocked config factory.
$trait->configFactory = $this
->getConfigFactoryStub([
'editable.config' => [],
'immutable.config' => [],
]);
$trait
->expects($this
->any())
->method('getEditableConfigNames')
->willReturn([
'editable.config',
]);
$config_method = new \ReflectionMethod($trait, 'config');
$config_method
->setAccessible(TRUE);
// Ensure that configuration that is expected to be mutable is.
$result = $config_method
->invoke($trait, 'editable.config');
$this
->assertInstanceOf('\\Drupal\\Core\\Config\\Config', $result);
$this
->assertNotInstanceOf('\\Drupal\\Core\\Config\\ImmutableConfig', $result);
// Ensure that configuration that is expected to be immutable is.
$result = $config_method
->invoke($trait, 'immutable.config');
$this
->assertInstanceOf('\\Drupal\\Core\\Config\\ImmutableConfig', $result);
}
/**
* @covers ::config
* @expectedException \LogicException
* @expectedExceptionMessage No config factory available for ConfigFormBaseTrait
*/
public function testConfigFactoryException() {
$trait = $this
->getMockForTrait('Drupal\\Core\\Form\\ConfigFormBaseTrait');
$config_method = new \ReflectionMethod($trait, 'config');
$config_method
->setAccessible(TRUE);
// There is no config factory available this should result in an exception.
$config_method
->invoke($trait, 'editable.config');
}
/**
* @covers ::config
* @expectedException \LogicException
* @expectedExceptionMessage No config factory available for ConfigFormBaseTrait
*/
public function testConfigFactoryExceptionInvalidProperty() {
$trait = $this
->getMockForTrait('Drupal\\Core\\Form\\ConfigFormBaseTrait');
$trait->configFactory = TRUE;
$config_method = new \ReflectionMethod($trait, 'config');
$config_method
->setAccessible(TRUE);
// There is no config factory available this should result in an exception.
$config_method
->invoke($trait, 'editable.config');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFormBaseTraitTest:: |
public | function | @covers ::config | |
ConfigFormBaseTraitTest:: |
public | function | @covers ::config @expectedException \LogicException @expectedExceptionMessage No config factory available for ConfigFormBaseTrait | |
ConfigFormBaseTraitTest:: |
public | function | @covers ::config @expectedException \LogicException @expectedExceptionMessage No config factory available for ConfigFormBaseTrait | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 259 |