function ModulesListFormTest::testModuleVersionDependencies

Test module checkboxes for various version dependencies.

File

core/modules/system/tests/src/Kernel/Module/ModulesListFormTest.php, line 29

Class

ModulesListFormTest
Tests the modules list form.

Namespace

Drupal\Tests\system\Kernel\Module

Code

public function testModuleVersionDependencies() : void {
  $dependencies = [
    // Alternating between being compatible and incompatible with
    // 8.x-2.4-beta3.
    // The first is always a compatible.
'common_test',
    // Branch incompatibility.
'common_test (1.x)',
    // Branch compatibility.
'common_test (2.x)',
    // Another branch incompatibility.
'common_test (>2.x)',
    // Another branch compatibility.
'common_test (<=2.x)',
    // Another branch incompatibility.
'common_test (<2.x)',
    // Another branch compatibility.
'common_test (>=2.x)',
    // Nonsense, misses a dash. Incompatible with everything.
'common_test (=8.x2.x, >=2.4)',
    // Core version is optional. Compatible.
'common_test (=8.x-2.x, >=2.4-alpha2)',
    // Test !=, explicitly incompatible.
'common_test (=2.x, !=2.4-beta3)',
    // Three operations. Compatible.
'common_test (=2.x, !=2.3, <2.5)',
    // Testing extra version. Incompatible.
'common_test (<=2.4-beta2)',
    // Testing extra version. Compatible.
'common_test (>2.4-beta2)',
    // Testing extra version. Incompatible.
'common_test (>2.4-rc0)',
  ];
  foreach ($dependencies as $i => $dependency) {
    \Drupal::state()->set('system_test.dependency', $dependency);
    $form_object = ModulesListForm::create($this->container);
    $form = $form_object->buildForm([], new FormState());
    $disabled = $form['modules']['Testing']['module_test']['enable']['#disabled'];
    if ($i % 2 === 0) {
      $this->assertFalse($disabled);
    }
    else {
      $this->assertTrue($disabled);
    }
  }
}

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