freeValidate(); $this->validate->addColumn('name')->mbLength(2); $bool = $this->validate->validate(['name' => "仙士"]); $this->assertTrue($bool); /* * 字符串整数 */ $this->freeValidate(); $this->validate->addColumn('name')->mbLength(2); $bool = $this->validate->validate(['name' => '12']); $this->assertTrue($bool); /* * 数组 */ $this->freeValidate(); $this->validate->addColumn('fruit')->mbLength(3); $bool = $this->validate->validate(['fruit' => ['apple', 'grape', 'orange']]); $this->assertTrue($bool); /* * file */ $this->freeValidate(); $this->validate->addColumn('file')->mbLength(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')->mbLength(3); $bool = $this->validate->validate(['name' => "仙士"]); $this->assertFalse($bool); $this->assertEquals('name的长度必须是3', $this->validate->getError()->__toString()); /* * 字符串整数 */ $this->freeValidate(); $this->validate->addColumn('name')->mbLength(3); $bool = $this->validate->validate(['name' => '12']); $this->assertFalse($bool); $this->assertEquals('name的长度必须是3', $this->validate->getError()->__toString()); /* * 数组 */ $this->freeValidate(); $this->validate->addColumn('fruit')->mbLength(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')->mbLength(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')->mbLength(6, '名字长度必须是6位'); $bool = $this->validate->validate(['name' => '仙士可1号']); $this->assertFalse($bool); $this->assertEquals('名字长度必须是6位', $this->validate->getError()->__toString()); } }