mirror of https://github.com/django/django.git
Close file after tests added in 945e033a69
.
Avoids failures on Windows. Refs #8918.
This commit is contained in:
parent
1ac534a92f
commit
8ab5f1fe47
|
@ -65,6 +65,7 @@ class FileStorageTests(TestCase):
|
||||||
obj2.normal.save("django_test.txt", ContentFile("more content"))
|
obj2.normal.save("django_test.txt", ContentFile("more content"))
|
||||||
self.assertEqual(obj2.normal.name, "tests/django_test_1.txt")
|
self.assertEqual(obj2.normal.name, "tests/django_test_1.txt")
|
||||||
self.assertEqual(obj2.normal.size, 12)
|
self.assertEqual(obj2.normal.size, 12)
|
||||||
|
obj2.normal.close()
|
||||||
|
|
||||||
# Push the objects into the cache to make sure they pickle properly
|
# Push the objects into the cache to make sure they pickle properly
|
||||||
cache.set("obj1", obj1)
|
cache.set("obj1", obj1)
|
||||||
|
@ -75,6 +76,7 @@ class FileStorageTests(TestCase):
|
||||||
obj2.delete()
|
obj2.delete()
|
||||||
obj2.normal.save("django_test.txt", ContentFile("more content"))
|
obj2.normal.save("django_test.txt", ContentFile("more content"))
|
||||||
self.assertEqual(obj2.normal.name, "tests/django_test_2.txt")
|
self.assertEqual(obj2.normal.name, "tests/django_test_2.txt")
|
||||||
|
obj2.normal.close()
|
||||||
|
|
||||||
# Multiple files with the same name get _N appended to them.
|
# Multiple files with the same name get _N appended to them.
|
||||||
objs = [Storage() for i in range(3)]
|
objs = [Storage() for i in range(3)]
|
||||||
|
@ -105,12 +107,14 @@ class FileStorageTests(TestCase):
|
||||||
obj4 = Storage()
|
obj4 = Storage()
|
||||||
obj4.random.save("random_file", ContentFile("random content"))
|
obj4.random.save("random_file", ContentFile("random content"))
|
||||||
self.assertTrue(obj4.random.name.endswith("/random_file"))
|
self.assertTrue(obj4.random.name.endswith("/random_file"))
|
||||||
|
obj4.random.close()
|
||||||
|
|
||||||
# upload_to can be empty, meaning it does not use subdirectory.
|
# upload_to can be empty, meaning it does not use subdirectory.
|
||||||
obj5 = Storage()
|
obj5 = Storage()
|
||||||
obj5.empty.save('django_test.txt', ContentFile('more content'))
|
obj5.empty.save('django_test.txt', ContentFile('more content'))
|
||||||
self.assertEqual(obj5.empty.name, "./django_test.txt")
|
self.assertEqual(obj5.empty.name, "./django_test.txt")
|
||||||
self.assertEqual(obj5.empty.read(), b"more content")
|
self.assertEqual(obj5.empty.read(), b"more content")
|
||||||
|
obj5.empty.close()
|
||||||
|
|
||||||
def test_file_object(self):
|
def test_file_object(self):
|
||||||
# Create sample file
|
# Create sample file
|
||||||
|
|
Loading…
Reference in New Issue