12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace EasySwoole\Validate\tests;
- /**
- * @internal
- */
- class GreaterThanWithColumnTest extends BaseTestCase
- {
- public function testValidCase()
- {
- $this->freeValidate();
- $this->validate->addColumn('bar')->greaterThanWithColumn('foo');
- $validateResult = $this->validate->validate(['bar' => 11, 'foo' => 10]);
- $this->assertTrue($validateResult);
- }
- public function testDefaultErrorMsgCase()
- {
- $this->freeValidate();
- $this->validate->addColumn('bar')->greaterThanWithColumn('foo');
- $validateResult = $this->validate->validate(['bar' => 10, 'foo' => 11]);
- $this->assertFalse($validateResult);
- $this->assertEquals('bar必须大于foo的值', $this->validate->getError()->__toString());
- $this->freeValidate();
- $this->validate->addColumn('bar', 'Bar')->greaterThanWithColumn('foo');
- $this->validate->addColumn('foo', 'Foo');
- $validateResult = $this->validate->validate(['bar' => 10, 'foo' => 11]);
- $this->assertFalse($validateResult);
- $this->assertEquals('Bar必须大于Foo的值', $this->validate->getError()->__toString());
- }
- // 自定义错误信息断言
- public function testCustomErrorMsgCase()
- {
- $this->freeValidate();
- $this->validate->addColumn('bar')->greaterThanWithColumn('foo', 'foo不能大于bar');
- $validateResult = $this->validate->validate(['bar' => 10, 'foo' => 11]);
- $this->assertFalse($validateResult);
- $this->assertEquals('foo不能大于bar', $this->validate->getError()->__toString());
- }
- }
|