class ConfigFactoryTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Config/ConfigFactoryTest.php \Drupal\Tests\Core\Config\ConfigFactoryTest
@group Config @coversDefaultClass \Drupal\Core\Config\ConfigFactory
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Config\ConfigFactoryTest
Expanded class hierarchy of ConfigFactoryTest
File
- core/
tests/ Drupal/ Tests/ Core/ Config/ ConfigFactoryTest.php, line 19 - Contains \Drupal\Tests\Core\Config\ConfigFactoryTest.
Namespace
Drupal\Tests\Core\ConfigView source
class ConfigFactoryTest extends UnitTestCase {
/**
* Config factory under test.
*
* @var \Drupal\Core\Config\ConfigFactory
*/
protected $configFactory;
/**
* Storage.
*
* @var \Drupal\Core\Config\StorageInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $storage;
/**
* Event Dispatcher.
*
* @var \Symfony\Component\EventDispatcher\EventDispatcherInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $eventDispatcher;
/**
* Typed Config.
*
* @var \Drupal\Core\Config\TypedConfigManagerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $typedConfig;
/**
* The mocked cache tags invalidator.
*
* @var \Drupal\Core\Cache\CacheTagsInvalidatorInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $cacheTagsInvalidator;
/**
* {@inheritdoc}
*/
public function setUp() {
$this->storage = $this
->getMock('Drupal\\Core\\Config\\StorageInterface');
$this->eventDispatcher = $this
->getMock('Symfony\\Component\\EventDispatcher\\EventDispatcherInterface');
$this->typedConfig = $this
->getMock('\\Drupal\\Core\\Config\\TypedConfigManagerInterface');
$this->configFactory = new ConfigFactory($this->storage, $this->eventDispatcher, $this->typedConfig);
$this->cacheTagsInvalidator = $this
->getMock('Drupal\\Core\\Cache\\CacheTagsInvalidatorInterface');
$container = new ContainerBuilder();
$container
->set('cache_tags.invalidator', $this->cacheTagsInvalidator);
\Drupal::setContainer($container);
}
/**
* @covers ::rename
*/
public function testRename() {
$old = new Config($this
->randomMachineName(), $this->storage, $this->eventDispatcher, $this->typedConfig);
$new = new Config($this
->randomMachineName(), $this->storage, $this->eventDispatcher, $this->typedConfig);
$this->storage
->expects($this
->exactly(2))
->method('readMultiple')
->willReturnMap([
[
[
$old
->getName(),
],
$old
->getRawData(),
],
[
[
$new
->getName(),
],
$new
->getRawData(),
],
]);
$this->cacheTagsInvalidator
->expects($this
->once())
->method('invalidateTags')
->with($old
->getCacheTags());
$this->storage
->expects($this
->once())
->method('rename')
->with($old
->getName(), $new
->getName());
$this->configFactory
->rename($old
->getName(), $new
->getName());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFactoryTest:: |
protected | property | The mocked cache tags invalidator. | |
ConfigFactoryTest:: |
protected | property | Config factory under test. | |
ConfigFactoryTest:: |
protected | property | Event Dispatcher. | |
ConfigFactoryTest:: |
protected | property | Storage. | |
ConfigFactoryTest:: |
protected | property | Typed Config. | |
ConfigFactoryTest:: |
public | function |
Overrides UnitTestCase:: |
|
ConfigFactoryTest:: |
public | function | @covers ::rename | |
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. |