function MigrationConfigurationTraitTest::providerTestGetLegacyDrupalVersion

Same name and namespace in other branches
  1. 10 core/modules/migrate_drupal/tests/src/Unit/MigrationConfigurationTraitTest.php \Drupal\Tests\migrate_drupal\Unit\MigrationConfigurationTraitTest::providerTestGetLegacyDrupalVersion()
  2. 11.x core/modules/migrate_drupal/tests/src/Unit/MigrationConfigurationTraitTest.php \Drupal\Tests\migrate_drupal\Unit\MigrationConfigurationTraitTest::providerTestGetLegacyDrupalVersion()

Provides data for testGetLegacyDrupalVersion.

File

core/modules/migrate_drupal/tests/src/Unit/MigrationConfigurationTraitTest.php, line 58

Class

MigrationConfigurationTraitTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21migrate_drupal%21src%21MigrationConfigurationTrait.php/trait/MigrationConfigurationTrait/9" title="Configures the appropriate migrations for a given source Drupal database." class="local">\Drupal\migrate_drupal\MigrationConfigurationTrait</a> @group migrate_drupal

Namespace

Drupal\Tests\migrate_drupal\Unit

Code

public function providerTestGetLegacyDrupalVersion() {
    return [
        'D5' => [
            'expected_version_string' => '5',
            'schema_version' => '1678',
            'exception' => NULL,
            'table_map' => [
                [
                    'system',
                    TRUE,
                ],
                [
                    'key_value',
                    FALSE,
                ],
            ],
        ],
        'D6' => [
            'expected_version_string' => '6',
            'schema_version' => '6057',
            'exception' => NULL,
            'table_map' => [
                [
                    'system',
                    TRUE,
                ],
                [
                    'key_value',
                    FALSE,
                ],
            ],
        ],
        'D7' => [
            'expected_version_string' => '7',
            'schema_version' => '7065',
            'exception' => NULL,
            'table_map' => [
                [
                    'system',
                    TRUE,
                ],
                [
                    'key_value',
                    FALSE,
                ],
            ],
        ],
        'D8' => [
            'expected_version_string' => '8',
            'schema_version' => serialize('8976'),
            'exception' => NULL,
            'table_map' => [
                [
                    'system',
                    FALSE,
                ],
                [
                    'key_value',
                    TRUE,
                ],
            ],
        ],
        'D9' => [
            'expected_version_string' => '9',
            'schema_version' => serialize('9270'),
            'exception' => NULL,
            'table_map' => [
                [
                    'system',
                    FALSE,
                ],
                [
                    'key_value',
                    TRUE,
                ],
            ],
        ],
        'Not drupal' => [
            'expected_version_string' => FALSE,
            'schema_version' => "not drupal I guess",
            'exception' => NULL,
            'table_map' => [
                [
                    'system',
                    FALSE,
                ],
                [
                    'key_value',
                    FALSE,
                ],
            ],
        ],
        'D5 almost' => [
            'expected_version_string' => FALSE,
            'schema_version' => '123',
            'exception' => NULL,
            'table_map' => [
                [
                    'system',
                    TRUE,
                ],
                [
                    'key_value',
                    FALSE,
                ],
            ],
        ],
        'D5/6/7 Exception' => [
            'expected_version_string' => FALSE,
            'schema_version' => NULL,
            'exception' => new DatabaseExceptionWrapper(),
            'table_map' => [
                [
                    'system',
                    TRUE,
                ],
                [
                    'key_value',
                    FALSE,
                ],
            ],
        ],
        'D8/9 Exception' => [
            'expected_version_string' => FALSE,
            'schema_version' => NULL,
            'exception' => new DatabaseExceptionWrapper(),
            'table_map' => [
                [
                    'system',
                    FALSE,
                ],
                [
                    'key_value',
                    TRUE,
                ],
            ],
        ],
    ];
}

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