1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace EasySwoole\Validate\tests;
- /**
- * 在给定的数组中
- * Class ActiveUrlTest
- *
- * @internal
- */
- class InArrayTest extends BaseTestCase
- {
- // 合法断言
- public function testValidCase()
- {
- // 符合条件
- $this->freeValidate();
- $this->validate->addColumn('number')->inArray([1, 2, 3, 4, 5]);
- $validateResult = $this->validate->validate(['number' => 5]);
- $this->assertTrue($validateResult);
- }
- // 默认错误信息断言
- public function testDefaultErrorMsgCase()
- {
- // 条件不符
- $this->freeValidate();
- $this->validate->addColumn('number')->inArray([1, 2, 3, 4, 5]);
- $validateResult = $this->validate->validate(['number' => 6]);
- $this->assertFalse($validateResult);
- $this->assertEquals('number必须在 [1,2,3,4,5] 范围内', $this->validate->getError()->__toString());
- }
- // 自定义错误信息断言
- public function testCustomErrorMsgCase()
- {
- // 严格模式下类型不等也不通过
- $this->freeValidate();
- $this->validate->addColumn('number')->inArray([1, 2, 3, 4, 5], true, '您选择的选项不合法');
- $validateResult = $this->validate->validate(['number' => '1']);
- $this->assertFalse($validateResult);
- $this->assertEquals('您选择的选项不合法', $this->validate->getError()->__toString());
- }
- }
|