SaveActionTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php
  2. 8.9.x core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php
  3. 10 core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php

Namespace

Drupal\KernelTests\Core\Action

File

core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\Action;

use Drupal\Core\Action\Plugin\Action\Derivative\EntityChangedActionDeriver;
use Drupal\entity_test\Entity\EntityTestMulChanged;
use Drupal\KernelTests\KernelTestBase;
use Drupal\system\Entity\Action;

/**
 * @group Action
 */
class SaveActionTest extends KernelTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'system',
        'entity_test',
        'user',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->installEntitySchema('entity_test_mul_changed');
    }
    
    /**
     * @covers \Drupal\Core\Action\Plugin\Action\Derivative\EntityChangedActionDeriver::getDerivativeDefinitions
     */
    public function testGetDerivativeDefinitions() : void {
        $deriver = new EntityChangedActionDeriver(\Drupal::entityTypeManager(), \Drupal::translation());
        $definitions = $deriver->getDerivativeDefinitions([
            'action_label' => 'Save',
        ]);
        $this->assertEquals([
            'type' => 'entity_test_mul_changed',
            'label' => 'Save test entity - multiple changed and data table',
            'action_label' => 'Save',
        ], $definitions['entity_test_mul_changed']);
    }
    
    /**
     * @covers \Drupal\Core\Action\Plugin\Action\SaveAction::execute
     */
    public function testSaveAction() : void {
        $entity = EntityTestMulChanged::create([
            'name' => 'test',
        ]);
        $entity->save();
        $saved_time = $entity->getChangedTime();
        $action = Action::create([
            'id' => 'entity_save_action',
            'plugin' => 'entity:save_action:entity_test_mul_changed',
        ]);
        $action->save();
        $action->execute([
            $entity,
        ]);
        $this->assertNotSame($saved_time, $entity->getChangedTime());
        $this->assertSame([
            'module' => [
                'entity_test',
            ],
        ], $action->getDependencies());
    }

}

Classes

Title Deprecated Summary
SaveActionTest @group Action

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