FileFieldTest.php

Same filename in this branch
  1. 9 core/modules/file/tests/src/Unit/Plugin/migrate/field/d6/FileFieldTest.php
Same filename and directory in other branches
  1. 8.9.x core/modules/file/tests/src/Unit/Plugin/migrate/field/d6/FileFieldTest.php
  2. 8.9.x core/modules/file/tests/src/Unit/Plugin/migrate/field/d7/FileFieldTest.php
  3. 10 core/modules/file/tests/src/Unit/Plugin/migrate/field/d6/FileFieldTest.php
  4. 10 core/modules/file/tests/src/Unit/Plugin/migrate/field/d7/FileFieldTest.php
  5. 11.x core/modules/file/tests/src/Unit/Plugin/migrate/field/d6/FileFieldTest.php
  6. 11.x core/modules/file/tests/src/Unit/Plugin/migrate/field/d7/FileFieldTest.php

Namespace

Drupal\Tests\file\Unit\Plugin\migrate\field\d7

File

core/modules/file/tests/src/Unit/Plugin/migrate/field/d7/FileFieldTest.php

View source
<?php

namespace Drupal\Tests\file\Unit\Plugin\migrate\field\d7;

use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate\Row;
use Drupal\Tests\UnitTestCase;
use Drupal\file\Plugin\migrate\field\d7\FileField;
use Prophecy\Argument;
// cspell:ignore filefield imagefield

/**
 * @coversDefaultClass \Drupal\file\Plugin\migrate\field\d7\FileField
 * @group file
 */
class FileFieldTest extends UnitTestCase {
    
    /**
     * @var \Drupal\migrate_drupal\Plugin\MigrateFieldInterface
     */
    protected $plugin;
    
    /**
     * @var \Drupal\migrate\Plugin\MigrationInterface
     */
    protected $migration;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        $this->plugin = new FileField([], 'file', []);
        $migration = $this->prophesize(MigrationInterface::class);
        // The plugin's defineValueProcessPipeline() method will call
        // mergeProcessOfProperty() and return nothing. So, in order to examine the
        // process pipeline created by the plugin, we need to ensure that
        // getProcess() always returns the last input to mergeProcessOfProperty().
        $migration->mergeProcessOfProperty(Argument::type('string'), Argument::type('array'))
            ->will(function ($arguments) use ($migration) {
            $migration->getProcess()
                ->willReturn($arguments[1]);
        });
        $this->migration = $migration->reveal();
    }
    
    /**
     * @covers ::defineValueProcessPipeline
     */
    public function testDefineValueProcessPipeline($method = 'defineValueProcessPipeline') {
        $this->plugin
            ->{$method}($this->migration, 'field_name', []);
        $expected = [
            'plugin' => 'sub_process',
            'source' => 'field_name',
            'process' => [
                'target_id' => 'fid',
                'display' => 'display',
                'description' => 'description',
            ],
        ];
        $this->assertSame($expected, $this->migration
            ->getProcess());
    }
    
    /**
     * Data provider for testGetFieldType().
     */
    public function getFieldTypeProvider() {
        return [
            [
                'image',
                'imagefield_widget',
            ],
            [
                'file',
                'filefield_widget',
            ],
            [
                'file',
                'x_widget',
            ],
        ];
    }
    
    /**
     * @covers ::getFieldType
     * @dataProvider getFieldTypeProvider
     */
    public function testGetFieldType($expected_type, $widget_type, array $settings = []) {
        $row = new Row();
        $row->setSourceProperty('widget_type', $widget_type);
        $row->setSourceProperty('global_settings', $settings);
        $this->assertSame($expected_type, $this->plugin
            ->getFieldType($row));
    }

}

Classes

Title Deprecated Summary
FileFieldTest @coversDefaultClass \Drupal\file\Plugin\migrate\field\d7\FileField @group file

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