respect-validation/tests/unit/Rules/IdenticalTest.php

66 lines
1.4 KiB
PHP
Raw Normal View History

2015-10-13 18:27:49 +02:00
<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
2015-10-13 18:27:49 +02:00
*/
declare(strict_types=1);
2015-10-13 18:27:49 +02:00
namespace Respect\Validation\Rules;
use Respect\Validation\Test\RuleTestCase;
2015-10-13 18:27:49 +02:00
use stdClass;
/**
* @group rule
*
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\Identical
*
* @author Henrique Moody <henriquemoody@gmail.com>
2015-10-13 18:27:49 +02:00
*/
final class IdenticalTest extends RuleTestCase
2015-10-13 18:27:49 +02:00
{
/**
* @test
*/
public function shouldPassCompareToParameterToException(): void
{
$compareTo = new stdClass();
$rule = new Identical($compareTo);
$exception = $rule->reportError('input');
self::assertSame($compareTo, $exception->getParam('compareTo'));
}
2015-10-13 18:27:49 +02:00
/**
* {@inheritDoc}
2015-10-13 18:27:49 +02:00
*/
public static function providerForValidInput(): array
2015-10-13 18:27:49 +02:00
{
$object = new stdClass();
2015-10-13 18:27:49 +02:00
return [
[new Identical('foo'), 'foo'],
[new Identical([]), []],
[new Identical($object), $object],
[new Identical(10), 10],
[new Identical(10.0), 10.0],
];
2015-10-13 18:27:49 +02:00
}
/**
* {@inheritDoc}
2015-10-13 18:27:49 +02:00
*/
public static function providerForInvalidInput(): array
2015-10-13 18:27:49 +02:00
{
return [
[new Identical(42), '42'],
[new Identical('foo'), 'bar'],
[new Identical([1]), []],
[new Identical(new stdClass()), new stdClass()],
[new Identical(10), 10.0],
];
2015-10-13 18:27:49 +02:00
}
}