Commit 385ee555 by Zhandos

Update FileValidatorTest.php

fix tabs
parent 780c5aa3
...@@ -108,67 +108,67 @@ class FileValidatorTest extends TestCase ...@@ -108,67 +108,67 @@ class FileValidatorTest extends TestCase
$this->assertTrue($m->hasErrors()); $this->assertTrue($m->hasErrors());
$this->assertTrue(stripos(current($m->getErrors('attr_files')), 'you can upload at most') !== false); $this->assertTrue(stripos(current($m->getErrors('attr_files')), 'you can upload at most') !== false);
$m = FakedValidationModel::createWithAttributes( $m = FakedValidationModel::createWithAttributes(
[ [
'attr_images' => $this->createTestFiles( 'attr_images' => $this->createTestFiles(
[ [
[ [
'name' => 'image.png', 'name' => 'image.png',
'size' => 1024, 'size' => 1024,
'type' => 'image/png' 'type' => 'image/png'
], ],
[ [
'name' => 'image.png', 'name' => 'image.png',
'size' => 1024, 'size' => 1024,
'type' => 'image/png' 'type' => 'image/png'
], ],
[ [
'name' => 'text.txt', 'name' => 'text.txt',
'size' => 1024 'size' => 1024
], ],
] ]
) )
] ]
); );
$m->setScenario('validateMultipleFiles'); $m->setScenario('validateMultipleFiles');
$this->assertFalse($m->validate()); $this->assertFalse($m->validate());
$this->assertTrue(stripos(current($m->getErrors('attr_images')), 'Only files with these extensions are allowed') !== false); $this->assertTrue(stripos(current($m->getErrors('attr_images')), 'Only files with these extensions are allowed') !== false);
$m = FakedValidationModel::createWithAttributes( $m = FakedValidationModel::createWithAttributes(
[ [
'attr_images' => $this->createTestFiles( 'attr_images' => $this->createTestFiles(
[ [
[ [
'name' => 'image.png', 'name' => 'image.png',
'size' => 1024, 'size' => 1024,
'type' => 'image/png' 'type' => 'image/png'
], ],
[ [
'name' => 'image.png', 'name' => 'image.png',
'size' => 1024, 'size' => 1024,
'type' => 'image/png' 'type' => 'image/png'
], ],
] ]
) )
] ]
); );
$m->setScenario('validateMultipleFiles'); $m->setScenario('validateMultipleFiles');
$this->assertTrue($m->validate()); $this->assertTrue($m->validate());
$m = FakedValidationModel::createWithAttributes( $m = FakedValidationModel::createWithAttributes(
[ [
'attr_image' => $this->createTestFiles( 'attr_image' => $this->createTestFiles(
[ [
[ [
'name' => 'text.txt', 'name' => 'text.txt',
'size' => 1024, 'size' => 1024,
], ],
] ]
) )
] ]
); );
$m->setScenario('validateFile'); $m->setScenario('validateFile');
$this->assertFalse($m->validate()); $this->assertFalse($m->validate());
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment