Open weierophinney opened 4 years ago
I cannot reproduce.
To attempt to reproduce, I added zend-i18n as a dev dependency (composer require --dev zendframework/zend-i18n
), and then edited test/ContentValidationListenerTest.php
to do the following:
Zend\I18n\Validator\DateTime
public function testUnrequiredDateTimeValidatorShouldNotResultInInvalidationOfSet()
{
$services = new ServiceManager();
$factory = new InputFilterFactory();
$services->setService('FooValidator', $factory->createInputFilter([
'dateField' => [
'name' => 'dateField',
'required' => false,
'validators' => [
[
'name' => DateTime::class,
'options' => [
'pattern' => 'Y-m-d\TH:iP',
'message' => 'Invalid date format',
],
],
],
'allow_empty' => true,
'continue_if_empty' => true,
'description' => 'Date Field',
],
]));
$listener = new ContentValidationListener(
[
'Foo' => [
'GET' => 'FooValidator',
],
],
$services,
['Foo' => 'foo_id']
);
$request = new HttpRequest();
$request->setMethod('POST');
$matches = $this->createRouteMatch(['controller' => 'Foo', 'foo_id' => 3]);
$dataParams = new ParameterDataContainer();
$dataParams->setBodyParams([
'name' => 'Joe Public',
'email' => 'joe@business.com',
]);
$event = new MvcEvent();
$event->setRequest($request);
$event->setRouteMatch($matches);
$event->setParam('ZFContentNegotiationParameterData', $dataParams);
$this->assertNull($listener->onRoute($event));
$this->assertNull($event->getResponse());
}
null
is expected when validation passes; otherwise, it will return an ApiProblem.
The test passed.
Can you update your dependencies and report back if the problem still exists? If it does, we'll need more information.
Originally posted by @weierophinney at https://github.com/zfcampus/zf-content-validation/issues/49#issuecomment-240843104
I am attempting to use the DateTime validator in an Apigility project. The configuration is set to not be required and continue if empty, however the validator always returns a validation error.
Input
Validator configuration
Error message
Originally posted by @alexisbmills at https://github.com/zfcampus/zf-content-validation/issues/49