MigratePrivateFileTest.php

Same filename and directory in other branches
  1. 9 core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php
  2. 8.9.x core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php
  3. 10 core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php

Namespace

Drupal\Tests\file\Kernel\Migrate\d7

File

core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\file\Kernel\Migrate\d7;

use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;

/**
 * Tests private files migration.
 *
 * @group file
 */
class MigratePrivateFileTest extends MigrateDrupal7TestBase {
    use FileMigrationSetupTrait;
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'file',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->setSetting('file_private_path', $this->container
            ->getParameter('site.path') . '/private');
        $this->fileMigrationSetup();
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getFileMigrationInfo() {
        return [
            'path' => 'private://sites/default/private/Babylon5.txt',
            'size' => 3,
            'base_path' => 'private://',
            'plugin_id' => 'd7_file_private',
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    public function register(ContainerBuilder $container) {
        parent::register($container);
        $container->register('stream_wrapper.private', 'Drupal\\Core\\StreamWrapper\\PrivateStream')
            ->addTag('stream_wrapper', [
            'scheme' => 'private',
        ]);
    }
    
    /**
     * Tests that all expected files are migrated.
     */
    public function testFileMigration() : void {
        $this->assertEntity(3, 'Babylon5.txt', 'private://Babylon5.txt', 'text/plain', 3, 1486104045, 1486104045, '1');
    }

}

Classes

Title Deprecated Summary
MigratePrivateFileTest Tests private files migration.

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