Пример #1
0
 /**
  * Test that file() returns true if for valid file uploads.
  */
 public function testFile()
 {
     $this->assertTrue(Validate::file(array('name' => 'file1.jpg', 'type' => 'image/jpeg', 'tmp_name' => '/tmp/phpUkYTB5', 'error' => 0, 'size' => 307808)));
     $this->assertFalse(Validate::file('file1.jpg'));
     $this->assertFalse(Validate::file(array('name' => 'file1.jpg', 'type' => 'image/jpeg', 'tmp_name' => '/tmp/phpUkYTB5', 'error' => UPLOAD_ERR_CANT_WRITE, 'size' => 307808)));
 }