Revert "Issue #3022910 by quietone, juampynr, chandrashekhar_srijan, alisonjo315, heddn, benjifisher: Prevent migrated files from having an incorrect value at file_managed.filename"

This reverts commit 286129f86e.
merge-requests/329/merge
catch 2021-08-19 09:52:26 +01:00
parent 492b7a181d
commit 4122e26f5c
5 changed files with 3 additions and 32 deletions

View File

@ -19,14 +19,7 @@ process:
# If you are using this file to build a custom migration consider removing
# the fid field to allow incremental migrations.
fid: fid
# File entity module uses file_managed.filename as the entity title, while
# Drupal 8 expects this to be an actual file name. Therefore, extract the
# filename from the uri field. Otherwise, the file will migrate but form
# validation won't pass when editing it.
filename:
plugin: callback
callable: basename
source: uri
filename: filename
source_full_path:
-
plugin: concat

View File

@ -17,14 +17,7 @@ process:
# If you are using this file to build a custom migration consider removing
# the fid field to allow incremental migrations.
fid: fid
# File entity module uses file_managed.filename as the entity title, while
# Drupal 8 expects this to be an actual file name. Therefore, extract the
# filename from the uri field. Otherwise, the file will migrate but form
# validation won't pass when editing it.
filename:
plugin: callback
callable: basename
source: uri
filename: filename
source_full_path:
-
plugin: concat

View File

@ -9,14 +9,7 @@ source:
source_base_path: ''
process:
fid: fid
# File entity module uses file_managed.filename as the entity title, while
# Drupal 8 expects this to be an actual file name. Therefore, extract the
# filename from the uri field. Otherwise, the file will migrate but form
# validation won't pass when editing it.
filename:
plugin: callback
callable: basename
source: uri
filename: filename
source_full_path:
-
plugin: concat

View File

@ -24,10 +24,6 @@ class MigrateFileTest extends MigrateDrupal7TestBase {
*/
protected function setUp(): void {
parent::setUp();
$this->sourceDatabase->update('file_managed')
->fields(['filename' => 'this can have spaces in it'])
->condition('fid', 1)
->execute();
$this->fileMigrationSetup();
}

View File

@ -24,10 +24,6 @@ class MigratePrivateFileTest extends MigrateDrupal7TestBase {
*/
protected function setUp(): void {
parent::setUp();
$this->sourceDatabase->update('file_managed')
->fields(['filename' => 'this can have spaces in it'])
->condition('fid', 3)
->execute();
$this->setSetting('file_private_path', $this->container->getParameter('site.path') . '/private');
$this->fileMigrationSetup();
}