respect-validation/tests/unit/Validators/NotTest.php
Alexandre Gomes Gaigalas bcc60ec035 Allow empty values in iterables for All, Each, Max, Min
Now empty values are again allowed in FilteredArray-style
validators.

To solve the issue with negation, a Result attribute was
added to signal indeciseveness (when a result cannot be
reliably inverted). On such cases, we consider that result
to be valid.

For example, `v::not(v::min(v::equals(10)))` says "The
lowest value of the iterable input should not be equal 10".

If the input is empty, we cannot decide whether its minimum
is equal to 10 or not, so the validator essentially becomes
a null-op.

Users that want to ensure these validators have a valid
decidable target must use it in combination with `Length`
or other similar validators to achieve the same result.
2026-01-30 21:27:16 +00:00

63 lines
2 KiB
PHP

<?php
/*
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: (c) Respect Project Contributors
* SPDX-FileContributor: Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-FileContributor: Caio César Tavares <caiotava@gmail.com>
* SPDX-FileContributor: Gabriel Caruso <carusogabriel34@gmail.com>
* SPDX-FileContributor: Henrique Moody <henriquemoody@gmail.com>
* SPDX-FileContributor: Nick Lombard <github@jigsoft.co.za>
* SPDX-FileContributor: Vicente Mendoza <vicentemmor@yahoo.com.mx>
*/
declare(strict_types=1);
namespace Respect\Validation\Validators;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\Test;
use Respect\Validation\Id;
use Respect\Validation\Test\RuleTestCase;
use Respect\Validation\Test\Validators\Stub;
#[Group('validator')]
#[CoversClass(Not::class)]
final class NotTest extends RuleTestCase
{
#[Test]
public function shouldInvertTheResultOfWrappedRule(): void
{
$wrapped = Stub::fail(2);
$validator = new Not($wrapped);
self::assertEquals(
$validator->evaluate('input'),
$wrapped->evaluate('input')->withId(new Id('notStub'))->withToggledModeAndValidation(),
);
}
#[Test]
public function shouldPassOnIndeterminateResults(): void
{
$validator = new Not(new All(new IntVal()));
$validator->evaluate([]);
self::assertTrue($validator->evaluate([])->hasPassed);
}
/** @return iterable<string, array{Not, mixed}> */
public static function providerForValidInput(): iterable
{
yield 'invert fail' => [new Not(Stub::fail(1)), []];
yield 'invert success x2' => [new Not(new Not(Stub::pass(1))), []];
}
/** @return iterable<string, array{Not, mixed}> */
public static function providerForInvalidInput(): iterable
{
yield 'invert pass' => [new Not(Stub::pass(1)), []];
yield 'invert fail x2' => [new Not(new Not(Stub::fail(1))), []];
}
}