rules-8.x-3.x-dev/tests/src/Unit/Integration/Condition/EntityIsNewTest.php
tests/src/Unit/Integration/Condition/EntityIsNewTest.php
<?php
declare(strict_types=1);
namespace Drupal\Tests\rules\Unit\Integration\Condition;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Tests\rules\Unit\Integration\RulesEntityIntegrationTestBase;
/**
* @coversDefaultClass \Drupal\rules\Plugin\Condition\EntityIsNew
* @group RulesCondition
*/
class EntityIsNewTest extends RulesEntityIntegrationTestBase {
/**
* The condition to be tested.
*
* @var \Drupal\rules\Core\RulesConditionInterface
*/
protected $condition;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->condition = $this->conditionManager->createInstance('rules_entity_is_new');
}
/**
* Tests evaluating the condition.
*
* @covers ::evaluate
*/
public function testConditionEvaluation(): void {
$entity = $this->prophesizeEntity(EntityInterface::class);
$entity->isNew()->willReturn(TRUE)->shouldBeCalledTimes(1);
// Add the test node to our context as the evaluated entity.
$this->condition->setContextValue('entity', $entity->reveal());
$this->assertTrue($this->condition->evaluate());
}
}
