class LanguageConfigOverrideTest

Same name and namespace in other branches
  1. 8.9.x core/modules/language/tests/src/Unit/Config/LanguageConfigOverrideTest.php \Drupal\Tests\language\Unit\Config\LanguageConfigOverrideTest
  2. 10 core/modules/language/tests/src/Unit/Config/LanguageConfigOverrideTest.php \Drupal\Tests\language\Unit\Config\LanguageConfigOverrideTest
  3. 11.x core/modules/language/tests/src/Unit/Config/LanguageConfigOverrideTest.php \Drupal\Tests\language\Unit\Config\LanguageConfigOverrideTest

@coversDefaultClass \Drupal\language\Config\LanguageConfigOverride @group Config @group language

Hierarchy

Expanded class hierarchy of LanguageConfigOverrideTest

File

core/modules/language/tests/src/Unit/Config/LanguageConfigOverrideTest.php, line 14

Namespace

Drupal\Tests\language\Unit\Config
View source
class LanguageConfigOverrideTest extends UnitTestCase {
    
    /**
     * Language configuration override.
     *
     * @var \Drupal\language\Config\LanguageConfigOverride
     */
    protected $configTranslation;
    
    /**
     * Storage.
     *
     * @var \Drupal\Core\Config\StorageInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $storage;
    
    /**
     * Event Dispatcher.
     *
     * @var \Symfony\Contracts\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}
     */
    protected function setUp() : void {
        $this->storage = $this->createMock('Drupal\\Core\\Config\\StorageInterface');
        $this->eventDispatcher = $this->createMock('Symfony\\Contracts\\EventDispatcher\\EventDispatcherInterface');
        $this->typedConfig = $this->createMock('\\Drupal\\Core\\Config\\TypedConfigManagerInterface');
        $this->configTranslation = new LanguageConfigOverride('config.test', $this->storage, $this->typedConfig, $this->eventDispatcher);
        $this->cacheTagsInvalidator = $this->createMock('Drupal\\Core\\Cache\\CacheTagsInvalidatorInterface');
        $container = new ContainerBuilder();
        $container->set('cache_tags.invalidator', $this->cacheTagsInvalidator);
        \Drupal::setContainer($container);
    }
    
    /**
     * @covers ::save
     */
    public function testSaveNew() {
        $this->cacheTagsInvalidator
            ->expects($this->once())
            ->method('invalidateTags')
            ->with([
            'config:config.test',
        ]);
        $this->assertTrue($this->configTranslation
            ->isNew());
        $this->configTranslation
            ->save();
    }
    
    /**
     * @covers ::save
     */
    public function testSaveExisting() {
        $this->cacheTagsInvalidator
            ->expects($this->once())
            ->method('invalidateTags')
            ->with([
            'config:config.test',
        ]);
        $this->configTranslation
            ->initWithData([]);
        $this->configTranslation
            ->save();
    }
    
    /**
     * @covers ::delete
     */
    public function testDelete() {
        $this->cacheTagsInvalidator
            ->expects($this->once())
            ->method('invalidateTags')
            ->with([
            'config:config.test',
        ]);
        $this->configTranslation
            ->initWithData([]);
        $this->configTranslation
            ->delete();
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
LanguageConfigOverrideTest::$cacheTagsInvalidator protected property The mocked cache tags invalidator.
LanguageConfigOverrideTest::$configTranslation protected property Language configuration override.
LanguageConfigOverrideTest::$eventDispatcher protected property Event Dispatcher.
LanguageConfigOverrideTest::$storage protected property Storage.
LanguageConfigOverrideTest::$typedConfig protected property Typed Config.
LanguageConfigOverrideTest::setUp protected function Overrides UnitTestCase::setUp
LanguageConfigOverrideTest::testDelete public function @covers ::delete
LanguageConfigOverrideTest::testSaveExisting public function @covers ::save
LanguageConfigOverrideTest::testSaveNew public function @covers ::save
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.