/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/Validation/ValidationInRuleTest.php
92 строки
3 KB
Tran Trong Cuong
update testcase rule is a part of the list (#54387)
28 янв 2025, 18:15
Не верифицирован
28 янв 2025, 18:15
d141865
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\Validation; use Illuminate\Tests\Validation\fixtures\Values; use Illuminate\Translation\ArrayLoader; use Illuminate\Translation\Translator; use Illuminate\Validation\Rule; use Illuminate\Validation\Rules\In; use Illuminate\Validation\Validator; use PHPUnit\Framework\TestCase; include_once 'Enums.php'; class ValidationInRuleTest extends TestCase { public function testItCorrectlyFormatsAStringVersionOfTheRule() { $rule = new In(['Laravel', 'Framework', 'PHP']); $this->assertSame('in:"Laravel","Framework","PHP"', (string) $rule); $rule = new In(collect(['Taylor', 'Michael', 'Tim'])); $this->assertSame('in:"Taylor","Michael","Tim"', (string) $rule); $rule = new In(['Life, the Universe and Everything', 'this is a "quote"']); $this->assertSame('in:"Life, the Universe and Everything","this is a ""quote"""', (string) $rule); $rule = Rule::in(collect([1, 2, 3, 4])); $this->assertSame('in:"1","2","3","4"', (string) $rule); $rule = Rule::in(collect([1, 2, 3, 4])); $this->assertSame('in:"1","2","3","4"', (string) $rule); $rule = new In(["a,b\nc,d"]); $this->assertSame("in:\"a,b\nc,d\"", (string) $rule); $rule = Rule::in([1, 2, 3, 4]); $this->assertSame('in:"1","2","3","4"', (string) $rule); $rule = Rule::in(collect([1, 2, 3, 4])); $this->assertSame('in:"1","2","3","4"', (string) $rule); $rule = Rule::in(new Values); $this->assertSame('in:"1","2","3","4"', (string) $rule); $rule = Rule::in('1', '2', '3', '4'); $this->assertSame('in:"1","2","3","4"', (string) $rule); $rule = new In('1', '2', '3', '4'); $this->assertSame('in:"1","2","3","4"', (string) $rule); $rule = Rule::in([StringStatus::done]); $this->assertSame('in:"done"', (string) $rule); $rule = Rule::in([IntegerStatus::done]); $this->assertSame('in:"2"', (string) $rule); $rule = Rule::in([PureEnum::one]); $this->assertSame('in:"one"', (string) $rule); } public function testInRuleValidation() { $trans = new Translator(new ArrayLoader, 'en'); $v = new Validator($trans, ['x' => 'foo'], ['x' => Rule::in('foo', 'bar')]); $this->assertTrue($v->passes()); $v = new Validator($trans, ['x' => 'foo'], ['x' => (string) Rule::in('foo', 'bar')]); $this->assertTrue($v->passes()); $v = new Validator($trans, ['x' => 'foo'], ['x' => [Rule::in('bar', 'baz')]]); $this->assertFalse($v->passes()); $v = new Validator($trans, ['x' => 'foo'], ['x' => ['required', Rule::in('foo', 'bar')]]); $this->assertTrue($v->passes()); } }