Version 1
[yaffs-website] / web / core / modules / file / tests / src / Kernel / Migrate / d6 / MigrateFileConfigsTest.php
1 <?php
2
3 namespace Drupal\Tests\file\Kernel\Migrate\d6;
4
5 use Drupal\Tests\SchemaCheckTestTrait;
6 use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
7
8 /**
9  * Upgrade variables to file.settings.yml.
10  *
11  * @group migrate_drupal_6
12  */
13 class MigrateFileConfigsTest extends MigrateDrupal6TestBase {
14
15   use SchemaCheckTestTrait;
16
17   /**
18    * {@inheritdoc}
19    */
20   protected function setUp() {
21     parent::setUp();
22     $this->executeMigration('file_settings');
23   }
24
25   /**
26    * Tests migration of file variables to file.settings.yml.
27    */
28   public function testFileSettings() {
29     $config = $this->config('file.settings');
30     $this->assertIdentical('textfield', $config->get('description.type'));
31     $this->assertIdentical(128, $config->get('description.length'));
32     $this->assertIdentical('sites/default/files/icons', $config->get('icon.directory'));
33     $this->assertConfigSchema(\Drupal::service('config.typed'), 'file.settings', $config->get());
34   }
35
36 }