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