Files
piratepoet/mailpoet/tests/unit/Automation/Engine/Validation/AutomationRules/AtLeastOneTriggerTest.php
Jan Jakes 82aeb89854 Use strict types in tests
[MAILPOET-2688]
2022-11-29 15:04:09 +01:00

41 lines
1.5 KiB
PHP

<?php declare(strict_types = 1);
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()]);
}
}