MigrateFileConfigsTest.php

Same filename in this branch
  1. 11.x core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileConfigsTest.php
Same filename and directory in other branches
  1. 9 core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileConfigsTest.php
  2. 9 core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileConfigsTest.php
  3. 8.9.x core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileConfigsTest.php
  4. 8.9.x core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileConfigsTest.php
  5. 10 core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileConfigsTest.php
  6. 10 core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileConfigsTest.php

Namespace

Drupal\Tests\file\Kernel\Migrate\d7

File

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

View source
<?php

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

use Drupal\Tests\SchemaCheckTestTrait;
use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;

/**
 * Upgrade variables to file.settings.yml.
 *
 * @group migrate_drupal_7
 */
class MigrateFileConfigsTest extends MigrateDrupal7TestBase {
    use SchemaCheckTestTrait;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->executeMigration('file_settings');
    }
    
    /**
     * Tests migration of file variables to file.settings.yml.
     */
    public function testFileSettings() : void {
        $config = $this->config('file.settings');
        $this->assertSame('textfield', $config->get('description.type'));
        $this->assertSame(256, $config->get('description.length'));
        $this->assertSame('sites/default/files/icons', $config->get('icon.directory'));
        $this->assertConfigSchema(\Drupal::service('config.typed'), 'file.settings', $config->get());
    }

}

Classes

Title Deprecated Summary
MigrateFileConfigsTest Upgrade variables to file.settings.yml.

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