1 update.test | UpdateTestContribCase::testUpdateShowDisabledThemes() |
Tests that disabled themes are only shown when desired.
File
- core/
modules/ update/ tests/ update.test, line 490 - This file contains tests for the Update Manager module.
Class
Code
function testUpdateShowDisabledThemes() {
$config = config('update.settings');
// Make sure all the update_test_* themes are disabled.
db_update('system')
->fields(array('status' => 0))
->condition('type', 'theme')
->condition('name', 'update_test_%', 'LIKE')
->execute();
// Define the initial state for core and the test contrib themes.
$system_info = array(
// We want core to be version 1.0.
'#all' => array(
'version' => '1.0',
),
// The update_test_basetheme should be visible and up to date.
'update_test_basetheme' => array(
'project' => 'update_test_basetheme',
'version' => '1.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' => '1.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.
$config->set('update_max_attempts', 99999)->save();
state_set('update_test_system_info', $system_info);
$xml_mapping = array(
'backdrop' => '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) {
$config->set('update_disabled_extensions', $check_disabled)->save();
$this->refreshUpdateStatus($xml_mapping);
if ($check_disabled) {
$this->assertText(t('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('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.');
}
}
}