NodePromoteTest.php in Rules 8.3
File
tests/src/Unit/Integration/RulesAction/NodePromoteTest.php
View source
<?php
namespace Drupal\Tests\rules\Unit\Integration\RulesAction;
use Drupal\node\NodeInterface;
use Drupal\Tests\rules\Unit\Integration\RulesEntityIntegrationTestBase;
class NodePromoteTest extends RulesEntityIntegrationTestBase {
protected $action;
protected function setUp() : void {
parent::setUp();
$this->action = $this->actionManager
->createInstance('rules_node_promote');
}
public function testSummary() {
$this
->assertEquals('Promote selected content to front page', $this->action
->summary());
}
public function testActionExecution() {
$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.');
}
}