function IntegrityCheckTest::testNestedExpressionUuids
Make sure that nested expression violations have the correct UUID.
File
-
tests/
src/ Unit/ Integration/ Engine/ IntegrityCheckTest.php, line 316
Class
- IntegrityCheckTest
- Test the integrity check functionality during configuration time.
Namespace
Drupal\Tests\rules\Unit\Integration\EngineCode
public function testNestedExpressionUuids() {
$rule = $this->rulesExpressionManager
->createRule();
$action_set = $this->rulesExpressionManager
->createInstance('rules_action_set');
// The most inner action will trigger a violation for an unknown variable.
$action = $this->rulesExpressionManager
->createAction('rules_entity_save', ContextConfig::create()->map('entity', 'unknown_variable'));
$action_set->addExpressionObject($action);
$rule->addExpressionObject($action_set);
$violation_list = RulesComponent::create($rule)->checkIntegrity();
$this->assertCount(1, $violation_list);
// UUID must be that of the most inner action.
$this->assertEquals($action->getUuid(), $violation_list[0]->getUuid());
}