mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Merged regressiontests and modeltests into the test root.
This commit is contained in:
parent
b3d2ccb5bf
commit
89f40e3624
1050 changed files with 0 additions and 0 deletions
47
tests/bug639/tests.py
Normal file
47
tests/bug639/tests.py
Normal file
|
@ -0,0 +1,47 @@
|
|||
"""
|
||||
Tests for file field behavior, and specifically #639, in which Model.save()
|
||||
gets called *again* for each FileField. This test will fail if calling a
|
||||
ModelForm's save() method causes Model.save() to be called more than once.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
||||
import os
|
||||
import shutil
|
||||
|
||||
from django.core.files.uploadedfile import SimpleUploadedFile
|
||||
from django.utils import unittest
|
||||
from django.utils._os import upath
|
||||
|
||||
from .models import Photo, PhotoForm, temp_storage_dir
|
||||
|
||||
|
||||
class Bug639Test(unittest.TestCase):
|
||||
|
||||
def testBug639(self):
|
||||
"""
|
||||
Simulate a file upload and check how many times Model.save() gets
|
||||
called.
|
||||
"""
|
||||
# Grab an image for testing.
|
||||
filename = os.path.join(os.path.dirname(upath(__file__)), "test.jpg")
|
||||
with open(filename, "rb") as fp:
|
||||
img = fp.read()
|
||||
|
||||
# Fake a POST QueryDict and FILES MultiValueDict.
|
||||
data = {'title': 'Testing'}
|
||||
files = {"image": SimpleUploadedFile('test.jpg', img, 'image/jpeg')}
|
||||
|
||||
form = PhotoForm(data=data, files=files)
|
||||
p = form.save()
|
||||
|
||||
# Check the savecount stored on the object (see the model).
|
||||
self.assertEqual(p._savecount, 1)
|
||||
|
||||
def tearDown(self):
|
||||
"""
|
||||
Make sure to delete the "uploaded" file to avoid clogging /tmp.
|
||||
"""
|
||||
p = Photo.objects.get()
|
||||
p.image.delete(save=False)
|
||||
shutil.rmtree(temp_storage_dir)
|
Loading…
Add table
Add a link
Reference in a new issue