You are here

protected function MigrateUserPictureD6FileTest::assertEntity in Drupal 10

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

Asserts a file entity.

@internal

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 MigrateUserPictureD6FileTest::assertEntity()
MigrateUserPictureD6FileTest::testUserPictures in core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserPictureD6FileTest.php
Tests the Drupal 6 user pictures to Drupal 8 migration.

File

core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserPictureD6FileTest.php, line 80

Class

MigrateUserPictureD6FileTest
User pictures migration.

Namespace

Drupal\Tests\user\Kernel\Migrate\d6

Code

protected function assertEntity(int $fid, string $name, int $size, string $uri, string $type, int $uid) : void {

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