summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/upgrade/drupal-6.upload.database.php
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-04-26 11:33:42 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2012-04-26 11:33:42 -0700
commit6af9c29d6338cb634906b48819ea2840fe15ff3f (patch)
tree0a4e1311858e8b9dd00f6ab4dd8f377013da8e08 /modules/simpletest/tests/upgrade/drupal-6.upload.database.php
parent3a928db5053d17b36d73af9689059e4be5b8dcb6 (diff)
downloadbrdo-6af9c29d6338cb634906b48819ea2840fe15ff3f.tar.gz
brdo-6af9c29d6338cb634906b48819ea2840fe15ff3f.tar.bz2
Issue #1542854 by drumm, BTMash: Fixed system_update_7061() converts filepaths too aggressively.
Diffstat (limited to 'modules/simpletest/tests/upgrade/drupal-6.upload.database.php')
-rw-r--r--modules/simpletest/tests/upgrade/drupal-6.upload.database.php25
1 files changed, 23 insertions, 2 deletions
diff --git a/modules/simpletest/tests/upgrade/drupal-6.upload.database.php b/modules/simpletest/tests/upgrade/drupal-6.upload.database.php
index 493483f3d..c7f032ecb 100644
--- a/modules/simpletest/tests/upgrade/drupal-6.upload.database.php
+++ b/modules/simpletest/tests/upgrade/drupal-6.upload.database.php
@@ -114,6 +114,19 @@ db_insert('files')->fields(array(
'status' => '1',
'timestamp' => '1285708957',
))
+/*
+ * This is a case where the path is repeated twice.
+ */
+->values(array(
+ 'fid' => '11',
+ 'uid' => '1',
+ 'filename' => 'crazy-basename.png',
+ 'filepath' => '/drupal-6/file/directory/path/drupal-6/file/directory/path/crazy-basename.png',
+ 'filemime' => 'image/png',
+ 'filesize' => '329',
+ 'status' => '1',
+ 'timestamp' => '1285708958',
+))
->execute();
db_insert('node')->fields(array(
@@ -235,8 +248,8 @@ db_insert('node_revisions')->fields(array(
'vid' => '53',
'uid' => '1',
'title' => 'node title 40 revision 53',
- 'body' => "Attachments:\r\nforum-hot-new.png\r\nforum-hot.png\r\nforum-sticky.png\r\nforum-new.png",
- 'teaser' => "Attachments:\r\nforum-hot-new.png\r\nforum-hot.png\r\nforum-sticky.png\r\nforum-new.png",
+ 'body' => "Attachments:\r\nforum-hot-new.png\r\nforum-hot.png\r\nforum-sticky.png\r\nforum-new.png\r\ncrazy-basename.png",
+ 'teaser' => "Attachments:\r\nforum-hot-new.png\r\nforum-hot.png\r\nforum-sticky.png\r\nforum-new.png\r\ncrazy-basename.png",
'log' => '',
'timestamp' => '1285709012',
'format' => '1',
@@ -394,4 +407,12 @@ db_insert('upload')->fields(array(
'list' => '1',
'weight' => '-1',
))
+->values(array(
+ 'fid' => '11',
+ 'nid' => '40',
+ 'vid' => '53',
+ 'description' => 'crazy-basename.png',
+ 'list' => '1',
+ 'weight' => '0',
+))
->execute();