Namespace
Drupal\Tests\rules\Unit\Integration\RulesAction
File
-
tests/src/Unit/Integration/RulesAction/NodeMakeStickyTest.php
View source
<?php
namespace Drupal\Tests\rules\Unit\Integration\RulesAction;
use Drupal\node\NodeInterface;
use Drupal\Tests\rules\Unit\Integration\RulesEntityIntegrationTestBase;
class NodeMakeStickyTest extends RulesEntityIntegrationTestBase {
protected $action;
protected function setUp() : void {
parent::setUp();
$this->action = $this->actionManager
->createInstance('rules_node_make_sticky');
}
public function testSummary() {
$this->assertEquals('Make selected content sticky', $this->action
->summary());
}
public function testActionExecution() {
$node = $this->prophesizeEntity(NodeInterface::class);
$node->setSticky(NodeInterface::STICKY)
->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 |
| NodeMakeStickyTest |
|
@coversDefaultClass \Drupal\rules\Plugin\RulesAction\NodeMakeSticky[[api-linebreak]]
@group RulesAction |