Version 1
[yaffs-website] / web / core / modules / file / tests / src / Kernel / Migrate / d6 / MigrateUploadInstanceTest.php
diff --git a/web/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadInstanceTest.php b/web/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadInstanceTest.php
new file mode 100644 (file)
index 0000000..84bd4eb
--- /dev/null
@@ -0,0 +1,49 @@
+<?php
+
+namespace Drupal\Tests\file\Kernel\Migrate\d6;
+
+use Drupal\field\Entity\FieldConfig;
+use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
+
+/**
+ * Upload field instance migration.
+ *
+ * @group migrate_drupal_6
+ */
+class MigrateUploadInstanceTest extends MigrateDrupal6TestBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = ['menu_ui'];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->migrateFields();
+  }
+
+  /**
+   * Tests the Drupal 6 upload settings to Drupal 8 field instance migration.
+   */
+  public function testUploadFieldInstance() {
+    $field = FieldConfig::load('node.page.upload');
+    $settings = $field->getSettings();
+    $this->assertIdentical('node.page.upload', $field->id());
+    $this->assertIdentical('jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp', $settings['file_extensions']);
+    $this->assertIdentical('1MB', $settings['max_filesize']);
+    $this->assertIdentical(TRUE, $settings['description_field']);
+
+    $field = FieldConfig::load('node.story.upload');
+    $this->assertIdentical('node.story.upload', $field->id());
+
+    // Shouldn't exist.
+    $field = FieldConfig::load('node.article.upload');
+    $this->assertTrue(is_null($field));
+
+    $this->assertIdentical(['node', 'page', 'upload'], $this->getMigration('d6_upload_field_instance')->getIdMap()->lookupDestinationID(['page']));
+  }
+
+}