You are here

protected function MigrateNodeTest::getFileMigrationInfo in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTest.php \Drupal\Tests\node\Kernel\Migrate\d7\MigrateNodeTest::getFileMigrationInfo()
  2. 10 core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTest.php \Drupal\Tests\node\Kernel\Migrate\d7\MigrateNodeTest::getFileMigrationInfo()

Returns information about the file to be migrated.

Return value

array Array with keys 'path', 'size', 'base_path', and 'plugin_id'.

Overrides FileMigrationSetupTrait::getFileMigrationInfo

File

core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTest.php, line 73

Class

MigrateNodeTest
Tests node migration.

Namespace

Drupal\Tests\node\Kernel\Migrate\d7

Code

protected function getFileMigrationInfo() {
  return [
    'path' => 'public://sites/default/files/cube.jpeg',
    'size' => '3620',
    'base_path' => 'public://',
    'plugin_id' => 'd7_file',
  ];
}