MigrateFileConfigsTest.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileConfigsTest.php
- 9 core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileConfigsTest.php
- 8.9.x core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileConfigsTest.php
- 8.9.x core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileConfigsTest.php
- 11.x core/modules/file/tests/src/Kernel/Migrate/d6/MigrateFileConfigsTest.php
- 11.x core/modules/file/tests/src/Kernel/Migrate/d7/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\SchemaCheckTestTrait;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
/**
* Upgrade variables to file.settings.yml.
*
* @group migrate_drupal_6
*/
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.