NodePublishTest.php
Namespace
Drupal\Tests\rules\Unit\Integration\RulesActionFile
-
tests/
src/ Unit/ Integration/ RulesAction/ NodePublishTest.php
View source
<?php
namespace Drupal\Tests\rules\Unit\Integration\RulesAction;
use Drupal\node\NodeInterface;
use Drupal\Tests\rules\Unit\Integration\RulesEntityIntegrationTestBase;
/**
* @coversDefaultClass \Drupal\rules\Plugin\RulesAction\NodePublish
* @group RulesAction
*/
class NodePublishTest 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_publish');
}
/**
* Tests the summary.
*
* @covers ::summary
*/
public function testSummary() {
$this->assertEquals('Publish a content item', $this->action
->summary());
}
/**
* Tests the action execution.
*
* @covers ::execute
*/
public function testActionExecution() {
$node = $this->prophesizeEntity(NodeInterface::class);
$node->setPublished()
->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.');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
NodePublishTest | @coversDefaultClass \Drupal\rules\Plugin\RulesAction\NodePublish @group RulesAction |