LanguageTypesTest.php

Same filename and directory in other branches
  1. 9 core/modules/language/tests/src/Unit/process/LanguageTypesTest.php
  2. 8.9.x core/modules/language/tests/src/Unit/process/LanguageTypesTest.php
  3. 10 core/modules/language/tests/src/Unit/process/LanguageTypesTest.php

Namespace

Drupal\Tests\language\Unit\process

File

core/modules/language/tests/src/Unit/process/LanguageTypesTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\language\Unit\process;

use Drupal\language\Plugin\migrate\process\LanguageTypes;
use Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase;
use Drupal\migrate\MigrateException;

/**
 * @coversDefaultClass \Drupal\language\Plugin\migrate\process\LanguageTypes
 * @group language
 */
class LanguageTypesTest extends MigrateProcessTestCase {
    
    /**
     * Tests successful transformation of all language types.
     */
    public function testTransformAll() : void {
        $this->plugin = new LanguageTypes([], 'map', []);
        $source = [
            'language' => TRUE,
            'language_url' => FALSE,
            'language_content' => FALSE,
        ];
        $expected = [
            0 => 'language_url',
            1 => 'language_content',
            2 => 'language_interface',
        ];
        $value = $this->plugin
            ->transform($source, $this->migrateExecutable, $this->row, 'destination_property');
        $this->assertSame($value, $expected);
    }
    
    /**
     * Tests successful transformation of configurable language types.
     */
    public function testTransformConfigurable() : void {
        $this->plugin = new LanguageTypes([
            'filter_configurable' => TRUE,
        ], 'map', []);
        $source = [
            'language' => TRUE,
            'language_url' => FALSE,
            'language_content' => FALSE,
        ];
        $expected = [
            0 => 'language_interface',
        ];
        $value = $this->plugin
            ->transform($source, $this->migrateExecutable, $this->row, 'destination_property');
        $this->assertSame($value, $expected);
    }
    
    /**
     * Tests string input.
     */
    public function testStringInput() : void {
        $this->plugin = new LanguageTypes([], 'map', []);
        $this->expectException(MigrateException::class);
        $this->expectExceptionMessage('The input should be an array');
        $this->plugin
            ->transform('foo', $this->migrateExecutable, $this->row, 'destination_property');
    }

}

Classes

Title Deprecated Summary
LanguageTypesTest @coversDefaultClass \Drupal\language\Plugin\migrate\process\LanguageTypes @group language

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