function MigrationConfigurationTraitTest::providerTestGetLegacyDrupalVersion

Same name and namespace in other branches
  1. 9 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 60

Class

MigrationConfigurationTraitTest
@coversDefaultClass \Drupal\migrate_drupal\MigrationConfigurationTrait[[api-linebreak]] @group migrate_drupal

Namespace

Drupal\Tests\migrate_drupal\Unit

Code

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

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