UpdateTestContribCase::testUpdateBaseThemeSecurityUpdate

7 update.test UpdateTestContribCase::testUpdateBaseThemeSecurityUpdate()
8 update.test UpdateTestContribCase::testUpdateBaseThemeSecurityUpdate()

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

File

modules/update/update.test, line 413
Tests for update.module.

Code

function testUpdateBaseThemeSecurityUpdate() {
  // Only enable the subtheme, not the base theme.
  db_update('system')
      ->fields(array('status' => 1))
      ->condition('type', 'theme')
      ->condition('name', 'update_test_subtheme')
      ->execute();

  // 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' => '7.x-1.0', 
      'hidden' => FALSE,
    ),
    // Show the update_test_subtheme 
    'update_test_subtheme' => array(
      'project' => 'update_test_subtheme', 
      'version' => '7.x-1.0', 
      'hidden' => FALSE,
    ),
  );
  variable_set('update_test_system_info', $system_info);
  $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'), t('Link to the Update test base theme project appears.'));
}
Login or register to post comments