public function UploadedFileTest::testMoveLocalFileIsAllowedInTestMode

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/UploadedFileTest.php, line 108

Class

UploadedFileTest

Namespace

Symfony\Component\HttpFoundation\Tests\File

Code

public function testMoveLocalFileIsAllowedInTestMode() {
  $path = __DIR__ . '/Fixtures/test.copy.gif';
  $targetDir = __DIR__ . '/Fixtures/directory';
  $targetPath = $targetDir . '/test.copy.gif';
  @unlink($path);
  @unlink($targetPath);
  copy(__DIR__ . '/Fixtures/test.gif', $path);
  $file = new UploadedFile($path, 'original.gif', 'image/gif', filesize($path), UPLOAD_ERR_OK, true);
  $movedFile = $file
    ->move(__DIR__ . '/Fixtures/directory');
  $this
    ->assertTrue(file_exists($targetPath));
  $this
    ->assertFalse(file_exists($path));
  $this
    ->assertEquals(realpath($targetPath), $movedFile
    ->getRealPath());
  @unlink($targetPath);
}