Files
piratepoet/mailpoet/tests/unit/Automation/Engine/Validation/AutomationRules/AtLeastOneTriggerTest.php
David Remer 7db40b27b5 Fix errors automatically with phpcbf
[MAILPOET-4850]
2022-11-28 22:54:13 +03:00

41 lines
1.5 KiB
PHP

<?php
namespace MailPoet\Automation\Engine\Validation\AutomationRules;
use MailPoet\Automation\Engine\Data\Automation;
use MailPoet\Automation\Engine\Data\Step;
use MailPoet\Automation\Engine\Exceptions\UnexpectedValueException;
use MailPoet\Automation\Engine\Validation\AutomationGraph\AutomationWalker;
require_once __DIR__ . '/AutomationRuleTest.php';
class AtLeastOneTriggerTest extends AutomationRuleTest {
public function testItPassesWhenTriggerExists(): void {
$steps = [
'root' => $this->createStep('root', Step::TYPE_ROOT, ['t']),
't' => $this->createStep('t', Step::TYPE_TRIGGER),
];
$automation = $this->make(Automation::class, ['getSteps' => $steps, 'getStep' => function($id) use ($steps) { return $steps[$id] ?? null;
}]);
$automation->setStatus(Automation::STATUS_ACTIVE);
(new AutomationWalker())->walk($automation, [new AtLeastOneTriggerRule()]);
//no exception thrown.
}
public function testItFailsWhenNoTriggerExists(): void {
$steps = [
'root' => $this->createStep('root', Step::TYPE_ROOT),
];
$automation = $this->make(Automation::class, ['getSteps' => $steps, 'getStep' => function($id) use ($steps) { return $steps[$id] ?? null;
}]);
$automation->setStatus(Automation::STATUS_ACTIVE);
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('Invalid automation structure: There must be at least one trigger in the automation.');
(new AutomationWalker())->walk($automation, [new AtLeastOneTriggerRule()]);
}
}