diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-07-29 02:27:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-07-29 02:27:43 +0000 |
commit | 0de52de6468842f65076f6bbf944f75a86ba6595 (patch) | |
tree | 1ce72bd4759607febe1ddbe8ec22403fd8ec59c2 | |
parent | d2f7ddd8b88bb3010cac6e2b82a3b858eb97c7d9 (diff) | |
download | brdo-0de52de6468842f65076f6bbf944f75a86ba6595.tar.gz brdo-0de52de6468842f65076f6bbf944f75a86ba6595.tar.bz2 |
- Patch #747252 by justinrandell, dhthwy, aspilicious: cannot extract themes and modules.
-rw-r--r-- | includes/common.inc | 21 | ||||
-rw-r--r-- | modules/update/tests/aaa_update_test.tar.gz | bin | 0 -> 383 bytes | |||
-rw-r--r-- | modules/update/update.manager.inc | 19 | ||||
-rw-r--r-- | modules/update/update.test | 41 |
4 files changed, 69 insertions, 12 deletions
diff --git a/includes/common.inc b/includes/common.inc index 725b20b68..9be957332 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -6778,6 +6778,27 @@ function archiver_get_info() { } /** + * Returns a string of supported archive extensions. + * + * @return + * A space-separated string of extensions suitable for use by the file + * validation system. + */ +function archiver_get_extensions() { + $valid_extensions = array(); + foreach (archiver_get_info() as $archive) { + foreach ($archive['extensions'] as $extension) { + foreach (explode('.', $extension) as $part) { + if (!in_array($part, $valid_extensions)) { + $valid_extensions[] = $part; + } + } + } + } + return implode(' ', $valid_extensions); +} + +/** * Create the appropriate archiver for the specified file. * * @param $file diff --git a/modules/update/tests/aaa_update_test.tar.gz b/modules/update/tests/aaa_update_test.tar.gz Binary files differnew file mode 100644 index 000000000..22c971910 --- /dev/null +++ b/modules/update/tests/aaa_update_test.tar.gz diff --git a/modules/update/update.manager.inc b/modules/update/update.manager.inc index 6cd48271e..667ccafc5 100644 --- a/modules/update/update.manager.inc +++ b/modules/update/update.manager.inc @@ -457,17 +457,9 @@ function update_manager_update_ready_form_submit($form, &$form_state) { function update_manager_install_form($form, &$form_state, $context) { $form = array(); - // Collect all the supported archive file extensions for the UI text. - $extensions = array(); - $archiver_info = archiver_get_info(); - foreach ($archiver_info as $info) { - if (!empty($info['extensions'])) { - $extensions += $info['extensions']; - } - } $form['help_text'] = array( '#prefix' => '<p>', - '#markup' => t('To install a new module or theme, either enter the URL of an archive file you wish to install, or upload the archive file that you have downloaded. You can find <a href="@module_url">modules</a> and <a href="@theme_url">themes</a> at <a href="@drupal_org_url">http://drupal.org</a>. The following archive extensions are supported: %extensions', array('@module_url' => 'http://drupal.org/project/modules', '@theme_url' => 'http://drupal.org/project/themes', '@drupal_org_url' => 'http://drupal.org', '%extensions' => implode(', ', $extensions))), + '#markup' => t('To install a new module or theme, either enter the URL of an archive file you wish to install, or upload the archive file that you have downloaded. You can find <a href="@module_url">modules</a> and <a href="@theme_url">themes</a> at <a href="@drupal_org_url">http://drupal.org</a>.<br/>The following archive extensions are supported: %extensions.', array('@module_url' => 'http://drupal.org/project/modules', '@theme_url' => 'http://drupal.org/project/themes', '@drupal_org_url' => 'http://drupal.org', '%extensions' => archiver_get_extensions())), '#suffix' => '</p>', ); @@ -538,10 +530,13 @@ function update_manager_install_form_submit($form, &$form_state) { } } elseif ($_FILES['files']['name']['project_upload']) { + $validators = array('file_validate_extensions' => array(archiver_get_extensions())); $field = 'project_upload'; - // @todo: add some validators here. - $finfo = file_save_upload($field, array(), NULL, FILE_EXISTS_REPLACE); - // @todo: find out if the module is already instealled, if so, throw an error. + if (!($finfo = file_save_upload($field, $validators, NULL, FILE_EXISTS_REPLACE))) { + // Failed to upload the file. file_save_upload() calls form_set_error() on + // failure. + return; + } $local_cache = $finfo->uri; } diff --git a/modules/update/update.test b/modules/update/update.test index 83f76d93f..66f7907fe 100644 --- a/modules/update/update.test +++ b/modules/update/update.test @@ -493,3 +493,44 @@ class UpdateTestContribCase extends UpdateTestHelper { } +class UpdateTestUploadCase extends UpdateTestHelper { + public static function getInfo() { + return array( + 'name' => 'Upload and extract module functionality', + 'description' => 'Tests the update module\'s upload and extraction functionality.', + 'group' => 'Update', + ); + } + + public function setUp() { + parent::setUp('update'); + variable_set('allow_authorize_operations', TRUE); + $admin_user = $this->drupalCreateUser(array('administer software updates', 'administer site configuration')); + $this->drupalLogin($admin_user); + } + + /** + * Tests upload and extraction of a module. + */ + public function testUploadModule() { + // Images are not valid archives, so get one and try to install it. + $invalidArchiveFile = reset($this->drupalGetTestFiles('image')); + $edit = array( + 'files[project_upload]' => $invalidArchiveFile->uri, + ); + // This also checks that the correct archive extensions are allowed. + $this->drupalPost('admin/modules/install', $edit, t('Install')); + $this->assertText(t('Only files with the following extensions are allowed: @archive_extensions.', array('@archive_extensions' => archiver_get_extensions())),'Only valid archives can be uploaded.'); + + // Check to ensure an existing module can't be reinstalled. Also checks that + // the archive was extracted since we can't know if the module is already + // installed until after extraction. + $validArchiveFile = drupal_get_path('module', 'update') . '/tests/aaa_update_test.tar.gz'; + $edit = array( + 'files[project_upload]' => $validArchiveFile, + ); + $this->drupalPost('admin/modules/install', $edit, t('Install')); + $this->assertText(t('@module_name is already installed.', array('@module_name' => 'AAA Update test')), 'Existing module was extracted and not reinstalled.'); + } +} + |