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

68 lines
2 KiB
PHP
Raw Normal View History

2011-11-29 22:20:07 +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-11-29 22:20:07 +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\Contains
*
* @author Alexandre Gomes Gaigalas <alganet@gmail.com>
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author Nawarian <nickolas@phpsp.org.br>
* @author William Espindola <oi@williamespindola.com.br>
*/
final class ContainsTest extends RuleTestCase
2011-11-29 22:20:07 +01:00
{
/**
* {@inheritDoc}
2011-11-29 22:20:07 +01:00
*/
public static function providerForValidInput(): array
2011-11-29 22:20:07 +01:00
{
2015-10-18 03:44:47 +02:00
return [
[new Contains('foo', false), ['bar', 'foo']],
[new Contains('foo', false), 'barbazFOO'],
[new Contains('foo', false), 'barbazfoo'],
[new Contains('foo', false), 'foobazfoO'],
[new Contains('1', false), [2, 3, 1]],
[new Contains('1', false), [2, 3, '1']],
[new Contains('foo'), ['fool', 'foo']],
[new Contains('foo'), 'barbazfoo'],
[new Contains('foo'), 'foobazfoo'],
[new Contains('1'), [2, 3, (string) 1]],
[new Contains('1'), [2, 3, '1']],
[new Contains(1), [2, 3, 1]],
2015-10-18 03:44:47 +02:00
];
}
/**
* {@inheritDoc}
*/
public static function providerForInvalidInput(): array
{
2015-10-18 03:44:47 +02:00
return [
[new Contains('foo', false), ''],
[new Contains('bat', false), ['bar', 'foo']],
[new Contains('foo', false), 'barfaabaz'],
[new Contains('foo', false), 'faabarbaz'],
[new Contains('foo', true), ''],
[new Contains('bat', true), ['BAT', 'foo']],
[new Contains('bat', true), ['BaT', 'Batata']],
[new Contains('foo', true), 'barfaabaz'],
[new Contains('foo', true), 'barbazFOO'],
[new Contains('foo', true), 'faabarbaz'],
[new Contains(1, true), ['1', 2, 3]],
2015-10-18 03:44:47 +02:00
];
2011-11-29 22:20:07 +01:00
}
}