File
2 years ago
Fixtures
2 years ago
Session
2 years ago
schema
2 years ago
AcceptHeaderItemTest.php
2 years ago
AcceptHeaderTest.php
2 years ago
ApacheRequestTest.php
2 years ago
BinaryFileResponseTest.php
2 years ago
CookieTest.php
2 years ago
ExpressionRequestMatcherTest.php
2 years ago
FileBagTest.php
2 years ago
HeaderBagTest.php
2 years ago
IpUtilsTest.php
2 years ago
JsonResponseTest.php
2 years ago
ParameterBagTest.php
2 years ago
RedirectResponseTest.php
2 years ago
RequestMatcherTest.php
2 years ago
RequestStackTest.php
2 years ago
RequestTest.php
2 years ago
ResponseFunctionalTest.php
2 years ago
ResponseHeaderBagTest.php
2 years ago
ResponseTest.php
2 years ago
ResponseTestCase.php
2 years ago
ServerBagTest.php
2 years ago
StreamedResponseTest.php
2 years ago
FileBagTest.php
177 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | * |
| 11 | * Modified by impress-org on 23-January-2024 using Strauss. |
| 12 | * @see https://github.com/BrianHenryIE/strauss |
| 13 | */ |
| 14 | |
| 15 | namespace Give\Vendors\Symfony\Component\HttpFoundation\Tests; |
| 16 | |
| 17 | use PHPUnit\Framework\TestCase; |
| 18 | use Give\Vendors\Symfony\Component\HttpFoundation\File\UploadedFile; |
| 19 | use Give\Vendors\Symfony\Component\HttpFoundation\FileBag; |
| 20 | |
| 21 | /** |
| 22 | * FileBagTest. |
| 23 | * |
| 24 | * @author Fabien Potencier <fabien@symfony.com> |
| 25 | * @author Bulat Shakirzyanov <mallluhuct@gmail.com> |
| 26 | */ |
| 27 | class FileBagTest extends TestCase |
| 28 | { |
| 29 | public function testFileMustBeAnArrayOrUploadedFile() |
| 30 | { |
| 31 | $this->expectException('InvalidArgumentException'); |
| 32 | new FileBag(['file' => 'foo']); |
| 33 | } |
| 34 | |
| 35 | public function testShouldConvertsUploadedFiles() |
| 36 | { |
| 37 | $tmpFile = $this->createTempFile(); |
| 38 | $file = new UploadedFile($tmpFile, basename($tmpFile), 'text/plain', 100, 0); |
| 39 | |
| 40 | $bag = new FileBag(['file' => [ |
| 41 | 'name' => basename($tmpFile), |
| 42 | 'type' => 'text/plain', |
| 43 | 'tmp_name' => $tmpFile, |
| 44 | 'error' => 0, |
| 45 | 'size' => 100, |
| 46 | ]]); |
| 47 | |
| 48 | $this->assertEquals($file, $bag->get('file')); |
| 49 | } |
| 50 | |
| 51 | public function testShouldSetEmptyUploadedFilesToNull() |
| 52 | { |
| 53 | $bag = new FileBag(['file' => [ |
| 54 | 'name' => '', |
| 55 | 'type' => '', |
| 56 | 'tmp_name' => '', |
| 57 | 'error' => \UPLOAD_ERR_NO_FILE, |
| 58 | 'size' => 0, |
| 59 | ]]); |
| 60 | |
| 61 | $this->assertNull($bag->get('file')); |
| 62 | } |
| 63 | |
| 64 | public function testShouldRemoveEmptyUploadedFilesForMultiUpload() |
| 65 | { |
| 66 | $bag = new FileBag(['files' => [ |
| 67 | 'name' => [''], |
| 68 | 'type' => [''], |
| 69 | 'tmp_name' => [''], |
| 70 | 'error' => [\UPLOAD_ERR_NO_FILE], |
| 71 | 'size' => [0], |
| 72 | ]]); |
| 73 | |
| 74 | $this->assertSame([], $bag->get('files')); |
| 75 | } |
| 76 | |
| 77 | public function testShouldNotRemoveEmptyUploadedFilesForAssociativeArray() |
| 78 | { |
| 79 | $bag = new FileBag(['files' => [ |
| 80 | 'name' => ['file1' => ''], |
| 81 | 'type' => ['file1' => ''], |
| 82 | 'tmp_name' => ['file1' => ''], |
| 83 | 'error' => ['file1' => \UPLOAD_ERR_NO_FILE], |
| 84 | 'size' => ['file1' => 0], |
| 85 | ]]); |
| 86 | |
| 87 | $this->assertSame(['file1' => null], $bag->get('files')); |
| 88 | } |
| 89 | |
| 90 | public function testShouldConvertUploadedFilesWithPhpBug() |
| 91 | { |
| 92 | $tmpFile = $this->createTempFile(); |
| 93 | $file = new UploadedFile($tmpFile, basename($tmpFile), 'text/plain', 100, 0); |
| 94 | |
| 95 | $bag = new FileBag([ |
| 96 | 'child' => [ |
| 97 | 'name' => [ |
| 98 | 'file' => basename($tmpFile), |
| 99 | ], |
| 100 | 'type' => [ |
| 101 | 'file' => 'text/plain', |
| 102 | ], |
| 103 | 'tmp_name' => [ |
| 104 | 'file' => $tmpFile, |
| 105 | ], |
| 106 | 'error' => [ |
| 107 | 'file' => 0, |
| 108 | ], |
| 109 | 'size' => [ |
| 110 | 'file' => 100, |
| 111 | ], |
| 112 | ], |
| 113 | ]); |
| 114 | |
| 115 | $files = $bag->all(); |
| 116 | $this->assertEquals($file, $files['child']['file']); |
| 117 | } |
| 118 | |
| 119 | public function testShouldConvertNestedUploadedFilesWithPhpBug() |
| 120 | { |
| 121 | $tmpFile = $this->createTempFile(); |
| 122 | $file = new UploadedFile($tmpFile, basename($tmpFile), 'text/plain', 100, 0); |
| 123 | |
| 124 | $bag = new FileBag([ |
| 125 | 'child' => [ |
| 126 | 'name' => [ |
| 127 | 'sub' => ['file' => basename($tmpFile)], |
| 128 | ], |
| 129 | 'type' => [ |
| 130 | 'sub' => ['file' => 'text/plain'], |
| 131 | ], |
| 132 | 'tmp_name' => [ |
| 133 | 'sub' => ['file' => $tmpFile], |
| 134 | ], |
| 135 | 'error' => [ |
| 136 | 'sub' => ['file' => 0], |
| 137 | ], |
| 138 | 'size' => [ |
| 139 | 'sub' => ['file' => 100], |
| 140 | ], |
| 141 | ], |
| 142 | ]); |
| 143 | |
| 144 | $files = $bag->all(); |
| 145 | $this->assertEquals($file, $files['child']['sub']['file']); |
| 146 | } |
| 147 | |
| 148 | public function testShouldNotConvertNestedUploadedFiles() |
| 149 | { |
| 150 | $tmpFile = $this->createTempFile(); |
| 151 | $file = new UploadedFile($tmpFile, basename($tmpFile), 'text/plain', 100, 0); |
| 152 | $bag = new FileBag(['image' => ['file' => $file]]); |
| 153 | |
| 154 | $files = $bag->all(); |
| 155 | $this->assertEquals($file, $files['image']['file']); |
| 156 | } |
| 157 | |
| 158 | protected function createTempFile() |
| 159 | { |
| 160 | return tempnam(sys_get_temp_dir().'/form_test', 'FormTest'); |
| 161 | } |
| 162 | |
| 163 | protected function setUp() |
| 164 | { |
| 165 | mkdir(sys_get_temp_dir().'/form_test', 0777, true); |
| 166 | } |
| 167 | |
| 168 | protected function tearDown() |
| 169 | { |
| 170 | foreach (glob(sys_get_temp_dir().'/form_test/*') as $file) { |
| 171 | @unlink($file); |
| 172 | } |
| 173 | |
| 174 | @rmdir(sys_get_temp_dir().'/form_test'); |
| 175 | } |
| 176 | } |
| 177 |