class ImmutableConfigTest

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest
  2. 10 core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest
  3. 11.x core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest

@coversDefaultClass \Drupal\Core\Config\ImmutableConfig @group Config

Hierarchy

Expanded class hierarchy of ImmutableConfigTest

File

core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php, line 13

Namespace

Drupal\Tests\Core\Config
View source
class ImmutableConfigTest extends UnitTestCase {
    
    /**
     * The immutable config object under test.
     *
     * @var \Drupal\Core\Config\ImmutableConfig
     */
    protected $config;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $storage = $this->createMock('Drupal\\Core\\Config\\StorageInterface');
        $event_dispatcher = $this->createMock('Symfony\\Contracts\\EventDispatcher\\EventDispatcherInterface');
        $typed_config = $this->createMock('Drupal\\Core\\Config\\TypedConfigManagerInterface');
        $this->config = new ImmutableConfig('test', $storage, $event_dispatcher, $typed_config);
    }
    
    /**
     * @covers ::set
     */
    public function testSet() {
        $this->expectException(ImmutableConfigException::class);
        $this->expectExceptionMessage('Can not set values on immutable configuration test:name. Use \\Drupal\\Core\\Config\\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object');
        $this->config
            ->set('name', 'value');
    }
    
    /**
     * @covers ::clear
     */
    public function testClear() {
        $this->expectException(ImmutableConfigException::class);
        $this->expectExceptionMessage('Can not clear name key in immutable configuration test. Use \\Drupal\\Core\\Config\\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object');
        $this->config
            ->clear('name');
    }
    
    /**
     * @covers ::save
     */
    public function testSave() {
        $this->expectException(ImmutableConfigException::class);
        $this->expectExceptionMessage('Can not save immutable configuration test. Use \\Drupal\\Core\\Config\\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object');
        $this->config
            ->save();
    }
    
    /**
     * @covers ::delete
     */
    public function testDelete() {
        $this->expectException(ImmutableConfigException::class);
        $this->expectExceptionMessage('Can not delete immutable configuration test. Use \\Drupal\\Core\\Config\\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object');
        $this->config
            ->delete();
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
ImmutableConfigTest::$config protected property The immutable config object under test.
ImmutableConfigTest::setUp protected function Overrides UnitTestCase::setUp
ImmutableConfigTest::testClear public function @covers ::clear
ImmutableConfigTest::testDelete public function @covers ::delete
ImmutableConfigTest::testSave public function @covers ::save
ImmutableConfigTest::testSet public function @covers ::set
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUpBeforeClass public static function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.