1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace EasySwoole\Validate\tests;
- /**
- * 正则测试用例
- * Class RegexTest
- *
- * @internal
- */
- class RegexTest extends BaseTestCase
- {
- /*
- * 合法
- */
- public function testValidCase()
- {
- $this->freeValidate();
- $this->validate->addColumn('phone')->regex('/^1\d{10}$/');
- $bool = $this->validate->validate(['phone' => '18959261286']);
- $this->assertTrue($bool);
- }
- /*
- * 默认错误信息
- */
- public function testDefaultErrorMsgCase()
- {
- $this->freeValidate();
- $this->validate->addColumn('phone')->regex('/^1\d{10}$/');
- $bool = $this->validate->validate(['phone' => '1895926128s']);
- $this->assertFalse($bool);
- $this->assertEquals('phone不符合指定规则', $this->validate->getError()->__toString());
- }
- /*
- * 自定义错误信息
- */
- public function testCustomErrorMsgCase()
- {
- $this->freeValidate();
- $this->validate->addColumn('phone')->regex('/^1\d{10}$/', '手机号码格式不对');
- $bool = $this->validate->validate(['phone' => '1895926128s']);
- $this->assertFalse($bool);
- $this->assertEquals('手机号码格式不对', $this->validate->getError()->__toString());
- }
- }
|