LanguageTest.php

Same filename in this branch
  1. 9 core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php
  2. 9 core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php
  3. 9 core/modules/ckeditor/tests/src/Unit/Plugin/CKEditorPlugin/LanguageTest.php
Same filename and directory in other branches
  1. 8.9.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php
  2. 8.9.x core/modules/ckeditor/tests/src/Unit/Plugin/CKEditorPlugin/LanguageTest.php
  3. 10 core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php
  4. 10 core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php
  5. 10 core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php
  6. 11.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php
  7. 11.x core/modules/ckeditor5/tests/src/FunctionalJavascript/LanguageTest.php
  8. 11.x core/modules/ckeditor5/tests/src/Kernel/LanguageTest.php

Namespace

Drupal\Tests\language\Kernel\Plugin\migrate\source

File

core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php

View source
<?php

namespace Drupal\Tests\language\Kernel\Plugin\migrate\source;

use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;

/**
 * Tests the language source plugin.
 *
 * @covers \Drupal\language\Plugin\migrate\source\Language
 * @group language
 */
class LanguageTest extends MigrateSqlSourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'language',
        'migrate_drupal',
    ];
    
    /**
     * {@inheritdoc}
     */
    public function providerSource() {
        $tests = [];
        // The source data.
        $tests[0]['source_data']['languages'] = [
            [
                'language' => 'en',
                'name' => 'English',
                'native' => 'English',
                'direction' => '0',
                'enabled' => '1',
                'plurals' => '0',
                'formula' => '',
                'domain' => '',
                'prefix' => '',
                'weight' => '0',
                'javascript' => '',
            ],
            [
                'language' => 'fr',
                'name' => 'French',
                'native' => 'Français',
                'direction' => '0',
                'enabled' => '0',
                'plurals' => '2',
                'formula' => '($n>1)',
                'domain' => '',
                'prefix' => 'fr',
                'weight' => '0',
                'javascript' => '',
            ],
        ];
        // The expected results.
        $tests[0]['expected_data'] = [
            [
                'language' => 'en',
                'name' => 'English',
                'native' => 'English',
                'direction' => '0',
                'enabled' => '1',
                'plurals' => '0',
                'formula' => '',
                'domain' => '',
                'prefix' => '',
                'weight' => '0',
                'javascript' => '',
            ],
            [
                'language' => 'fr',
                'name' => 'French',
                'native' => 'Français',
                'direction' => '0',
                'enabled' => '0',
                'plurals' => '2',
                'formula' => '($n>1)',
                'domain' => '',
                'prefix' => 'fr',
                'weight' => '0',
                'javascript' => '',
            ],
        ];
        return $tests;
    }

}

Classes

Title Deprecated Summary
LanguageTest Tests the language source plugin.

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