function MigrateUploadTest::testUpload

Same name and namespace in other branches
  1. 9 core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadTest.php \Drupal\Tests\file\Kernel\Migrate\d6\MigrateUploadTest::testUpload()
  2. 8.9.x core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadTest.php \Drupal\Tests\file\Kernel\Migrate\d6\MigrateUploadTest::testUpload()
  3. 11.x core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadTest.php \Drupal\Tests\file\Kernel\Migrate\d6\MigrateUploadTest::testUpload()

Tests upload migration from Drupal 6 to Drupal 8.

File

core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadTest.php, line 71

Class

MigrateUploadTest
Migrate association data between nodes and files.

Namespace

Drupal\Tests\file\Kernel\Migrate\d6

Code

public function testUpload() : void {
  $this->container
    ->get('entity_type.manager')
    ->getStorage('node')
    ->resetCache([
    1,
    2,
    12,
  ]);
  $nodes = Node::loadMultiple([
    1,
    2,
    12,
  ]);
  $node = $nodes[1];
  $this->assertEquals('en', $node->langcode->value);
  $this->assertCount(1, $node->upload);
  $this->assertSame('1', $node->upload[0]->target_id);
  $this->assertSame('file 1-1-1', $node->upload[0]->description);
  $this->assertFalse($node->upload[0]
    ->isDisplayed());
  $node = $nodes[2];
  $this->assertEquals('en', $node->langcode->value);
  $this->assertCount(2, $node->upload);
  $this->assertSame('3', $node->upload[0]->target_id);
  $this->assertSame('file 2-3-3', $node->upload[0]->description);
  $this->assertFalse($node->upload[0]
    ->isDisplayed());
  $this->assertSame('2', $node->upload[1]->target_id);
  $this->assertTrue($node->upload[1]
    ->isDisplayed());
  $this->assertSame('file 2-3-2', $node->upload[1]->description);
  $node = $nodes[12];
  $this->assertEquals('zu', $node->langcode->value);
  $this->assertCount(1, $node->upload);
  $this->assertEquals('3', $node->upload[0]->target_id);
  $this->assertEquals('file 12-15-3', $node->upload[0]->description);
  $this->assertEquals(FALSE, $node->upload[0]
    ->isDisplayed());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.