123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- namespace EasySwoole\Validate\tests;
- /**
- * 长度测试用例
- * Class LengthTest
- *
- * @internal
- */
- class LengthTest extends BaseTestCase
- {
- /*
- * 合法
- */
- public function testValidCase()
- {
- /*
- * int
- */
- $this->freeValidate();
- $this->validate->addColumn('name')->length(2);
- $bool = $this->validate->validate(['name' => 12]);
- $this->assertTrue($bool);
- /*
- * 字符串整数
- */
- $this->freeValidate();
- $this->validate->addColumn('name')->length(2);
- $bool = $this->validate->validate(['name' => '12']);
- $this->assertTrue($bool);
- /*
- * 数组
- */
- $this->freeValidate();
- $this->validate->addColumn('fruit')->length(3);
- $bool = $this->validate->validate(['fruit' => ['apple', 'grape', 'orange']]);
- $this->assertTrue($bool);
- /*
- * file
- */
- $this->freeValidate();
- $this->validate->addColumn('file')->length(1);
- $bool = $this->validate->validate(['file' => (new UploadFile(__DIR__ . '/../res/easyswoole.png', 1, 200))]);
- $this->assertTrue($bool);
- }
- /*
- * 默认错误信息
- */
- public function testDefaultErrorMsgCase()
- {
- /*
- * int
- */
- $this->freeValidate();
- $this->validate->addColumn('name')->length(3);
- $bool = $this->validate->validate(['name' => 12]);
- $this->assertFalse($bool);
- $this->assertEquals('name的长度必须是3', $this->validate->getError()->__toString());
- /*
- * 字符串整数
- */
- $this->freeValidate();
- $this->validate->addColumn('name')->length(3);
- $bool = $this->validate->validate(['name' => '12']);
- $this->assertFalse($bool);
- $this->assertEquals('name的长度必须是3', $this->validate->getError()->__toString());
- /*
- * 数组
- */
- $this->freeValidate();
- $this->validate->addColumn('fruit')->length(4);
- $bool = $this->validate->validate(['fruit' => ['apple', 'grape', 'orange']]);
- $this->assertFalse($bool);
- $this->assertEquals('fruit的长度必须是4', $this->validate->getError()->__toString());
- /*
- * 对象
- */
- $this->freeValidate();
- $this->validate->addColumn('fruit')->length(3);
- $bool = $this->validate->validate(['fruit' => (object)['apple', 'grape', 'orange']]);
- $this->assertFalse($bool);
- $this->assertEquals('fruit的长度必须是3', $this->validate->getError()->__toString());
- }
- /*
- * 自定义错误信息
- */
- public function testCustomErrorMsgCase()
- {
- $this->freeValidate();
- $this->validate->addColumn('name')->length(6, '名字长度必须是6位');
- $bool = $this->validate->validate(['name' => 'blank']);
- $this->assertFalse($bool);
- $this->assertEquals('名字长度必须是6位', $this->validate->getError()->__toString());
- }
- }
|