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

59 lines
1.5 KiB
PHP
Raw Normal View History

2011-02-20 19:54:11 +01:00
<?php
2015-06-08 16:47:14 +02:00
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
2011-02-20 19:54:11 +01:00
namespace Respect\Validation\Rules;
use Respect\Validation\Test\RuleTestCase;
2017-11-04 11:21:40 +01:00
/**
* @group rule
*
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\EndsWith
*
* @author Alexandre Gomes Gaigalas <alganet@gmail.com>
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author William Espindola <oi@williamespindola.com.br>
*/
final class EndsWithTest extends RuleTestCase
2011-02-20 19:54:11 +01:00
{
/**
* {@inheritDoc}
2011-02-20 19:54:11 +01:00
*/
public static function providerForValidInput(): array
2011-02-20 19:54:11 +01:00
{
2015-10-18 03:44:47 +02:00
return [
[new EndsWith('foo'), ['bar', 'foo']],
[new EndsWith('foo'), 'barbazFOO'],
[new EndsWith('foo'), 'barbazfoo'],
[new EndsWith('foo'), 'foobazfoo'],
[new EndsWith('1'), [2, 3, 1]],
[new EndsWith(1), [2, 3, 1]],
[new EndsWith('1', true), [2, 3, '1']],
2015-10-18 03:44:47 +02:00
];
2011-02-20 19:54:11 +01:00
}
/**
* {@inheritDoc}
*/
public static function providerForInvalidInput(): array
2011-02-20 19:54:11 +01:00
{
2015-10-18 03:44:47 +02:00
return [
[new EndsWith('foo'), ''],
[new EndsWith('bat'), ['bar', 'foo']],
[new EndsWith('foo'), 'barfaabaz'],
[new EndsWith('foo', true), 'barbazFOO'],
[new EndsWith('foo'), 'faabarbaz'],
[new EndsWith('foo'), 'baabazfaa'],
[new EndsWith('foo'), 'baafoofaa'],
[new EndsWith('1', true), [1, '1', 3]],
2015-10-18 03:44:47 +02:00
];
2011-02-20 19:54:11 +01:00
}
}