MigrateFileConfigsTest.php
Namespace
Drupal\Tests\file\Kernel\Migrate\d6File
- 
              core/
modules/ file/ tests/ src/ Kernel/ Migrate/ d6/ MigrateFileConfigsTest.php  
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\file\Kernel\Migrate\d6;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
use Drupal\Tests\SchemaCheckTestTrait;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;
/**
 * Upgrade variables to file.settings.yml.
 */
class MigrateFileConfigsTest extends MigrateDrupal6TestBase {
  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(128, $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.