VariableTranslationCheckRequirementsTest.php

Same filename in other branches
  1. 9 core/modules/migrate_drupal/tests/src/Kernel/d6/VariableTranslationCheckRequirementsTest.php
  2. 10 core/modules/migrate_drupal/tests/src/Kernel/d6/VariableTranslationCheckRequirementsTest.php
  3. 11.x core/modules/migrate_drupal/tests/src/Kernel/d6/VariableTranslationCheckRequirementsTest.php

Namespace

Drupal\Tests\migrate_drupal\Kernel\d6

File

core/modules/migrate_drupal/tests/src/Kernel/d6/VariableTranslationCheckRequirementsTest.php

View source
<?php

namespace Drupal\Tests\migrate_drupal\Kernel\d6;

use Drupal\migrate\Exception\RequirementsException;

/**
 * Tests check requirements for variable translation source plugin.
 *
 * @group migrate_drupal
 */
class VariableTranslationCheckRequirementsTest extends MigrateDrupal6TestBase {
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'config_translation',
    ];
    
    /**
     * {@inheritdoc}
     */
    public function setup() {
        parent::setUp();
        $this->sourceDatabase
            ->schema()
            ->dropTable('i18n_variable');
    }
    
    /**
     * Tests exception in thrown when the i18n_variable table does not exist.
     */
    public function testCheckRequirements() {
        $this->expectException(RequirementsException::class);
        $this->expectExceptionMessage("Source database table 'i18n_variable' does not exist");
        $this->getMigration('d6_system_maintenance_translation')
            ->getSourcePlugin()
            ->checkRequirements();
    }

}

Classes

Title Deprecated Summary
VariableTranslationCheckRequirementsTest Tests check requirements for variable translation source plugin.

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