You are here

class FileMoveTest in Drupal 10

Same name in this branch
  1. 10 core/tests/Drupal/KernelTests/Core/File/FileMoveTest.php \Drupal\KernelTests\Core\File\FileMoveTest
  2. 10 core/modules/image/tests/src/Functional/FileMoveTest.php \Drupal\Tests\image\Functional\FileMoveTest
Same name and namespace in other branches
  1. 8 core/modules/image/tests/src/Functional/FileMoveTest.php \Drupal\Tests\image\Functional\FileMoveTest
  2. 9 core/modules/image/tests/src/Functional/FileMoveTest.php \Drupal\Tests\image\Functional\FileMoveTest

Tests the file move function for images and image styles.

@group image

Hierarchy

Expanded class hierarchy of FileMoveTest

1 string reference to 'FileMoveTest'
drupal7.php in core/modules/migrate_drupal/tests/fixtures/drupal7.php
A database agnostic dump for testing purposes.

File

core/modules/image/tests/src/Functional/FileMoveTest.php, line 16

Namespace

Drupal\Tests\image\Functional
View source
class FileMoveTest extends BrowserTestBase {
  use TestFileCreationTrait {
    getTestFiles as drupalGetTestFiles;
    compareFiles as drupalCompareFiles;
  }

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'image',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * The file repository service.
   *
   * @var \Drupal\file\FileRepository
   */
  protected $fileRepository;

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->fileRepository = $this->container
      ->get('file.repository');
  }

  /**
   * Tests moving a randomly generated image.
   */
  public function testNormal() {

    // Pick a file for testing.
    $file = File::create((array) current($this
      ->drupalGetTestFiles('image')));

    // Create derivative image.
    $styles = ImageStyle::loadMultiple();
    $style = reset($styles);
    $original_uri = $file
      ->getFileUri();
    $derivative_uri = $style
      ->buildUri($original_uri);
    $style
      ->createDerivative($original_uri, $derivative_uri);

    // Check if derivative image exists.
    $this
      ->assertFileExists($derivative_uri);

    // Clone the object so we don't have to worry about the function changing
    // our reference copy.
    $desired_filepath = 'public://' . $this
      ->randomMachineName();
    $result = $this->fileRepository
      ->move(clone $file, $desired_filepath, FileSystemInterface::EXISTS_ERROR);

    // Check if image has been moved.
    $this
      ->assertFileExists($result
      ->getFileUri());

    // Check if derivative image has been flushed.
    $this
      ->assertFileDoesNotExist($derivative_uri);
  }

}

Members