function UpdateContribTest::testUpdateShowDisabledThemes

Tests that disabled themes are only shown when desired.

File

drupal/core/modules/update/lib/Drupal/update/Tests/UpdateContribTest.php, line 204
Definition of Drupal\update\Tests\UpdateContribTest.

Class

UpdateContribTest
Tests behavior related to handling updates to contributed modules and themes.

Namespace

Drupal\update\Tests

Code

function testUpdateShowDisabledThemes() {
  $update_settings = config('update.settings');

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

  // Define the initial state for core and the test contrib themes.
  $system_info = array(
    // We want core to be version 7.0.
    '#all' => array(
      'version' => '7.0',
    ),
    // The update_test_basetheme should be visible and up to date.
    'update_test_basetheme' => array(
      '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' => array(
      '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();
  config('update_test.settings')
    ->set('system_info', $system_info)
    ->save();
  $xml_mapping = array(
    'drupal' => '0',
    'update_test_subtheme' => '1_0',
    'update_test_basetheme' => '1_1-sec',
  );
  $base_theme_project_link = l(t('Update test base theme'), 'http://example.com/project/update_test_basetheme');
  $sub_theme_project_link = l(t('Update test subtheme'), 'http://example.com/project/update_test_subtheme');
  foreach (array(
    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 enabled themes.
    $this
      ->assertNoText(t('Themes'));
    if ($check_disabled) {
      $this
        ->assertText(t('Disabled themes'));
      $this
        ->assertRaw($base_theme_project_link, 'Link to the Update test base theme project appears.');
      $this
        ->assertRaw($sub_theme_project_link, 'Link to the Update test subtheme project appears.');
    }
    else {
      $this
        ->assertNoText(t('Disabled themes'));
      $this
        ->assertNoRaw($base_theme_project_link, 'Link to the Update test base theme project does not appear.');
      $this
        ->assertNoRaw($sub_theme_project_link, 'Link to the Update test subtheme project does not appear.');
    }
  }
}