2009-05-08 18:56:51 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-07-30 01:19:04 +08:00
|
|
|
from __future__ import unicode_literals
|
2012-04-05 23:44:04 +08:00
|
|
|
|
2011-05-26 16:21:35 +08:00
|
|
|
import errno
|
2011-10-14 02:51:33 +08:00
|
|
|
import os
|
2008-10-11 06:13:16 +08:00
|
|
|
import shutil
|
2012-09-05 23:05:28 +08:00
|
|
|
import sys
|
2008-10-11 06:13:16 +08:00
|
|
|
import tempfile
|
2009-05-08 18:56:51 +08:00
|
|
|
import time
|
2013-07-01 20:22:27 +08:00
|
|
|
import unittest
|
2012-12-14 00:26:34 +08:00
|
|
|
import zlib
|
2010-10-08 23:11:59 +08:00
|
|
|
from datetime import datetime, timedelta
|
2012-05-06 01:47:03 +08:00
|
|
|
from io import BytesIO
|
2010-11-22 01:51:41 +08:00
|
|
|
|
|
|
|
try:
|
|
|
|
import threading
|
|
|
|
except ImportError:
|
|
|
|
import dummy_threading as threading
|
|
|
|
|
2008-08-28 06:21:14 +08:00
|
|
|
from django.conf import settings
|
2010-12-04 15:28:12 +08:00
|
|
|
from django.core.exceptions import SuspiciousOperation, ImproperlyConfigured
|
2012-04-05 23:44:04 +08:00
|
|
|
from django.core.files.base import File, ContentFile
|
2009-05-08 18:56:51 +08:00
|
|
|
from django.core.files.images import get_image_dimensions
|
2010-09-14 07:15:06 +08:00
|
|
|
from django.core.files.storage import FileSystemStorage, get_storage_class
|
2009-05-08 18:56:51 +08:00
|
|
|
from django.core.files.uploadedfile import UploadedFile
|
2013-06-04 13:55:20 +08:00
|
|
|
from django.test import LiveServerTestCase, SimpleTestCase
|
2013-09-06 03:38:59 +08:00
|
|
|
from django.test.utils import override_settings
|
2012-08-29 15:45:02 +08:00
|
|
|
from django.utils import six
|
2013-09-06 03:38:59 +08:00
|
|
|
from django.utils.six.moves.urllib.request import urlopen
|
2012-12-08 18:13:52 +08:00
|
|
|
from django.utils._os import upath
|
2010-10-11 20:55:17 +08:00
|
|
|
|
2009-05-08 18:56:51 +08:00
|
|
|
try:
|
2013-05-15 10:31:16 +08:00
|
|
|
from django.utils.image import Image
|
|
|
|
except ImproperlyConfigured:
|
|
|
|
Image = None
|
2009-05-08 18:56:51 +08:00
|
|
|
|
2010-11-22 01:51:41 +08:00
|
|
|
|
2011-08-13 08:42:08 +08:00
|
|
|
class GetStorageClassTests(SimpleTestCase):
|
2010-09-14 07:15:06 +08:00
|
|
|
|
|
|
|
def test_get_filesystem_storage(self):
|
|
|
|
"""
|
|
|
|
get_storage_class returns the class for a storage backend name/path.
|
|
|
|
"""
|
|
|
|
self.assertEqual(
|
|
|
|
get_storage_class('django.core.files.storage.FileSystemStorage'),
|
|
|
|
FileSystemStorage)
|
|
|
|
|
|
|
|
def test_get_invalid_storage_module(self):
|
|
|
|
"""
|
|
|
|
get_storage_class raises an error if the requested import don't exist.
|
|
|
|
"""
|
2013-02-05 01:00:19 +08:00
|
|
|
with six.assertRaisesRegex(self, ImproperlyConfigured,
|
|
|
|
"Error importing module storage: \"No module named '?storage'?\""):
|
|
|
|
get_storage_class('storage.NonExistingStorage')
|
2010-09-14 07:15:06 +08:00
|
|
|
|
|
|
|
def test_get_nonexisting_storage_class(self):
|
|
|
|
"""
|
|
|
|
get_storage_class raises an error if the requested class don't exist.
|
|
|
|
"""
|
2011-08-13 08:42:08 +08:00
|
|
|
self.assertRaisesMessage(
|
2010-09-14 07:15:06 +08:00
|
|
|
ImproperlyConfigured,
|
2013-02-03 05:58:02 +08:00
|
|
|
'Module "django.core.files.storage" does not define a '
|
|
|
|
'"NonExistingStorage" attribute/class',
|
2010-09-14 07:15:06 +08:00
|
|
|
get_storage_class,
|
|
|
|
'django.core.files.storage.NonExistingStorage')
|
|
|
|
|
|
|
|
def test_get_nonexisting_storage_module(self):
|
|
|
|
"""
|
|
|
|
get_storage_class raises an error if the requested module don't exist.
|
|
|
|
"""
|
2010-11-12 07:03:53 +08:00
|
|
|
# Error message may or may not be the fully qualified path.
|
2013-02-05 01:00:19 +08:00
|
|
|
with six.assertRaisesRegex(self, ImproperlyConfigured,
|
|
|
|
"Error importing module django.core.files.non_existing_storage: "
|
|
|
|
"\"No module named '?(django.core.files.)?non_existing_storage'?\""):
|
|
|
|
get_storage_class(
|
|
|
|
'django.core.files.non_existing_storage.NonExistingStorage')
|
2010-09-14 07:15:06 +08:00
|
|
|
|
2009-05-08 18:56:51 +08:00
|
|
|
class FileStorageTests(unittest.TestCase):
|
|
|
|
storage_class = FileSystemStorage
|
2010-10-08 23:11:59 +08:00
|
|
|
|
2009-05-08 18:56:51 +08:00
|
|
|
def setUp(self):
|
2011-05-23 07:56:42 +08:00
|
|
|
self.temp_dir = tempfile.mkdtemp()
|
2010-09-14 07:15:06 +08:00
|
|
|
self.storage = self.storage_class(location=self.temp_dir,
|
|
|
|
base_url='/test_media_url/')
|
2011-05-23 07:56:42 +08:00
|
|
|
# Set up a second temporary directory which is ensured to have a mixed
|
|
|
|
# case name.
|
|
|
|
self.temp_dir2 = tempfile.mkdtemp(suffix='aBc')
|
2010-10-08 23:11:59 +08:00
|
|
|
|
2009-05-08 18:56:51 +08:00
|
|
|
def tearDown(self):
|
2010-09-14 07:15:06 +08:00
|
|
|
shutil.rmtree(self.temp_dir)
|
2011-05-23 07:56:42 +08:00
|
|
|
shutil.rmtree(self.temp_dir2)
|
2010-10-08 23:11:59 +08:00
|
|
|
|
2011-09-21 23:58:32 +08:00
|
|
|
def test_emtpy_location(self):
|
|
|
|
"""
|
|
|
|
Makes sure an exception is raised if the location is empty
|
|
|
|
"""
|
|
|
|
storage = self.storage_class(location='')
|
|
|
|
self.assertEqual(storage.base_location, '')
|
2012-12-08 18:13:52 +08:00
|
|
|
self.assertEqual(storage.location, upath(os.getcwd()))
|
2011-09-21 23:58:32 +08:00
|
|
|
|
2009-05-08 18:56:51 +08:00
|
|
|
def test_file_access_options(self):
|
|
|
|
"""
|
|
|
|
Standard file access options are available, and work as expected.
|
|
|
|
"""
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(self.storage.exists('storage_test'))
|
2009-05-08 18:56:51 +08:00
|
|
|
f = self.storage.open('storage_test', 'w')
|
|
|
|
f.write('storage contents')
|
|
|
|
f.close()
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertTrue(self.storage.exists('storage_test'))
|
2009-05-08 18:56:51 +08:00
|
|
|
|
|
|
|
f = self.storage.open('storage_test', 'r')
|
|
|
|
self.assertEqual(f.read(), 'storage contents')
|
|
|
|
f.close()
|
2010-10-08 23:11:59 +08:00
|
|
|
|
2009-05-08 18:56:51 +08:00
|
|
|
self.storage.delete('storage_test')
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(self.storage.exists('storage_test'))
|
2009-05-08 18:56:51 +08:00
|
|
|
|
2010-10-08 23:11:59 +08:00
|
|
|
def test_file_accessed_time(self):
|
|
|
|
"""
|
|
|
|
File storage returns a Datetime object for the last accessed time of
|
|
|
|
a file.
|
|
|
|
"""
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(self.storage.exists('test.file'))
|
2010-10-08 23:11:59 +08:00
|
|
|
|
2012-08-29 16:00:29 +08:00
|
|
|
f = ContentFile('custom contents')
|
2010-10-08 23:11:59 +08:00
|
|
|
f_name = self.storage.save('test.file', f)
|
|
|
|
atime = self.storage.accessed_time(f_name)
|
|
|
|
|
|
|
|
self.assertEqual(atime, datetime.fromtimestamp(
|
|
|
|
os.path.getatime(self.storage.path(f_name))))
|
|
|
|
self.assertTrue(datetime.now() - self.storage.accessed_time(f_name) < timedelta(seconds=2))
|
|
|
|
self.storage.delete(f_name)
|
|
|
|
|
|
|
|
def test_file_created_time(self):
|
|
|
|
"""
|
|
|
|
File storage returns a Datetime object for the creation time of
|
|
|
|
a file.
|
|
|
|
"""
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(self.storage.exists('test.file'))
|
2010-10-08 23:11:59 +08:00
|
|
|
|
2012-08-29 16:00:29 +08:00
|
|
|
f = ContentFile('custom contents')
|
2010-10-08 23:11:59 +08:00
|
|
|
f_name = self.storage.save('test.file', f)
|
|
|
|
ctime = self.storage.created_time(f_name)
|
|
|
|
|
|
|
|
self.assertEqual(ctime, datetime.fromtimestamp(
|
|
|
|
os.path.getctime(self.storage.path(f_name))))
|
|
|
|
self.assertTrue(datetime.now() - self.storage.created_time(f_name) < timedelta(seconds=2))
|
|
|
|
|
|
|
|
self.storage.delete(f_name)
|
|
|
|
|
|
|
|
def test_file_modified_time(self):
|
|
|
|
"""
|
|
|
|
File storage returns a Datetime object for the last modified time of
|
|
|
|
a file.
|
|
|
|
"""
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(self.storage.exists('test.file'))
|
2010-10-08 23:11:59 +08:00
|
|
|
|
2012-08-29 16:00:29 +08:00
|
|
|
f = ContentFile('custom contents')
|
2010-10-08 23:11:59 +08:00
|
|
|
f_name = self.storage.save('test.file', f)
|
|
|
|
mtime = self.storage.modified_time(f_name)
|
|
|
|
|
|
|
|
self.assertEqual(mtime, datetime.fromtimestamp(
|
|
|
|
os.path.getmtime(self.storage.path(f_name))))
|
|
|
|
self.assertTrue(datetime.now() - self.storage.modified_time(f_name) < timedelta(seconds=2))
|
|
|
|
|
|
|
|
self.storage.delete(f_name)
|
|
|
|
|
2010-09-14 07:15:06 +08:00
|
|
|
def test_file_save_without_name(self):
|
|
|
|
"""
|
|
|
|
File storage extracts the filename from the content object if no
|
|
|
|
name is given explicitly.
|
|
|
|
"""
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(self.storage.exists('test.file'))
|
2010-09-14 07:15:06 +08:00
|
|
|
|
2012-08-29 16:00:29 +08:00
|
|
|
f = ContentFile('custom contents')
|
2010-09-14 07:15:06 +08:00
|
|
|
f.name = 'test.file'
|
|
|
|
|
|
|
|
storage_f_name = self.storage.save(None, f)
|
|
|
|
|
|
|
|
self.assertEqual(storage_f_name, f.name)
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertTrue(os.path.exists(os.path.join(self.temp_dir, f.name)))
|
2010-09-14 07:15:06 +08:00
|
|
|
|
|
|
|
self.storage.delete(storage_f_name)
|
|
|
|
|
2011-05-26 16:21:35 +08:00
|
|
|
def test_file_save_with_path(self):
|
|
|
|
"""
|
|
|
|
Saving a pathname should create intermediate directories as necessary.
|
|
|
|
"""
|
|
|
|
self.assertFalse(self.storage.exists('path/to'))
|
|
|
|
self.storage.save('path/to/test.file',
|
2012-08-29 16:00:29 +08:00
|
|
|
ContentFile('file saved with path'))
|
2011-05-26 16:21:35 +08:00
|
|
|
|
|
|
|
self.assertTrue(self.storage.exists('path/to'))
|
2012-08-15 17:04:40 +08:00
|
|
|
with self.storage.open('path/to/test.file') as f:
|
|
|
|
self.assertEqual(f.read(), b'file saved with path')
|
2011-05-26 16:21:35 +08:00
|
|
|
|
|
|
|
self.assertTrue(os.path.exists(
|
|
|
|
os.path.join(self.temp_dir, 'path', 'to', 'test.file')))
|
|
|
|
|
|
|
|
self.storage.delete('path/to/test.file')
|
|
|
|
|
2010-09-14 07:15:06 +08:00
|
|
|
def test_file_path(self):
|
|
|
|
"""
|
|
|
|
File storage returns the full path of a file
|
|
|
|
"""
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(self.storage.exists('test.file'))
|
2010-09-14 07:15:06 +08:00
|
|
|
|
2012-08-29 16:00:29 +08:00
|
|
|
f = ContentFile('custom contents')
|
2010-09-14 07:15:06 +08:00
|
|
|
f_name = self.storage.save('test.file', f)
|
|
|
|
|
|
|
|
self.assertEqual(self.storage.path(f_name),
|
|
|
|
os.path.join(self.temp_dir, f_name))
|
|
|
|
|
|
|
|
self.storage.delete(f_name)
|
|
|
|
|
|
|
|
def test_file_url(self):
|
|
|
|
"""
|
2010-10-09 16:12:50 +08:00
|
|
|
File storage returns a url to access a given file from the Web.
|
2010-09-14 07:15:06 +08:00
|
|
|
"""
|
|
|
|
self.assertEqual(self.storage.url('test.file'),
|
|
|
|
'%s%s' % (self.storage.base_url, 'test.file'))
|
|
|
|
|
2011-02-04 22:43:10 +08:00
|
|
|
# should encode special chars except ~!*()'
|
|
|
|
# like encodeURIComponent() JavaScript function do
|
2012-01-09 03:23:57 +08:00
|
|
|
self.assertEqual(self.storage.url(r"""~!*()'@#$%^&*abc`+ =.file"""),
|
|
|
|
"""/test_media_url/~!*()'%40%23%24%25%5E%26*abc%60%2B%20%3D.file""")
|
2011-02-04 22:43:10 +08:00
|
|
|
|
|
|
|
# should stanslate os path separator(s) to the url path separator
|
|
|
|
self.assertEqual(self.storage.url("""a/b\\c.file"""),
|
|
|
|
"""/test_media_url/a/b/c.file""")
|
|
|
|
|
2010-09-14 07:15:06 +08:00
|
|
|
self.storage.base_url = None
|
|
|
|
self.assertRaises(ValueError, self.storage.url, 'test.file')
|
|
|
|
|
|
|
|
def test_listdir(self):
|
|
|
|
"""
|
|
|
|
File storage returns a tuple containing directories and files.
|
|
|
|
"""
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(self.storage.exists('storage_test_1'))
|
|
|
|
self.assertFalse(self.storage.exists('storage_test_2'))
|
|
|
|
self.assertFalse(self.storage.exists('storage_dir_1'))
|
2010-09-14 07:15:06 +08:00
|
|
|
|
2012-08-29 16:00:29 +08:00
|
|
|
f = self.storage.save('storage_test_1', ContentFile('custom content'))
|
|
|
|
f = self.storage.save('storage_test_2', ContentFile('custom content'))
|
2010-09-14 07:15:06 +08:00
|
|
|
os.mkdir(os.path.join(self.temp_dir, 'storage_dir_1'))
|
|
|
|
|
|
|
|
dirs, files = self.storage.listdir('')
|
2012-06-08 00:08:47 +08:00
|
|
|
self.assertEqual(set(dirs), set(['storage_dir_1']))
|
2010-09-14 07:15:06 +08:00
|
|
|
self.assertEqual(set(files),
|
2012-06-08 00:08:47 +08:00
|
|
|
set(['storage_test_1', 'storage_test_2']))
|
2010-09-14 07:15:06 +08:00
|
|
|
|
|
|
|
self.storage.delete('storage_test_1')
|
|
|
|
self.storage.delete('storage_test_2')
|
|
|
|
os.rmdir(os.path.join(self.temp_dir, 'storage_dir_1'))
|
|
|
|
|
2009-05-08 18:56:51 +08:00
|
|
|
def test_file_storage_prevents_directory_traversal(self):
|
|
|
|
"""
|
|
|
|
File storage prevents directory traversal (files can only be accessed if
|
|
|
|
they're below the storage location).
|
|
|
|
"""
|
|
|
|
self.assertRaises(SuspiciousOperation, self.storage.exists, '..')
|
|
|
|
self.assertRaises(SuspiciousOperation, self.storage.exists, '/etc/passwd')
|
|
|
|
|
2011-05-23 07:56:42 +08:00
|
|
|
def test_file_storage_preserves_filename_case(self):
|
|
|
|
"""The storage backend should preserve case of filenames."""
|
|
|
|
# Create a storage backend associated with the mixed case name
|
|
|
|
# directory.
|
|
|
|
temp_storage = self.storage_class(location=self.temp_dir2)
|
|
|
|
# Ask that storage backend to store a file with a mixed case filename.
|
|
|
|
mixed_case = 'CaSe_SeNsItIvE'
|
|
|
|
file = temp_storage.open(mixed_case, 'w')
|
|
|
|
file.write('storage contents')
|
|
|
|
file.close()
|
|
|
|
self.assertEqual(os.path.join(self.temp_dir2, mixed_case),
|
|
|
|
temp_storage.path(mixed_case))
|
|
|
|
temp_storage.delete(mixed_case)
|
|
|
|
|
2011-05-26 16:21:35 +08:00
|
|
|
def test_makedirs_race_handling(self):
|
|
|
|
"""
|
|
|
|
File storage should be robust against directory creation race conditions.
|
|
|
|
"""
|
2011-05-28 21:06:08 +08:00
|
|
|
real_makedirs = os.makedirs
|
|
|
|
|
2011-05-26 16:21:35 +08:00
|
|
|
# Monkey-patch os.makedirs, to simulate a normal call, a raced call,
|
|
|
|
# and an error.
|
|
|
|
def fake_makedirs(path):
|
|
|
|
if path == os.path.join(self.temp_dir, 'normal'):
|
2011-05-28 21:06:08 +08:00
|
|
|
real_makedirs(path)
|
2011-05-26 16:21:35 +08:00
|
|
|
elif path == os.path.join(self.temp_dir, 'raced'):
|
2011-05-28 21:06:08 +08:00
|
|
|
real_makedirs(path)
|
2011-05-26 16:21:35 +08:00
|
|
|
raise OSError(errno.EEXIST, 'simulated EEXIST')
|
|
|
|
elif path == os.path.join(self.temp_dir, 'error'):
|
|
|
|
raise OSError(errno.EACCES, 'simulated EACCES')
|
|
|
|
else:
|
|
|
|
self.fail('unexpected argument %r' % path)
|
|
|
|
|
|
|
|
try:
|
|
|
|
os.makedirs = fake_makedirs
|
|
|
|
|
|
|
|
self.storage.save('normal/test.file',
|
2012-08-29 16:00:29 +08:00
|
|
|
ContentFile('saved normally'))
|
2012-08-15 17:04:40 +08:00
|
|
|
with self.storage.open('normal/test.file') as f:
|
|
|
|
self.assertEqual(f.read(), b'saved normally')
|
2011-05-26 16:21:35 +08:00
|
|
|
|
|
|
|
self.storage.save('raced/test.file',
|
2012-08-29 16:00:29 +08:00
|
|
|
ContentFile('saved with race'))
|
2012-08-15 17:04:40 +08:00
|
|
|
with self.storage.open('raced/test.file') as f:
|
|
|
|
self.assertEqual(f.read(), b'saved with race')
|
2011-05-26 16:21:35 +08:00
|
|
|
|
|
|
|
# Check that OSErrors aside from EEXIST are still raised.
|
|
|
|
self.assertRaises(OSError,
|
2012-08-29 16:00:29 +08:00
|
|
|
self.storage.save, 'error/test.file', ContentFile('not saved'))
|
2011-05-26 16:21:35 +08:00
|
|
|
finally:
|
|
|
|
os.makedirs = real_makedirs
|
|
|
|
|
2011-05-28 21:06:08 +08:00
|
|
|
def test_remove_race_handling(self):
|
|
|
|
"""
|
|
|
|
File storage should be robust against file removal race conditions.
|
|
|
|
"""
|
|
|
|
real_remove = os.remove
|
|
|
|
|
|
|
|
# Monkey-patch os.remove, to simulate a normal call, a raced call,
|
|
|
|
# and an error.
|
|
|
|
def fake_remove(path):
|
|
|
|
if path == os.path.join(self.temp_dir, 'normal.file'):
|
|
|
|
real_remove(path)
|
|
|
|
elif path == os.path.join(self.temp_dir, 'raced.file'):
|
|
|
|
real_remove(path)
|
|
|
|
raise OSError(errno.ENOENT, 'simulated ENOENT')
|
|
|
|
elif path == os.path.join(self.temp_dir, 'error.file'):
|
|
|
|
raise OSError(errno.EACCES, 'simulated EACCES')
|
|
|
|
else:
|
|
|
|
self.fail('unexpected argument %r' % path)
|
|
|
|
|
|
|
|
try:
|
|
|
|
os.remove = fake_remove
|
|
|
|
|
2012-08-29 16:00:29 +08:00
|
|
|
self.storage.save('normal.file', ContentFile('delete normally'))
|
2011-05-28 21:06:08 +08:00
|
|
|
self.storage.delete('normal.file')
|
|
|
|
self.assertFalse(self.storage.exists('normal.file'))
|
|
|
|
|
2012-08-29 16:00:29 +08:00
|
|
|
self.storage.save('raced.file', ContentFile('delete with race'))
|
2011-05-28 21:06:08 +08:00
|
|
|
self.storage.delete('raced.file')
|
|
|
|
self.assertFalse(self.storage.exists('normal.file'))
|
|
|
|
|
|
|
|
# Check that OSErrors aside from ENOENT are still raised.
|
2012-08-29 16:00:29 +08:00
|
|
|
self.storage.save('error.file', ContentFile('delete with error'))
|
2011-05-28 21:06:08 +08:00
|
|
|
self.assertRaises(OSError, self.storage.delete, 'error.file')
|
|
|
|
finally:
|
|
|
|
os.remove = real_remove
|
|
|
|
|
2012-08-29 21:13:20 +08:00
|
|
|
def test_file_chunks_error(self):
|
|
|
|
"""
|
|
|
|
Test behaviour when file.chunks() is raising an error
|
|
|
|
"""
|
|
|
|
f1 = ContentFile('chunks fails')
|
|
|
|
def failing_chunks():
|
|
|
|
raise IOError
|
|
|
|
f1.chunks = failing_chunks
|
|
|
|
with self.assertRaises(IOError):
|
|
|
|
self.storage.save('error.file', f1)
|
|
|
|
|
2013-06-27 16:59:30 +08:00
|
|
|
def test_delete_no_name(self):
|
|
|
|
"""
|
|
|
|
Calling delete with an empty name should not try to remove the base
|
|
|
|
storage directory, but fail loudly (#20660).
|
|
|
|
"""
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.storage.delete('')
|
|
|
|
|
2011-05-28 21:06:08 +08:00
|
|
|
|
2009-05-08 18:56:51 +08:00
|
|
|
class CustomStorage(FileSystemStorage):
|
|
|
|
def get_available_name(self, name):
|
|
|
|
"""
|
|
|
|
Append numbers to duplicate files rather than underscores, like Trac.
|
|
|
|
"""
|
|
|
|
parts = name.split('.')
|
|
|
|
basename, ext = parts[0], parts[1:]
|
|
|
|
number = 2
|
|
|
|
while self.exists(name):
|
|
|
|
name = '.'.join([basename, str(number)] + ext)
|
|
|
|
number += 1
|
|
|
|
|
|
|
|
return name
|
|
|
|
|
|
|
|
class CustomStorageTests(FileStorageTests):
|
|
|
|
storage_class = CustomStorage
|
2010-10-08 23:11:59 +08:00
|
|
|
|
2009-05-08 18:56:51 +08:00
|
|
|
def test_custom_get_available_name(self):
|
2012-08-29 16:00:29 +08:00
|
|
|
first = self.storage.save('custom_storage', ContentFile('custom contents'))
|
2009-05-08 18:56:51 +08:00
|
|
|
self.assertEqual(first, 'custom_storage')
|
2012-08-29 16:00:29 +08:00
|
|
|
second = self.storage.save('custom_storage', ContentFile('more contents'))
|
2009-05-08 18:56:51 +08:00
|
|
|
self.assertEqual(second, 'custom_storage.2')
|
|
|
|
self.storage.delete(first)
|
|
|
|
self.storage.delete(second)
|
|
|
|
|
|
|
|
class UnicodeFileNameTests(unittest.TestCase):
|
|
|
|
def test_unicode_file_names(self):
|
|
|
|
"""
|
|
|
|
Regression test for #8156: files with unicode names I can't quite figure
|
|
|
|
out the encoding situation between doctest and this file, but the actual
|
|
|
|
repr doesn't matter; it just shouldn't return a unicode object.
|
|
|
|
"""
|
2012-06-08 00:08:47 +08:00
|
|
|
uf = UploadedFile(name='¿Cómo?',content_type='text')
|
2009-05-08 18:56:51 +08:00
|
|
|
self.assertEqual(type(uf.__repr__()), str)
|
|
|
|
|
|
|
|
# Tests for a race condition on file saving (#4948).
|
|
|
|
# This is written in such a way that it'll always pass on platforms
|
|
|
|
# without threading.
|
|
|
|
|
2008-08-12 00:51:18 +08:00
|
|
|
class SlowFile(ContentFile):
|
|
|
|
def chunks(self):
|
|
|
|
time.sleep(1)
|
|
|
|
return super(ContentFile, self).chunks()
|
|
|
|
|
2010-10-11 20:55:17 +08:00
|
|
|
class FileSaveRaceConditionTest(unittest.TestCase):
|
2008-08-12 00:51:18 +08:00
|
|
|
def setUp(self):
|
2008-10-11 06:13:16 +08:00
|
|
|
self.storage_dir = tempfile.mkdtemp()
|
|
|
|
self.storage = FileSystemStorage(self.storage_dir)
|
2008-08-12 00:51:18 +08:00
|
|
|
self.thread = threading.Thread(target=self.save_file, args=['conflict'])
|
2009-05-08 13:50:31 +08:00
|
|
|
|
2008-10-11 06:13:16 +08:00
|
|
|
def tearDown(self):
|
|
|
|
shutil.rmtree(self.storage_dir)
|
2009-05-08 13:50:31 +08:00
|
|
|
|
2008-08-12 00:51:18 +08:00
|
|
|
def save_file(self, name):
|
2012-05-19 23:43:34 +08:00
|
|
|
name = self.storage.save(name, SlowFile(b"Data"))
|
2009-05-08 13:50:31 +08:00
|
|
|
|
2008-08-12 00:51:18 +08:00
|
|
|
def test_race_condition(self):
|
|
|
|
self.thread.start()
|
|
|
|
name = self.save_file('conflict')
|
|
|
|
self.thread.join()
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertTrue(self.storage.exists('conflict'))
|
|
|
|
self.assertTrue(self.storage.exists('conflict_1'))
|
2008-10-11 06:13:16 +08:00
|
|
|
self.storage.delete('conflict')
|
2010-02-24 06:39:22 +08:00
|
|
|
self.storage.delete('conflict_1')
|
2008-08-12 00:51:18 +08:00
|
|
|
|
2012-09-05 23:05:28 +08:00
|
|
|
@unittest.skipIf(sys.platform.startswith('win'), "Windows only partially supports umasks and chmod.")
|
2010-10-11 20:55:17 +08:00
|
|
|
class FileStoragePermissions(unittest.TestCase):
|
2008-08-28 06:21:14 +08:00
|
|
|
def setUp(self):
|
2012-09-05 23:05:28 +08:00
|
|
|
self.umask = 0o027
|
|
|
|
self.old_umask = os.umask(self.umask)
|
2008-10-11 06:13:16 +08:00
|
|
|
self.storage_dir = tempfile.mkdtemp()
|
|
|
|
self.storage = FileSystemStorage(self.storage_dir)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
shutil.rmtree(self.storage_dir)
|
2012-09-05 23:05:28 +08:00
|
|
|
os.umask(self.old_umask)
|
2008-10-11 06:13:16 +08:00
|
|
|
|
2012-09-05 23:05:28 +08:00
|
|
|
@override_settings(FILE_UPLOAD_PERMISSIONS=0o654)
|
2008-08-28 06:21:14 +08:00
|
|
|
def test_file_upload_permissions(self):
|
2012-08-29 16:00:29 +08:00
|
|
|
name = self.storage.save("the_file", ContentFile("data"))
|
2012-07-20 19:28:36 +08:00
|
|
|
actual_mode = os.stat(self.storage.path(name))[0] & 0o777
|
2012-09-05 23:05:28 +08:00
|
|
|
self.assertEqual(actual_mode, 0o654)
|
2008-10-11 06:13:16 +08:00
|
|
|
|
2012-09-05 23:05:28 +08:00
|
|
|
@override_settings(FILE_UPLOAD_PERMISSIONS=None)
|
|
|
|
def test_file_upload_default_permissions(self):
|
|
|
|
fname = self.storage.save("some_file", ContentFile("data"))
|
|
|
|
mode = os.stat(self.storage.path(fname))[0] & 0o777
|
|
|
|
self.assertEqual(mode, 0o666 & ~self.umask)
|
2009-05-08 13:50:31 +08:00
|
|
|
|
2013-05-13 19:38:53 +08:00
|
|
|
@override_settings(FILE_UPLOAD_DIRECTORY_PERMISSIONS=0o765)
|
|
|
|
def test_file_upload_directory_permissions(self):
|
|
|
|
name = self.storage.save("the_directory/the_file", ContentFile("data"))
|
|
|
|
dir_mode = os.stat(os.path.dirname(self.storage.path(name)))[0] & 0o777
|
|
|
|
self.assertEqual(dir_mode, 0o765)
|
|
|
|
|
|
|
|
@override_settings(FILE_UPLOAD_DIRECTORY_PERMISSIONS=None)
|
|
|
|
def test_file_upload_directory_default_permissions(self):
|
|
|
|
name = self.storage.save("the_directory/the_file", ContentFile("data"))
|
|
|
|
dir_mode = os.stat(os.path.dirname(self.storage.path(name)))[0] & 0o777
|
|
|
|
self.assertEqual(dir_mode, 0o777 & ~self.umask)
|
|
|
|
|
2010-10-11 20:55:17 +08:00
|
|
|
class FileStoragePathParsing(unittest.TestCase):
|
2009-05-08 13:50:31 +08:00
|
|
|
def setUp(self):
|
|
|
|
self.storage_dir = tempfile.mkdtemp()
|
|
|
|
self.storage = FileSystemStorage(self.storage_dir)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
shutil.rmtree(self.storage_dir)
|
|
|
|
|
|
|
|
def test_directory_with_dot(self):
|
|
|
|
"""Regression test for #9610.
|
|
|
|
|
|
|
|
If the directory name contains a dot and the file name doesn't, make
|
|
|
|
sure we still mangle the file name instead of the directory name.
|
|
|
|
"""
|
|
|
|
|
2012-08-29 16:00:29 +08:00
|
|
|
self.storage.save('dotted.path/test', ContentFile("1"))
|
|
|
|
self.storage.save('dotted.path/test', ContentFile("2"))
|
2009-05-08 13:50:31 +08:00
|
|
|
|
2010-12-04 15:28:12 +08:00
|
|
|
self.assertFalse(os.path.exists(os.path.join(self.storage_dir, 'dotted_.path')))
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertTrue(os.path.exists(os.path.join(self.storage_dir, 'dotted.path/test')))
|
|
|
|
self.assertTrue(os.path.exists(os.path.join(self.storage_dir, 'dotted.path/test_1')))
|
2009-05-08 13:50:31 +08:00
|
|
|
|
|
|
|
def test_first_character_dot(self):
|
|
|
|
"""
|
|
|
|
File names with a dot as their first character don't have an extension,
|
|
|
|
and the underscore should get added to the end.
|
|
|
|
"""
|
2012-08-29 16:00:29 +08:00
|
|
|
self.storage.save('dotted.path/.test', ContentFile("1"))
|
|
|
|
self.storage.save('dotted.path/.test', ContentFile("2"))
|
2009-05-08 13:50:31 +08:00
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertTrue(os.path.exists(os.path.join(self.storage_dir, 'dotted.path/.test')))
|
2012-03-30 17:20:04 +08:00
|
|
|
self.assertTrue(os.path.exists(os.path.join(self.storage_dir, 'dotted.path/.test_1')))
|
2009-05-08 18:56:51 +08:00
|
|
|
|
2010-10-11 20:55:17 +08:00
|
|
|
class DimensionClosingBug(unittest.TestCase):
|
|
|
|
"""
|
|
|
|
Test that get_image_dimensions() properly closes files (#8817)
|
|
|
|
"""
|
2013-05-15 10:31:16 +08:00
|
|
|
@unittest.skipUnless(Image, "Pillow/PIL not installed")
|
2010-10-11 20:55:17 +08:00
|
|
|
def test_not_closing_of_files(self):
|
|
|
|
"""
|
|
|
|
Open files passed into get_image_dimensions() should stay opened.
|
|
|
|
"""
|
2012-05-06 01:47:03 +08:00
|
|
|
empty_io = BytesIO()
|
2010-10-11 20:55:17 +08:00
|
|
|
try:
|
|
|
|
get_image_dimensions(empty_io)
|
|
|
|
finally:
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertTrue(not empty_io.closed)
|
2010-10-11 20:55:17 +08:00
|
|
|
|
2013-05-15 10:31:16 +08:00
|
|
|
@unittest.skipUnless(Image, "Pillow/PIL not installed")
|
2010-10-11 20:55:17 +08:00
|
|
|
def test_closing_of_filenames(self):
|
|
|
|
"""
|
|
|
|
get_image_dimensions() called with a filename should closed the file.
|
|
|
|
"""
|
|
|
|
# We need to inject a modified open() builtin into the images module
|
|
|
|
# that checks if the file was closed properly if the function is
|
|
|
|
# called with a filename instead of an file object.
|
|
|
|
# get_image_dimensions will call our catching_open instead of the
|
|
|
|
# regular builtin one.
|
|
|
|
|
|
|
|
class FileWrapper(object):
|
|
|
|
_closed = []
|
|
|
|
def __init__(self, f):
|
|
|
|
self.f = f
|
|
|
|
def __getattr__(self, name):
|
|
|
|
return getattr(self.f, name)
|
|
|
|
def close(self):
|
|
|
|
self._closed.append(True)
|
|
|
|
self.f.close()
|
|
|
|
|
|
|
|
def catching_open(*args):
|
|
|
|
return FileWrapper(open(*args))
|
|
|
|
|
|
|
|
from django.core.files import images
|
|
|
|
images.open = catching_open
|
|
|
|
try:
|
2012-12-08 18:13:52 +08:00
|
|
|
get_image_dimensions(os.path.join(os.path.dirname(upath(__file__)), "test1.png"))
|
2010-10-11 20:55:17 +08:00
|
|
|
finally:
|
|
|
|
del images.open
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertTrue(FileWrapper._closed)
|
2010-10-11 20:55:17 +08:00
|
|
|
|
|
|
|
class InconsistentGetImageDimensionsBug(unittest.TestCase):
|
|
|
|
"""
|
|
|
|
Test that get_image_dimensions() works properly after various calls
|
|
|
|
using a file handler (#11158)
|
|
|
|
"""
|
2013-05-15 10:31:16 +08:00
|
|
|
@unittest.skipUnless(Image, "Pillow/PIL not installed")
|
2010-10-11 20:55:17 +08:00
|
|
|
def test_multiple_calls(self):
|
|
|
|
"""
|
|
|
|
Multiple calls of get_image_dimensions() should return the same size.
|
|
|
|
"""
|
|
|
|
from django.core.files.images import ImageFile
|
2010-11-22 01:51:41 +08:00
|
|
|
|
2012-12-08 18:13:52 +08:00
|
|
|
img_path = os.path.join(os.path.dirname(upath(__file__)), "test.png")
|
2013-09-04 01:37:27 +08:00
|
|
|
with open(img_path, 'rb') as file:
|
|
|
|
image = ImageFile(file)
|
|
|
|
image_pil = Image.open(img_path)
|
|
|
|
size_1, size_2 = get_image_dimensions(image), get_image_dimensions(image)
|
2010-10-11 20:55:17 +08:00
|
|
|
self.assertEqual(image_pil.size, size_1)
|
|
|
|
self.assertEqual(size_1, size_2)
|
2011-12-30 22:51:05 +08:00
|
|
|
|
2013-05-15 10:31:16 +08:00
|
|
|
@unittest.skipUnless(Image, "Pillow/PIL not installed")
|
2012-12-14 00:26:34 +08:00
|
|
|
def test_bug_19457(self):
|
|
|
|
"""
|
|
|
|
Regression test for #19457
|
|
|
|
get_image_dimensions fails on some pngs, while Image.size is working good on them
|
|
|
|
"""
|
|
|
|
img_path = os.path.join(os.path.dirname(upath(__file__)), "magic.png")
|
|
|
|
try:
|
|
|
|
size = get_image_dimensions(img_path)
|
|
|
|
except zlib.error:
|
|
|
|
self.fail("Exception raised from get_image_dimensions().")
|
|
|
|
self.assertEqual(size, Image.open(img_path).size)
|
|
|
|
|
|
|
|
|
2011-12-30 22:51:05 +08:00
|
|
|
class ContentFileTestCase(unittest.TestCase):
|
2012-08-29 15:45:02 +08:00
|
|
|
|
2012-12-07 00:14:44 +08:00
|
|
|
def setUp(self):
|
|
|
|
self.storage_dir = tempfile.mkdtemp()
|
|
|
|
self.storage = FileSystemStorage(self.storage_dir)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
shutil.rmtree(self.storage_dir)
|
|
|
|
|
2011-12-30 22:51:05 +08:00
|
|
|
def test_content_file_default_name(self):
|
2012-05-19 23:43:34 +08:00
|
|
|
self.assertEqual(ContentFile(b"content").name, None)
|
2011-12-30 22:51:05 +08:00
|
|
|
|
2012-04-05 23:44:04 +08:00
|
|
|
def test_content_file_custom_name(self):
|
2012-08-29 15:45:02 +08:00
|
|
|
"""
|
|
|
|
Test that the constructor of ContentFile accepts 'name' (#16590).
|
|
|
|
"""
|
2011-12-30 22:51:05 +08:00
|
|
|
name = "I can have a name too!"
|
2012-05-19 23:43:34 +08:00
|
|
|
self.assertEqual(ContentFile(b"content", name=name).name, name)
|
2012-04-05 23:44:04 +08:00
|
|
|
|
2012-08-29 15:45:02 +08:00
|
|
|
def test_content_file_input_type(self):
|
|
|
|
"""
|
|
|
|
Test that ContentFile can accept both bytes and unicode and that the
|
|
|
|
retrieved content is of the same type.
|
|
|
|
"""
|
2013-05-21 17:42:15 +08:00
|
|
|
self.assertIsInstance(ContentFile(b"content").read(), bytes)
|
2012-12-07 00:14:44 +08:00
|
|
|
if six.PY3:
|
2013-05-21 17:42:15 +08:00
|
|
|
self.assertIsInstance(ContentFile("español").read(), six.text_type)
|
2012-12-07 00:14:44 +08:00
|
|
|
else:
|
2013-05-21 17:42:15 +08:00
|
|
|
self.assertIsInstance(ContentFile("español").read(), bytes)
|
2012-12-07 00:14:44 +08:00
|
|
|
|
|
|
|
def test_content_saving(self):
|
|
|
|
"""
|
|
|
|
Test that ContentFile can be saved correctly with the filesystem storage,
|
|
|
|
both if it was initialized with string or unicode content"""
|
|
|
|
self.storage.save('bytes.txt', ContentFile(b"content"))
|
|
|
|
self.storage.save('unicode.txt', ContentFile("español"))
|
|
|
|
|
2012-08-29 15:45:02 +08:00
|
|
|
|
2012-04-05 23:44:04 +08:00
|
|
|
class NoNameFileTestCase(unittest.TestCase):
|
|
|
|
"""
|
|
|
|
Other examples of unnamed files may be tempfile.SpooledTemporaryFile or
|
|
|
|
urllib.urlopen()
|
|
|
|
"""
|
|
|
|
def test_noname_file_default_name(self):
|
2012-05-06 01:47:03 +08:00
|
|
|
self.assertEqual(File(BytesIO(b'A file with no name')).name, None)
|
2012-04-05 23:44:04 +08:00
|
|
|
|
|
|
|
def test_noname_file_get_size(self):
|
2012-05-06 01:47:03 +08:00
|
|
|
self.assertEqual(File(BytesIO(b'A file with no name')).size, 19)
|
2012-04-05 23:44:04 +08:00
|
|
|
|
2013-06-04 13:55:20 +08:00
|
|
|
|
|
|
|
class FileLikeObjectTestCase(LiveServerTestCase):
|
2012-04-05 23:44:04 +08:00
|
|
|
"""
|
|
|
|
Test file-like objects (#15644).
|
|
|
|
"""
|
2013-06-04 14:09:29 +08:00
|
|
|
|
|
|
|
available_apps = []
|
2013-06-04 13:55:20 +08:00
|
|
|
urls = 'file_storage.urls'
|
|
|
|
|
2012-04-05 23:44:04 +08:00
|
|
|
def setUp(self):
|
|
|
|
self.temp_dir = tempfile.mkdtemp()
|
|
|
|
self.storage = FileSystemStorage(location=self.temp_dir)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
shutil.rmtree(self.temp_dir)
|
|
|
|
|
|
|
|
def test_urllib2_urlopen(self):
|
|
|
|
"""
|
|
|
|
Test the File storage API with a file like object coming from urllib2.urlopen()
|
|
|
|
"""
|
2013-06-04 13:55:20 +08:00
|
|
|
file_like_object = urlopen(self.live_server_url + '/')
|
2012-04-05 23:44:04 +08:00
|
|
|
f = File(file_like_object)
|
|
|
|
stored_filename = self.storage.save("remote_file.html", f)
|
|
|
|
|
2013-06-04 13:55:20 +08:00
|
|
|
remote_file = urlopen(self.live_server_url + '/')
|
2013-02-24 20:10:42 +08:00
|
|
|
with self.storage.open(stored_filename) as stored_file:
|
|
|
|
self.assertEqual(stored_file.read(), remote_file.read())
|