function ConfigFactoryTest::testRename

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

@covers ::rename

File

core/tests/Drupal/Tests/Core/Config/ConfigFactoryTest.php, line 70

Class

ConfigFactoryTest
@group Config @coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Config%21ConfigFactory.php/class/ConfigFactory/9" title="Defines the configuration object factory." class="local">\Drupal\Core\Config\ConfigFactory</a>

Namespace

Drupal\Tests\Core\Config

Code

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());
}

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