ConfigActionsTest.php

Same filename in this branch
  1. 11.x core/modules/language/tests/src/Kernel/ConfigActionsTest.php
  2. 11.x core/modules/field/tests/src/Kernel/ConfigActionsTest.php
  3. 11.x core/modules/contact/tests/src/Kernel/ConfigActionsTest.php
  4. 11.x core/modules/node/tests/src/Kernel/ConfigActionsTest.php
  5. 11.x core/modules/image/tests/src/Kernel/ConfigActionsTest.php
  6. 11.x core/modules/block/tests/src/Kernel/ConfigActionsTest.php

Namespace

Drupal\Tests\media\Kernel

File

core/modules/media/tests/src/Kernel/ConfigActionsTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\media\Kernel;

use Drupal\Core\Config\Action\ConfigActionManager;
use Drupal\Core\Extension\ModuleInstallerInterface;
use Drupal\KernelTests\KernelTestBase;
use Drupal\media\Entity\MediaType;

/**
 * @group media
 */
class ConfigActionsTest extends KernelTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'media',
    ];
    private readonly ConfigActionManager $configActionManager;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->container
            ->get(ModuleInstallerInterface::class)
            ->install([
            'media_test_type',
        ]);
        $this->configActionManager = $this->container
            ->get('plugin.manager.config_action');
    }
    public function testConfigActions() : void {
        $media_type = MediaType::load('test');
        $this->assertSame('Test type.', $media_type->getDescription());
        $this->assertSame([
            'metadata_attribute' => 'field_attribute_config_test',
        ], $media_type->getFieldMap());
        $this->configActionManager
            ->applyAction('entity_method:media.type:setDescription', $media_type->getConfigDependencyName(), 'Changed by a config action...');
        $this->configActionManager
            ->applyAction('entity_method:media.type:setFieldMap', $media_type->getConfigDependencyName(), [
            'foo' => 'baz',
        ]);
        $media_type = MediaType::load('test');
        $this->assertSame('Changed by a config action...', $media_type->getDescription());
        $this->assertSame([
            'foo' => 'baz',
        ], $media_type->getFieldMap());
    }

}

Classes

Title Deprecated Summary
ConfigActionsTest @group media

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