Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / file / tests / src / Unit / Plugin / migrate / process / d6 / CckFileTest.php
1 <?php
2
3 namespace Drupal\Tests\file\Unit\Plugin\migrate\process\d6;
4
5 use Drupal\file\Plugin\migrate\process\d6\CckFile;
6 use Drupal\migrate\Plugin\MigrationInterface;
7 use Drupal\migrate\MigrateExecutableInterface;
8 use Drupal\migrate\Plugin\MigrateProcessInterface;
9 use Drupal\migrate\Row;
10 use Drupal\Tests\UnitTestCase;
11
12 /**
13  * @group file
14  * @group legacy
15  */
16 class CckFileTest extends UnitTestCase {
17
18   /**
19    * Tests that alt and title attributes are included in transformed values.
20    */
21   public function testTransformAltTitle() {
22     $executable = $this->prophesize(MigrateExecutableInterface::class)->reveal();
23     $row = $this->prophesize(Row::class)->reveal();
24     $migration = $this->prophesize(MigrationInterface::class)->reveal();
25
26     $migration_plugin = $this->prophesize(MigrateProcessInterface::class);
27     $migration_plugin->transform(1, $executable, $row, 'foo')->willReturn(1);
28
29     $plugin = new CckFile([], 'd6_cck_file', [], $migration, $migration_plugin->reveal());
30
31     $options = [
32       'alt' => 'Foobaz',
33       'title' => 'Wambooli',
34     ];
35     $value = [
36       'fid' => 1,
37       'list' => TRUE,
38       'data' => serialize($options),
39     ];
40
41     $transformed = $plugin->transform($value, $executable, $row, 'foo');
42     $expected = [
43       'target_id' => 1,
44       'display' => TRUE,
45       'description' => '',
46       'alt' => 'Foobaz',
47       'title' => 'Wambooli',
48     ];
49     $this->assertSame($expected, $transformed);
50   }
51
52 }