123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Symfony\Tests\Components\File;
- require_once __DIR__ . '/../../../../bootstrap.php';
- use Symfony\Components\File\UploadedFile;
- class UploadedFileTest extends \PHPUnit_Framework_TestCase
- {
- public function testFileUploadsMustBeEnabled()
- {
- // we can't change this setting without modifying php.ini :(
- if (!ini_get('file_uploads'))
- {
- $this->setExpectedException('Symfony\Components\File\Exception\FileException');
- new UploadedFile(
- __DIR__.'/Fixtures/test.gif',
- 'original.gif',
- 'image/gif',
- filesize(__DIR__.'/Fixtures/test.gif'),
- UPLOAD_ERR_OK
- );
- }
- }
- public function testErrorIsOkByDefault()
- {
- // we can't change this setting without modifying php.ini :(
- if (ini_get('file_uploads'))
- {
- $file = new UploadedFile(
- __DIR__.'/Fixtures/test.gif',
- 'original.gif',
- 'image/gif',
- filesize(__DIR__.'/Fixtures/test.gif'),
- null
- );
- $this->assertEquals(UPLOAD_ERR_OK, $file->getError());
- }
- }
- }
|