FileSystemTest.php

Same filename in this branch
  1. 11.x core/tests/Drupal/Tests/Core/File/FileSystemTest.php
Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/File/FileSystemTest.php
  2. 9 core/tests/Drupal/Tests/Core/File/FileSystemTest.php

Namespace

Drupal\KernelTests\Core\File

File

core/tests/Drupal/KernelTests/Core/File/FileSystemTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\File;

use Drupal\Core\File\Exception\DirectoryNotReadyException;
use Drupal\Core\File\Exception\FileException;
use Drupal\Core\File\Exception\FileExistsException;
use Drupal\Core\File\Exception\FileNotExistsException;
use Drupal\Core\File\FileExists;
use Drupal\KernelTests\KernelTestBase;

/**
 * @coversDefaultClass \Drupal\Core\File\FileSystem
 * @group File
 */
class FileSystemTest extends KernelTestBase {
  
  /**
   * The file handler under test.
   *
   * @var \Drupal\Core\File\FileSystemInterface
   */
  protected $fileSystem;
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'system',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->fileSystem = $this->container
      ->get('file_system');
  }
  
  /**
   * @covers ::copy
   */
  public function testEnsureFileExistsBeforeCopy() : void {
    // We need to compute the exception message here because it will include
    // the 'real' path to the file, which varies with $this->siteDirectory.
    $this->expectException(FileNotExistsException::class);
    $this->expectExceptionMessage("File 'public://test.txt' ('{$this->siteDirectory}/files/test.txt') could not be copied because it does not exist");
    $this->fileSystem
      ->copy('public://test.txt', 'public://test-copy.txt');
  }
  
  /**
   * @covers ::copy
   */
  public function testDestinationDirectoryFailureOnCopy() : void {
    $this->expectException(DirectoryNotReadyException::class);
    $this->expectExceptionMessage("The specified file 'public://test.txt' could not be copied because the destination directory 'public://subdirectory' is not properly configured. This may be caused by a problem with file or directory permissions.");
    touch('public://test.txt');
    // public://subdirectory has not been created, so
    // \Drupal::service('file_system')->prepareDirectory() will fail, causing
    // copy() to throw DirectoryNotReadyException.
    $this->fileSystem
      ->copy('public://test.txt', 'public://subdirectory/test.txt');
  }
  
  /**
   * @covers ::copy
   */
  public function testCopyFailureIfFileAlreadyExists() : void {
    $this->expectException(FileExistsException::class);
    $this->expectExceptionMessage("File 'public://test.txt' could not be copied because a file by that name already exists in the destination directory ('')");
    $uri = 'public://test.txt';
    touch($uri);
    $this->fileSystem
      ->copy($uri, $uri, FileExists::Error);
  }
  
  /**
   * @covers ::copy
   */
  public function testCopyFailureIfSelfOverwrite() : void {
    $this->expectException(FileException::class);
    $this->expectExceptionMessage("'public://test.txt' could not be copied because it would overwrite itself");
    $uri = 'public://test.txt';
    touch($uri);
    $this->fileSystem
      ->copy($uri, $uri, FileExists::Replace);
  }
  
  /**
   * @covers ::copy
   */
  public function testCopySelfRename() : void {
    $uri = 'public://test.txt';
    touch($uri);
    $this->fileSystem
      ->copy($uri, $uri);
    $this->assertFileExists('public://test_0.txt');
  }
  
  /**
   * @covers ::copy
   */
  public function testSuccessfulCopy() : void {
    touch('public://test.txt');
    $this->fileSystem
      ->copy('public://test.txt', 'public://test-copy.txt');
    $this->assertFileExists('public://test-copy.txt');
  }

}

Classes

Title Deprecated Summary
FileSystemTest @coversDefaultClass \Drupal\Core\File\FileSystem[[api-linebreak]] @group File

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.