You are here

protected function MigrateFileTest::assertEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileTest.php \Drupal\Tests\file\Kernel\Migrate\d6\MigrateFileTest::assertEntity()
  2. 10 core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileTest.php \Drupal\Tests\file\Kernel\Migrate\d6\MigrateFileTest::assertEntity()

Asserts a file entity.

Parameters

int $fid: The file ID.

string $name: The expected file name.

int $size: The expected file size.

string $uri: The expected file URI.

string $type: The expected MIME type.

int $uid: The expected file owner ID.

1 call to MigrateFileTest::assertEntity()
MigrateFileTest::testFiles in core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileTest.php
Tests the Drupal 6 files to Drupal 8 migration.

File

core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileTest.php, line 53

Class

MigrateFileTest
Test file migration.

Namespace

Drupal\Tests\file\Kernel\Migrate\d6

Code

protected function assertEntity($fid, $name, $size, $uri, $type, $uid) {

  /** @var \Drupal\file\FileInterface $file */
  $file = File::load($fid);
  $this
    ->assertInstanceOf(FileInterface::class, $file);
  $this
    ->assertSame($name, $file
    ->getFilename());
  $this
    ->assertSame($size, $file
    ->getSize());
  $this
    ->assertSame($uri, $file
    ->getFileUri());
  $this
    ->assertSame($type, $file
    ->getMimeType());
  $this
    ->assertSame($uid, $file
    ->getOwnerId());
}