2008-07-20 02:47:59 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
2007-10-20 21:01:40 +08:00
|
|
|
import datetime
|
2009-01-17 05:31:58 +08:00
|
|
|
import tempfile
|
2009-04-06 04:59:20 +08:00
|
|
|
import shutil
|
2007-10-20 21:01:40 +08:00
|
|
|
|
2007-09-15 10:37:07 +08:00
|
|
|
from django.db import models
|
2008-07-20 02:47:59 +08:00
|
|
|
# Can't import as "forms" due to implementation details in the test suite (the
|
2008-07-21 11:50:40 +08:00
|
|
|
# current file is called "forms" and is already imported).
|
2008-07-20 02:47:59 +08:00
|
|
|
from django import forms as django_forms
|
2009-01-17 05:31:58 +08:00
|
|
|
from django.core.files.storage import FileSystemStorage
|
|
|
|
|
|
|
|
temp_storage_location = tempfile.mkdtemp()
|
|
|
|
temp_storage = FileSystemStorage(location=temp_storage_location)
|
2007-09-15 10:37:07 +08:00
|
|
|
|
2007-10-20 21:01:40 +08:00
|
|
|
class BoundaryModel(models.Model):
|
2007-09-15 10:37:07 +08:00
|
|
|
positive_integer = models.PositiveIntegerField(null=True, blank=True)
|
2007-10-20 21:01:40 +08:00
|
|
|
|
|
|
|
class Defaults(models.Model):
|
|
|
|
name = models.CharField(max_length=256, default='class default value')
|
2007-10-23 06:04:00 +08:00
|
|
|
def_date = models.DateField(default = datetime.date(1980, 1, 1))
|
2007-10-20 21:01:40 +08:00
|
|
|
value = models.IntegerField(default=42)
|
|
|
|
|
2007-11-19 04:25:23 +08:00
|
|
|
class ChoiceModel(models.Model):
|
|
|
|
"""For ModelChoiceField and ModelMultipleChoiceField tests."""
|
|
|
|
name = models.CharField(max_length=10)
|
|
|
|
|
2008-07-20 02:47:59 +08:00
|
|
|
class FileModel(models.Model):
|
2009-01-17 05:31:58 +08:00
|
|
|
file = models.FileField(storage=temp_storage, upload_to='tests')
|
2008-07-20 02:47:59 +08:00
|
|
|
|
|
|
|
class FileForm(django_forms.Form):
|
|
|
|
file1 = django_forms.FileField()
|
|
|
|
|
2007-09-15 10:37:07 +08:00
|
|
|
__test__ = {'API_TESTS': """
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
>>> from django.forms.models import ModelForm
|
2008-07-20 02:47:59 +08:00
|
|
|
>>> from django.core.files.uploadedfile import SimpleUploadedFile
|
|
|
|
|
|
|
|
# FileModel with unicode filename and data #########################
|
|
|
|
>>> f = FileForm(data={}, files={'file1': SimpleUploadedFile('我隻氣墊船裝滿晒鱔.txt', 'मेरी मँडराने वाली नाव सर्पमीनों से भरी ह')}, auto_id=False)
|
|
|
|
>>> f.is_valid()
|
|
|
|
True
|
|
|
|
>>> f.cleaned_data
|
|
|
|
{'file1': <SimpleUploadedFile: 我隻氣墊船裝滿晒鱔.txt (text/plain)>}
|
|
|
|
>>> m = FileModel.objects.create(file=f.cleaned_data['file1'])
|
2007-09-15 10:37:07 +08:00
|
|
|
|
2009-04-16 22:26:08 +08:00
|
|
|
# It's enough that m gets created without error. Preservation of the exotic name is checked
|
2009-04-06 04:59:20 +08:00
|
|
|
# in a file_uploads test; it's hard to do that correctly with doctest's unicode issues. So
|
|
|
|
# we create and then immediately delete m so as to not leave the exotically named file around
|
|
|
|
# for shutil.rmtree (on Windows) to have trouble with later.
|
|
|
|
>>> m.delete()
|
|
|
|
|
2007-09-15 10:37:07 +08:00
|
|
|
# Boundary conditions on a PostitiveIntegerField #########################
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
>>> class BoundaryForm(ModelForm):
|
|
|
|
... class Meta:
|
|
|
|
... model = BoundaryModel
|
|
|
|
>>> f = BoundaryForm({'positive_integer': 100})
|
2007-10-20 21:01:40 +08:00
|
|
|
>>> f.is_valid()
|
2007-09-15 10:37:07 +08:00
|
|
|
True
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
>>> f = BoundaryForm({'positive_integer': 0})
|
2007-10-20 21:01:40 +08:00
|
|
|
>>> f.is_valid()
|
2007-09-15 10:37:07 +08:00
|
|
|
True
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
>>> f = BoundaryForm({'positive_integer': -100})
|
2007-10-20 21:01:40 +08:00
|
|
|
>>> f.is_valid()
|
2007-09-15 10:37:07 +08:00
|
|
|
False
|
|
|
|
|
2007-10-20 21:01:40 +08:00
|
|
|
# Formfield initial values ########
|
|
|
|
If the model has default values for some fields, they are used as the formfield
|
|
|
|
initial values.
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
>>> class DefaultsForm(ModelForm):
|
|
|
|
... class Meta:
|
|
|
|
... model = Defaults
|
2007-10-20 21:01:40 +08:00
|
|
|
>>> DefaultsForm().fields['name'].initial
|
|
|
|
u'class default value'
|
2007-10-23 06:04:00 +08:00
|
|
|
>>> DefaultsForm().fields['def_date'].initial
|
2007-10-20 21:01:40 +08:00
|
|
|
datetime.date(1980, 1, 1)
|
|
|
|
>>> DefaultsForm().fields['value'].initial
|
|
|
|
42
|
|
|
|
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
In a ModelForm that is passed an instance, the initial values come from the
|
|
|
|
instance's values, not the model's defaults.
|
|
|
|
>>> foo_instance = Defaults(name=u'instance value', def_date=datetime.date(1969, 4, 4), value=12)
|
|
|
|
>>> instance_form = DefaultsForm(instance=foo_instance)
|
|
|
|
>>> instance_form.initial['name']
|
2007-10-20 21:01:40 +08:00
|
|
|
u'instance value'
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
>>> instance_form.initial['def_date']
|
2007-10-20 21:01:40 +08:00
|
|
|
datetime.date(1969, 4, 4)
|
Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:
* Support for representing files as strings was removed. Use `django.core.files.base.ContentFile` instead.
* Support for representing uploaded files as dictionaries was removed. Use `django.core.files.uploadedfile.SimpleUploadedFile` instead.
* The `filename`, `file_name`, `file_size`, and `chuck` properties of `UploadedFile` were removed. Use the `name`, `name`, `size`, and `chunks` properties instead, respectively.
* The `get_FIELD_filename`, `get_FIELD_url`, `get_FIELD_size`, and `save_FIELD_file` methods for Models with `FileField` fields were removed. Instead, use the `path`, `url`, and `size` attributes and `save` method on the field itself, respectively.
* The `get_FIELD_width` and `get_FIELD_height` methods for Models with `ImageField` fields were removed. Use the `width` and `height` attributes on the field itself instead.
* The dispatcher `connect`, `disconnect`, `send`, and `sendExact` functions were removed. Use the signal object's own `connect`, `disconnect`, `send`, and `send` methods instead, respectively.
* The `form_for_model` and `form_for_instance` functions were removed. Use a `ModelForm` subclass instead.
* Support for importing `django.newforms` was removed. Use `django.forms` instead.
* Support for importing `django.utils.images` was removed. Use `django.core.files.images` instead.
* Support for the `follow` argument in the `create_object` and `update_object` generic views was removed. Use the `django.forms` package and the new `form_class` argument instead.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11 05:10:47 +08:00
|
|
|
>>> instance_form.initial['value']
|
2007-10-20 21:01:40 +08:00
|
|
|
12
|
2009-04-16 22:26:08 +08:00
|
|
|
|
|
|
|
>>> from django.forms import CharField
|
|
|
|
>>> class ExcludingForm(ModelForm):
|
|
|
|
... name = CharField(max_length=256)
|
|
|
|
... class Meta:
|
|
|
|
... model = Defaults
|
|
|
|
... exclude = ['name']
|
|
|
|
>>> f = ExcludingForm({'name': u'Hello', 'value': 99, 'def_date': datetime.date(1999, 3, 2)})
|
|
|
|
>>> f.is_valid()
|
|
|
|
True
|
|
|
|
>>> f.cleaned_data['name']
|
|
|
|
u'Hello'
|
|
|
|
>>> obj = f.save()
|
|
|
|
>>> obj.name
|
|
|
|
u'class default value'
|
|
|
|
>>> obj.value
|
|
|
|
99
|
|
|
|
>>> obj.def_date
|
|
|
|
datetime.date(1999, 3, 2)
|
2009-04-06 04:59:20 +08:00
|
|
|
>>> shutil.rmtree(temp_storage_location)
|
2007-10-20 21:01:40 +08:00
|
|
|
"""}
|