You are here

public function UpdateContribTest::testUpdateShowDisabledThemes in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/update/tests/src/Functional/UpdateContribTest.php \Drupal\Tests\update\Functional\UpdateContribTest::testUpdateShowDisabledThemes()
  2. 9 core/modules/update/tests/src/Functional/UpdateContribTest.php \Drupal\Tests\update\Functional\UpdateContribTest::testUpdateShowDisabledThemes()

Tests that disabled themes are only shown when desired.

@todo https://www.drupal.org/node/2338175 extensions can not be hidden and base themes have to be installed.

File

core/modules/update/tests/src/Functional/UpdateContribTest.php, line 352

Class

UpdateContribTest
Tests how the Update Manager module handles contributed modules and themes in a series of functional tests using mock XML data.

Namespace

Drupal\Tests\update\Functional

Code

public function testUpdateShowDisabledThemes() {
  $update_settings = $this
    ->config('update.settings');

  // Make sure all the update_test_* themes are disabled.
  $extension_config = $this
    ->config('core.extension');
  foreach ($extension_config
    ->get('theme') as $theme => $weight) {
    if (preg_match('/^update_test_/', $theme)) {
      $extension_config
        ->clear("theme.{$theme}");
    }
  }
  $extension_config
    ->save();

  // Define the initial state for core and the test contrib themes.
  $system_info = [
    // We want core to be version 8.0.0.
    '#all' => [
      'version' => '8.0.0',
    ],
    // The update_test_basetheme should be visible and up to date.
    'update_test_basetheme' => [
      'project' => 'update_test_basetheme',
      'version' => '8.x-1.1',
      'hidden' => FALSE,
    ],
    // The update_test_subtheme should be visible and up to date.
    'update_test_subtheme' => [
      'project' => 'update_test_subtheme',
      'version' => '8.x-1.0',
      'hidden' => FALSE,
    ],
  ];

  // When there are contributed modules in the site's file system, the
  // total number of attempts made in the test may exceed the default value
  // of update_max_fetch_attempts. Therefore this variable is set very high
  // to avoid test failures in those cases.
  $update_settings
    ->set('fetch.max_attempts', 99999)
    ->save();
  $this
    ->config('update_test.settings')
    ->set('system_info', $system_info)
    ->save();
  $xml_mapping = [
    'drupal' => '0.0',
    'update_test_subtheme' => '1_0',
    'update_test_basetheme' => '1_1-sec',
  ];
  foreach ([
    TRUE,
    FALSE,
  ] as $check_disabled) {
    $update_settings
      ->set('check.disabled_extensions', $check_disabled)
      ->save();
    $this
      ->refreshUpdateStatus($xml_mapping);

    // In neither case should we see the "Themes" heading for installed
    // themes.
    // Use regex pattern because we need to match 'Themes' case sensitively.
    $this
      ->assertSession()
      ->pageTextNotMatches('/Themes/');
    if ($check_disabled) {
      $this
        ->assertSession()
        ->pageTextContains('Uninstalled themes');
      $this
        ->assertSession()
        ->linkExists('Update test base theme');
      $this
        ->assertSession()
        ->linkByHrefExists('http://example.com/project/update_test_basetheme');
      $this
        ->assertSession()
        ->linkExists('Update test subtheme');
      $this
        ->assertSession()
        ->linkByHrefExists('http://example.com/project/update_test_subtheme');
    }
    else {
      $this
        ->assertSession()
        ->pageTextNotContains('Uninstalled themes');
      $this
        ->assertSession()
        ->linkNotExists('Update test base theme');
      $this
        ->assertSession()
        ->linkByHrefNotExists('http://example.com/project/update_test_basetheme');
      $this
        ->assertSession()
        ->linkNotExists('Update test subtheme');
      $this
        ->assertSession()
        ->linkByHrefNotExists('http://example.com/project/update_test_subtheme');
    }
  }
}