function ProjectCoreCompatibilityTest::providerSetProjectCoreCompatibilityRanges

Same name and namespace in other branches
  1. 9 core/modules/update/tests/src/Unit/ProjectCoreCompatibilityTest.php \Drupal\Tests\update\Unit\ProjectCoreCompatibilityTest::providerSetProjectCoreCompatibilityRanges()
  2. 8.9.x core/modules/update/tests/src/Unit/ProjectCoreCompatibilityTest.php \Drupal\Tests\update\Unit\ProjectCoreCompatibilityTest::providerSetProjectCoreCompatibilityRanges()
  3. 11.x core/modules/update/tests/src/Unit/ProjectCoreCompatibilityTest.php \Drupal\Tests\update\Unit\ProjectCoreCompatibilityTest::providerSetProjectCoreCompatibilityRanges()

Data provider for testSetProjectCoreCompatibilityRanges().

File

core/modules/update/tests/src/Unit/ProjectCoreCompatibilityTest.php, line 32

Class

ProjectCoreCompatibilityTest
@coversDefaultClass \Drupal\update\ProjectCoreCompatibility[[api-linebreak]]

Namespace

Drupal\Tests\update\Unit

Code

public static function providerSetProjectCoreCompatibilityRanges() {
  $test_cases['no 9 releases, no supported branches'] = [
    'project_data' => [
      'recommended' => '1.0.1',
      'latest_version' => '1.2.3',
      'also' => [
        '1.2.4',
        '1.2.5',
        '1.2.6',
      ],
      'releases' => [
        '1.0.1' => [
          'core_compatibility' => '8.x',
        ],
        '1.2.3' => [
          'core_compatibility' => '^8.9 || ^9',
        ],
        '1.2.4' => [
          'core_compatibility' => '^8.9.2 || ^9',
        ],
        '1.2.6' => [],
      ],
      'security updates' => [
        '1.2.5' => [
          'core_compatibility' => '8.9.0 || 8.9.2 || ^9.0.1',
        ],
      ],
    ],
    'core_data' => [
      'existing_version' => '8.8.0',
    ],
    'supported_branches' => [],
    'core_releases' => [
      '8.8.0-alpha1' => [],
      '8.8.0-beta1' => [],
      '8.8.0-rc1' => [],
      '8.8.0' => [],
      '8.8.1' => [],
      '8.8.2' => [],
      '8.9.0' => [],
      '8.9.1' => [],
      '8.9.2' => [],
    ],
  ];
  // Confirm that with no core supported branches the releases are not changed.
  $test_cases['no 9 releases, no supported branches'] += [
    'expected_releases' => $test_cases['no 9 releases, no supported branches']['project_data']['releases'],
    'expected_security_updates' => $test_cases['no 9 releases, no supported branches']['project_data']['security updates'],
  ];
  // Confirm that if core has supported branches the releases will updated
  // with 'core_compatible' and 'core_compatibility_message'.
  $test_cases['no 9 releases'] = $test_cases['no 9 releases, no supported branches'];
  $test_cases['no 9 releases']['supported_branches'] = [
    '8.8.',
    '8.9.',
  ];
  $test_cases['no 9 releases']['expected_releases'] = [
    '1.0.1' => [
      'core_compatibility' => '8.x',
      'core_compatible' => TRUE,
      'core_compatibility_message' => 'Requires Drupal core: 8.8.0 to 8.9.2',
    ],
    '1.2.3' => [
      'core_compatibility' => '^8.9 || ^9',
      'core_compatible' => FALSE,
      'core_compatibility_message' => 'Requires Drupal core: 8.9.0 to 8.9.2',
    ],
    '1.2.4' => [
      'core_compatibility' => '^8.9.2 || ^9',
      'core_compatible' => FALSE,
      'core_compatibility_message' => 'Requires Drupal core: 8.9.2',
    ],
    '1.2.6' => [],
  ];
  $test_cases['no 9 releases']['expected_security_updates'] = [
    '1.2.5' => [
      'core_compatibility' => '8.9.0 || 8.9.2 || ^9.0.1',
      'core_compatible' => FALSE,
      'core_compatibility_message' => 'Requires Drupal core: 8.9.0, 8.9.2',
    ],
  ];
  // Ensure that when only Drupal 9 pre-releases none of the expected ranges
  // change.
  $test_cases['with 9 pre releases'] = $test_cases['no 9 releases'];
  $test_cases['with 9 pre releases']['core_releases'] += [
    '9.0.0-alpha1' => [],
    '9.0.0-beta1' => [],
    '9.0.0-rc1' => [],
  ];
  // Ensure that when the Drupal 9 full releases are added but they are not
  // supported none of the expected ranges change.
  $test_cases['with 9 full releases, not supported'] = $test_cases['with 9 pre releases'];
  $test_cases['with 9 full releases, not supported']['core_releases'] += [
    '9.0.0' => [],
    '9.0.1' => [],
    '9.0.2' => [],
  ];
  // Ensure that when the Drupal 9 full releases are supported the expected
  // ranges do change.
  $test_cases['with 9 full releases, supported'] = $test_cases['with 9 full releases, not supported'];
  $test_cases['with 9 full releases, supported']['supported_branches'][] = '9.0.';
  $test_cases['with 9 full releases, supported']['expected_releases'] = [
    '1.0.1' => [
      'core_compatibility' => '8.x',
      'core_compatible' => TRUE,
      'core_compatibility_message' => 'Requires Drupal core: 8.8.0 to 8.9.2',
    ],
    '1.2.3' => [
      'core_compatibility' => '^8.9 || ^9',
      'core_compatible' => FALSE,
      'core_compatibility_message' => 'Requires Drupal core: 8.9.0 to 9.0.2',
    ],
    '1.2.4' => [
      'core_compatibility' => '^8.9.2 || ^9',
      'core_compatible' => FALSE,
      'core_compatibility_message' => 'Requires Drupal core: 8.9.2 to 9.0.2',
    ],
    '1.2.6' => [],
  ];
  $test_cases['with 9 full releases, supported']['expected_security_updates'] = [
    '1.2.5' => [
      'core_compatibility' => '8.9.0 || 8.9.2 || ^9.0.1',
      'core_compatible' => FALSE,
      'core_compatibility_message' => 'Requires Drupal core: 8.9.0, 8.9.2, 9.0.1 to 9.0.2',
    ],
  ];
  return $test_cases;
}

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