View source
<?php
namespace Symfony\Component\Validator\Tests\Constraints;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Symfony\Component\Validator\Constraints\File;
use Symfony\Component\Validator\Constraints\FileValidator;
use Symfony\Component\Validator\Validation;
abstract class FileValidatorTest extends AbstractConstraintValidatorTest {
protected $path;
protected $file;
protected function getApiVersion() {
return Validation::API_VERSION_2_5;
}
protected function createValidator() {
return new FileValidator();
}
protected function setUp() {
parent::setUp();
$this->path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'FileValidatorTest';
$this->file = fopen($this->path, 'w');
fwrite($this->file, ' ', 1);
}
protected function tearDown() {
parent::tearDown();
if (is_resource($this->file)) {
fclose($this->file);
}
if (file_exists($this->path)) {
unlink($this->path);
}
$this->path = null;
$this->file = null;
}
public function testNullIsValid() {
$this->validator
->validate(null, new File());
$this
->assertNoViolation();
}
public function testEmptyStringIsValid() {
$this->validator
->validate('', new File());
$this
->assertNoViolation();
}
public function testExpectsStringCompatibleTypeOrFile() {
$this->validator
->validate(new \stdClass(), new File());
}
public function testValidFile() {
$this->validator
->validate($this->path, new File());
$this
->assertNoViolation();
}
public function testValidUploadedfile() {
$file = new UploadedFile($this->path, 'originalName', null, null, null, true);
$this->validator
->validate($file, new File());
$this
->assertNoViolation();
}
public function provideMaxSizeExceededTests() {
return array(
array(
1001,
1000,
'1001',
'1000',
'bytes',
),
array(
1004,
1000,
'1004',
'1000',
'bytes',
),
array(
1005,
1000,
'1.01',
'1',
'kB',
),
array(
1000001,
1000000,
'1000001',
'1000000',
'bytes',
),
array(
1004999,
1000000,
'1005',
'1000',
'kB',
),
array(
1005000,
1000000,
'1.01',
'1',
'MB',
),
array(
1001,
'1k',
'1001',
'1000',
'bytes',
),
array(
1004,
'1k',
'1004',
'1000',
'bytes',
),
array(
1005,
'1k',
'1.01',
'1',
'kB',
),
array(
1000001,
'1000k',
'1000001',
'1000000',
'bytes',
),
array(
1004999,
'1000k',
'1005',
'1000',
'kB',
),
array(
1005000,
'1000k',
'1.01',
'1',
'MB',
),
array(
1000001,
'1M',
'1000001',
'1000000',
'bytes',
),
array(
1004999,
'1M',
'1005',
'1000',
'kB',
),
array(
1005000,
'1M',
'1.01',
'1',
'MB',
),
array(
1025,
'1Ki',
'1025',
'1024',
'bytes',
),
array(
1029,
'1Ki',
'1029',
'1024',
'bytes',
),
array(
1030,
'1Ki',
'1.01',
'1',
'KiB',
),
array(
1048577,
'1024Ki',
'1048577',
'1048576',
'bytes',
),
array(
1053818,
'1024Ki',
'1029.12',
'1024',
'KiB',
),
array(
1053819,
'1024Ki',
'1.01',
'1',
'MiB',
),
array(
1048577,
'1Mi',
'1048577',
'1048576',
'bytes',
),
array(
1053818,
'1Mi',
'1029.12',
'1024',
'KiB',
),
array(
1053819,
'1Mi',
'1.01',
'1',
'MiB',
),
);
}
public function testMaxSizeExceeded($bytesWritten, $limit, $sizeAsString, $limitAsString, $suffix) {
fseek($this->file, $bytesWritten - 1, SEEK_SET);
fwrite($this->file, '0');
fclose($this->file);
$constraint = new File(array(
'maxSize' => $limit,
'maxSizeMessage' => 'myMessage',
));
$this->validator
->validate($this
->getFile($this->path), $constraint);
$this
->buildViolation('myMessage')
->setParameter('{{ limit }}', $limitAsString)
->setParameter('{{ size }}', $sizeAsString)
->setParameter('{{ suffix }}', $suffix)
->setParameter('{{ file }}', '"' . $this->path . '"')
->setCode(File::TOO_LARGE_ERROR)
->assertRaised();
}
public function provideMaxSizeNotExceededTests() {
return array(
array(
1000,
1000,
),
array(
1000000,
1000000,
),
array(
1000,
'1k',
),
array(
1000000,
'1000k',
),
array(
1000000,
'1M',
),
array(
1024,
'1Ki',
),
array(
1048576,
'1024Ki',
),
array(
1048576,
'1Mi',
),
);
}
public function testMaxSizeNotExceeded($bytesWritten, $limit) {
fseek($this->file, $bytesWritten - 1, SEEK_SET);
fwrite($this->file, '0');
fclose($this->file);
$constraint = new File(array(
'maxSize' => $limit,
'maxSizeMessage' => 'myMessage',
));
$this->validator
->validate($this
->getFile($this->path), $constraint);
$this
->assertNoViolation();
}
public function testInvalidMaxSize() {
$constraint = new File(array(
'maxSize' => '1abc',
));
$this->validator
->validate($this->path, $constraint);
}
public function provideBinaryFormatTests() {
return array(
array(
11,
10,
null,
'11',
'10',
'bytes',
),
array(
11,
10,
true,
'11',
'10',
'bytes',
),
array(
11,
10,
false,
'11',
'10',
'bytes',
),
array(
ceil(1000 * 1.01),
1000,
null,
'1.01',
'1',
'kB',
),
array(
ceil(1000 * 1.01),
'1k',
null,
'1.01',
'1',
'kB',
),
array(
ceil(1024 * 1.01),
'1Ki',
null,
'1.01',
'1',
'KiB',
),
array(
ceil(1024 * 1.01),
1024,
true,
'1.01',
'1',
'KiB',
),
array(
ceil(1024 * 1.01 * 1000),
'1024k',
true,
'1010',
'1000',
'KiB',
),
array(
ceil(1024 * 1.01),
'1Ki',
true,
'1.01',
'1',
'KiB',
),
array(
ceil(1000 * 1.01),
1000,
false,
'1.01',
'1',
'kB',
),
array(
ceil(1000 * 1.01),
'1k',
false,
'1.01',
'1',
'kB',
),
array(
ceil(1024 * 1.01 * 10),
'10Ki',
false,
'10.34',
'10.24',
'kB',
),
);
}
public function testBinaryFormat($bytesWritten, $limit, $binaryFormat, $sizeAsString, $limitAsString, $suffix) {
fseek($this->file, $bytesWritten - 1, SEEK_SET);
fwrite($this->file, '0');
fclose($this->file);
$constraint = new File(array(
'maxSize' => $limit,
'binaryFormat' => $binaryFormat,
'maxSizeMessage' => 'myMessage',
));
$this->validator
->validate($this
->getFile($this->path), $constraint);
$this
->buildViolation('myMessage')
->setParameter('{{ limit }}', $limitAsString)
->setParameter('{{ size }}', $sizeAsString)
->setParameter('{{ suffix }}', $suffix)
->setParameter('{{ file }}', '"' . $this->path . '"')
->setCode(File::TOO_LARGE_ERROR)
->assertRaised();
}
public function testValidMimeType() {
$file = $this
->getMockBuilder('Symfony\\Component\\HttpFoundation\\File\\File')
->setConstructorArgs(array(
__DIR__ . '/Fixtures/foo',
))
->getMock();
$file
->expects($this
->once())
->method('getPathname')
->will($this
->returnValue($this->path));
$file
->expects($this
->once())
->method('getMimeType')
->will($this
->returnValue('image/jpg'));
$constraint = new File(array(
'mimeTypes' => array(
'image/png',
'image/jpg',
),
));
$this->validator
->validate($file, $constraint);
$this
->assertNoViolation();
}
public function testValidWildcardMimeType() {
$file = $this
->getMockBuilder('Symfony\\Component\\HttpFoundation\\File\\File')
->setConstructorArgs(array(
__DIR__ . '/Fixtures/foo',
))
->getMock();
$file
->expects($this
->once())
->method('getPathname')
->will($this
->returnValue($this->path));
$file
->expects($this
->once())
->method('getMimeType')
->will($this
->returnValue('image/jpg'));
$constraint = new File(array(
'mimeTypes' => array(
'image/*',
),
));
$this->validator
->validate($file, $constraint);
$this
->assertNoViolation();
}
public function testInvalidMimeType() {
$file = $this
->getMockBuilder('Symfony\\Component\\HttpFoundation\\File\\File')
->setConstructorArgs(array(
__DIR__ . '/Fixtures/foo',
))
->getMock();
$file
->expects($this
->once())
->method('getPathname')
->will($this
->returnValue($this->path));
$file
->expects($this
->once())
->method('getMimeType')
->will($this
->returnValue('application/pdf'));
$constraint = new File(array(
'mimeTypes' => array(
'image/png',
'image/jpg',
),
'mimeTypesMessage' => 'myMessage',
));
$this->validator
->validate($file, $constraint);
$this
->buildViolation('myMessage')
->setParameter('{{ type }}', '"application/pdf"')
->setParameter('{{ types }}', '"image/png", "image/jpg"')
->setParameter('{{ file }}', '"' . $this->path . '"')
->setCode(File::INVALID_MIME_TYPE_ERROR)
->assertRaised();
}
public function testInvalidWildcardMimeType() {
$file = $this
->getMockBuilder('Symfony\\Component\\HttpFoundation\\File\\File')
->setConstructorArgs(array(
__DIR__ . '/Fixtures/foo',
))
->getMock();
$file
->expects($this
->once())
->method('getPathname')
->will($this
->returnValue($this->path));
$file
->expects($this
->once())
->method('getMimeType')
->will($this
->returnValue('application/pdf'));
$constraint = new File(array(
'mimeTypes' => array(
'image/*',
'image/jpg',
),
'mimeTypesMessage' => 'myMessage',
));
$this->validator
->validate($file, $constraint);
$this
->buildViolation('myMessage')
->setParameter('{{ type }}', '"application/pdf"')
->setParameter('{{ types }}', '"image/*", "image/jpg"')
->setParameter('{{ file }}', '"' . $this->path . '"')
->setCode(File::INVALID_MIME_TYPE_ERROR)
->assertRaised();
}
public function testDisallowEmpty() {
ftruncate($this->file, 0);
$constraint = new File(array(
'disallowEmptyMessage' => 'myMessage',
));
$this->validator
->validate($this
->getFile($this->path), $constraint);
$this
->buildViolation('myMessage')
->setParameter('{{ file }}', '"' . $this->path . '"')
->setCode(File::EMPTY_ERROR)
->assertRaised();
}
public function testUploadedFileError($error, $message, array $params = array(), $maxSize = null) {
$file = new UploadedFile('/path/to/file', 'originalName', 'mime', 0, $error);
$constraint = new File(array(
$message => 'myMessage',
'maxSize' => $maxSize,
));
$this->validator
->validate($file, $constraint);
$this
->buildViolation('myMessage')
->setParameters($params)
->setCode($error)
->assertRaised();
}
public function uploadedFileErrorProvider() {
$tests = array(
array(
UPLOAD_ERR_FORM_SIZE,
'uploadFormSizeErrorMessage',
),
array(
UPLOAD_ERR_PARTIAL,
'uploadPartialErrorMessage',
),
array(
UPLOAD_ERR_NO_FILE,
'uploadNoFileErrorMessage',
),
array(
UPLOAD_ERR_NO_TMP_DIR,
'uploadNoTmpDirErrorMessage',
),
array(
UPLOAD_ERR_CANT_WRITE,
'uploadCantWriteErrorMessage',
),
array(
UPLOAD_ERR_EXTENSION,
'uploadExtensionErrorMessage',
),
);
if (class_exists('Symfony\\Component\\HttpFoundation\\File\\UploadedFile')) {
$tests[] = array(
UPLOAD_ERR_INI_SIZE,
'uploadIniSizeErrorMessage',
array(
'{{ limit }}' => UploadedFile::getMaxFilesize() / 1048576,
'{{ suffix }}' => 'MiB',
),
);
$tests[] = array(
UPLOAD_ERR_INI_SIZE,
'uploadIniSizeErrorMessage',
array(
'{{ limit }}' => 1,
'{{ suffix }}' => 'bytes',
),
'1',
);
$tests[] = array(
UPLOAD_ERR_INI_SIZE,
'uploadIniSizeErrorMessage',
array(
'{{ limit }}' => UploadedFile::getMaxFilesize() / 1048576,
'{{ suffix }}' => 'MiB',
),
'1000M',
);
$tests[] = array(
UPLOAD_ERR_INI_SIZE,
'uploadIniSizeErrorMessage',
array(
'{{ limit }}' => '0.1',
'{{ suffix }}' => 'MB',
),
'100K',
);
}
return $tests;
}
protected abstract function getFile($filename);
}