
| Current Path : /var/www/html/recommended-project/web/core/modules/node/tests/src/Kernel/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/recommended-project/web/core/modules/node/tests/src/Kernel/ConfigActionsTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\node\Kernel;
use Drupal\Core\Config\Action\ConfigActionManager;
use Drupal\KernelTests\KernelTestBase;
use Drupal\node\Entity\NodeType;
use Drupal\Tests\node\Traits\ContentTypeCreationTrait;
/**
* @group node
*/
class ConfigActionsTest extends KernelTestBase {
use ContentTypeCreationTrait;
/**
* {@inheritdoc}
*/
protected static $modules = ['field', 'node', 'system', 'text', 'user'];
private readonly ConfigActionManager $configActionManager;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->installConfig('node');
$this->configActionManager = $this->container->get('plugin.manager.config_action');
}
public function testConfigActions(): void {
$node_type = $this->createContentType();
$this->assertTrue($node_type->shouldCreateNewRevision());
$this->assertSame(DRUPAL_OPTIONAL, $node_type->getPreviewMode());
$this->assertTrue($node_type->displaySubmitted());
$this->configActionManager->applyAction(
'entity_method:node.type:setNewRevision',
$node_type->getConfigDependencyName(),
FALSE,
);
$this->configActionManager->applyAction(
'entity_method:node.type:setPreviewMode',
$node_type->getConfigDependencyName(),
DRUPAL_REQUIRED,
);
$this->configActionManager->applyAction(
'entity_method:node.type:setDisplaySubmitted',
$node_type->getConfigDependencyName(),
FALSE,
);
$node_type = NodeType::load($node_type->id());
$this->assertFalse($node_type->shouldCreateNewRevision());
$this->assertSame(DRUPAL_REQUIRED, $node_type->getPreviewMode());
$this->assertFalse($node_type->displaySubmitted());
}
}