We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13796ad commit 5af26fdCopy full SHA for 5af26fd
tests/JobFactory/Configuration/ComponentDefinitionTest.php
@@ -442,5 +442,21 @@ public function invalidDataProvider(): Generator
442
'expected' => 'The value "invalid" is not allowed for path ' .
443
'"component.dataTypesConfiguration.dataTypesSupport"',
444
];
445
+ yield 'invalid allowedProcessorPosition' => [
446
+ 'data' => [
447
+ 'id' => 'test',
448
449
+ 'definition' => [
450
+ 'type' => 'aws-ecr',
451
+ 'uri' => 'some-uri',
452
+ ],
453
454
+ 'processorConfiguration' => [
455
+ 'allowedProcessorPosition' => 'invalid',
456
457
458
+ 'expected' => 'The value "invalid" is not allowed for path ' .
459
+ '"component.processorConfiguration.allowedProcessorPosition"',
460
+ ];
461
}
462
0 commit comments