rules-8.x-3.x-dev/tests/src/Unit/Integration/RulesAction/NodePromoteTest.php
tests/src/Unit/Integration/RulesAction/NodePromoteTest.php
<?php
declare(strict_types=1);
namespace Drupal\Tests\rules\Unit\Integration\RulesAction;
use Drupal\Tests\rules\Unit\Integration\RulesEntityIntegrationTestBase;
use Drupal\node\NodeInterface;
/**
* @coversDefaultClass \Drupal\rules\Plugin\RulesAction\NodePromote
* @group RulesAction
*/
class NodePromoteTest extends RulesEntityIntegrationTestBase {
/**
* The action to be tested.
*
* @var \Drupal\rules\Core\RulesActionInterface
*/
protected $action;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->action = $this->actionManager->createInstance('rules_node_promote');
}
/**
* Tests the summary.
*
* @covers ::summary
*/
public function testSummary(): void {
$this->assertEquals('Promote selected content to front page', $this->action->summary());
}
/**
* Tests the action execution.
*
* @covers ::execute
*/
public function testActionExecution(): void {
$node = $this->prophesizeEntity(NodeInterface::class);
$node->setPromoted(NodeInterface::PROMOTED)->shouldBeCalledTimes(1);
$this->action->setContextValue('node', $node->reveal());
$this->action->execute();
$this->assertEquals(
['node'],
$this->action->autoSaveContext(),
'Action returns the user context name for auto saving.'
);
}
}
