* * For the full copyright and license information, please view the "LICENSE.md" * file that was distributed with this source code. */ declare(strict_types=1); namespace Respect\Validation\Rules; use Respect\Validation\Test\DataProvider\UndefinedProvider; use Respect\Validation\Test\TestCase; /** * @group core * * @covers \Respect\Validation\Rules\AbstractSearcher * * @author Emmerson Siqueira * @author Gabriel Caruso * @author Henrique Moody */ final class AbstractSearcherTest extends TestCase { use UndefinedProvider; /** * @test */ public function shouldValidateFromDataSource(): void { $input = 'bar'; $rule = $this->getMockForAbstractClass(AbstractSearcher::class); $rule ->expects(self::once()) ->method('getDataSource') ->willReturn(['foo', $input, 'baz']); self::assertTrue($rule->validate($input)); } /** * @test */ public function shouldNotFindWhenNotIdentical(): void { $input = 2.0; $rule = $this->getMockForAbstractClass(AbstractSearcher::class); $rule ->expects(self::once()) ->method('getDataSource') ->willReturn([1, (int) $input, 3]); self::assertFalse($rule->validate($input)); } /** * @test * @dataProvider providerForUndefined * * @param mixed $input */ public function shouldValidateWhenValueIsUndefinedAndDataSourceIsEmpty($input): void { $rule = $this->getMockForAbstractClass(AbstractSearcher::class); $rule ->expects(self::once()) ->method('getDataSource') ->willReturn([]); self::assertTrue($rule->validate($input)); } /** * @test * @dataProvider providerForNotUndefined * * @param mixed $input */ public function shouldNotValidateWhenValueIsNotUndefinedAndDataSourceNotEmpty($input): void { $rule = $this->getMockForAbstractClass(AbstractSearcher::class); $rule ->expects(self::once()) ->method('getDataSource') ->willReturn([]); self::assertFalse($rule->validate($input)); } }