function UpdateContribTest::testUpdateBaseThemeSecurityUpdate

Tests that subthemes are notified about security updates for base themes.

File

drupal/core/modules/update/lib/Drupal/update/Tests/UpdateContribTest.php, line 167
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 testUpdateBaseThemeSecurityUpdate() {

  // Only enable the subtheme, not the base theme.
  theme_enable(array(
    'update_test_subtheme',
  ));

  // Define the initial state for core and the subtheme.
  $system_info = array(
    // We want core to be version 7.0.
    '#all' => array(
      'version' => '7.0',
    ),
    // Show the update_test_basetheme
    'update_test_basetheme' => array(
      'project' => 'update_test_basetheme',
      'version' => '8.x-1.0',
      'hidden' => FALSE,
    ),
    // Show the update_test_subtheme
    'update_test_subtheme' => array(
      'project' => 'update_test_subtheme',
      'version' => '8.x-1.0',
      'hidden' => FALSE,
    ),
  );
  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',
  );
  $this
    ->refreshUpdateStatus($xml_mapping);
  $this
    ->assertText(t('Security update required!'));
  $this
    ->assertRaw(l(t('Update test base theme'), 'http://example.com/project/update_test_basetheme'), 'Link to the Update test base theme project appears.');
}