You are here

MigrateSystemFileTest.php in Zircon Profile 8

File

core/modules/system/src/Tests/Migrate/d6/MigrateSystemFileTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Migrate\d6\MigrateSystemFileTest.
 */
namespace Drupal\system\Tests\Migrate\d6;

use Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase;

/**
 * Upgrade variables to system.*.yml.
 *
 * @group migrate_drupal_6
 */
class MigrateSystemFileTest extends MigrateDrupal6TestBase {

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this
      ->executeMigration('d6_system_file');
  }

  /**
   * Tests migration of system (file) variables to system.file.yml.
   */
  public function testSystemFile() {
    $config = \Drupal::configFactory()
      ->getEditable('system.file');
    $this
      ->assertIdentical('files/temp', $config
      ->get('path.temporary'));
    $this
      ->assertIdentical(TRUE, $config
      ->get('allow_insecure_uploads'));
  }

}

Classes

Namesort descending Description
MigrateSystemFileTest Upgrade variables to system.*.yml.