2017-06-02 21:58:33 +02:00
|
|
|
<?php
|
|
|
|
namespace DigiComp\SettingValidator\Tests\Functional;
|
|
|
|
|
|
|
|
use DigiComp\SettingValidator\Tests\Functional\Fixtures\TestObject;
|
2017-07-03 10:11:18 +02:00
|
|
|
use DigiComp\SettingValidator\Tests\Functional\Fixtures\TestValidationGroupsCustomObject;
|
|
|
|
use DigiComp\SettingValidator\Tests\Functional\Fixtures\TestValidationGroupsDefaultObject;
|
2017-06-02 21:58:33 +02:00
|
|
|
use DigiComp\SettingValidator\Validation\Validator\SettingsValidator;
|
|
|
|
use Neos\Flow\Tests\FunctionalTestCase;
|
|
|
|
use Neos\Flow\Validation\ValidatorResolver;
|
|
|
|
|
|
|
|
class SettingsValidatorTest extends FunctionalTestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function ifNoNameIsGivenClassNameIsUsed()
|
|
|
|
{
|
|
|
|
$validator = $this->objectManager->get(SettingsValidator::class);
|
|
|
|
$result = $validator->validate(new TestObject());
|
|
|
|
$this->assertTrue($result->hasErrors());
|
|
|
|
$this->assertCount(1, $result->getFlattenedErrors());
|
|
|
|
$this->assertCount(1, $result->forProperty('shouldBeFalse')->getErrors());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function conjunctionValidationWorksAsExpected()
|
|
|
|
{
|
|
|
|
$validatorResolver = $this->objectManager->get(ValidatorResolver::class);
|
|
|
|
$validator = $validatorResolver->getBaseValidatorConjunction(TestObject::class);
|
|
|
|
$result = $validator->validate(new TestObject());
|
|
|
|
$this->assertTrue($result->hasErrors());
|
|
|
|
$this->assertCount(1, $result->getFlattenedErrors());
|
|
|
|
}
|
2017-07-03 10:11:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2017-07-19 12:54:29 +02:00
|
|
|
public function defaultValidationGroupWorks()
|
2017-07-03 10:11:18 +02:00
|
|
|
{
|
2017-07-19 12:54:29 +02:00
|
|
|
$validator = $this->objectManager->get(SettingsValidator::class, ['validationGroups' => ['Default']]);
|
2017-07-03 10:11:18 +02:00
|
|
|
$result = $validator->validate(new TestValidationGroupsDefaultObject());
|
|
|
|
$this->assertTrue($result->hasErrors(), 'No Errors for validation group "Default"');
|
|
|
|
$this->assertCount(1, $result->getFlattenedErrors(), 'Got a non expected number of errors for group "Default"');
|
|
|
|
$this->assertCount(1, $result->forProperty('shouldBeTrue')->getErrors(), 'Got no error for shouldBeTrue property');
|
2017-07-19 12:54:29 +02:00
|
|
|
}
|
2017-07-03 10:11:18 +02:00
|
|
|
|
2017-07-19 12:54:29 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function customValidationGroupWorks()
|
|
|
|
{
|
|
|
|
$validator = $this->objectManager->get(SettingsValidator::class, ['validationGroups' => ['Custom']]);
|
2017-07-03 10:11:18 +02:00
|
|
|
$result = $validator->validate(new TestValidationGroupsCustomObject());
|
|
|
|
$this->assertTrue($result->hasErrors(), 'No Errors for validation group "Custom"');
|
|
|
|
$this->assertCount(1, $result->getFlattenedErrors(), 'Got a non expected number of errors for group "Custom"');
|
|
|
|
$this->assertCount(1, $result->forProperty('shouldBeFalse')->getErrors(), 'Got no error for shouldBeFalse property');
|
|
|
|
}
|
2017-06-02 21:58:33 +02:00
|
|
|
}
|