Version 1
[yaffs-website] / web / core / modules / syslog / tests / src / Kernel / Migrate / d6 / MigrateSyslogConfigsTest.php
diff --git a/web/core/modules/syslog/tests/src/Kernel/Migrate/d6/MigrateSyslogConfigsTest.php b/web/core/modules/syslog/tests/src/Kernel/Migrate/d6/MigrateSyslogConfigsTest.php
new file mode 100644 (file)
index 0000000..aa66203
--- /dev/null
@@ -0,0 +1,40 @@
+<?php
+
+namespace Drupal\Tests\syslog\Kernel\Migrate\d6;
+
+use Drupal\Tests\SchemaCheckTestTrait;
+use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
+
+/**
+ * Upgrade variables to syslog.settings.yml.
+ *
+ * @group migrate_drupal_6
+ */
+class MigrateSyslogConfigsTest extends MigrateDrupal6TestBase {
+
+  use SchemaCheckTestTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = ['syslog'];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->executeMigration('d6_syslog_settings');
+  }
+
+  /**
+   * Tests migration of syslog variables to syslog.settings.yml.
+   */
+  public function testSyslogSettings() {
+    $config = $this->config('syslog.settings');
+    $this->assertIdentical('drupal', $config->get('identity'));
+    $this->assertIdentical('128', $config->get('facility'));
+    $this->assertConfigSchema(\Drupal::service('config.typed'), 'syslog.settings', $config->get());
+  }
+
+}