2008-08-28 23:43:04 +08:00
|
|
|
"""
|
|
|
|
Tests of ModelAdmin validation logic.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
|
2009-10-20 03:17:07 +08:00
|
|
|
|
2009-05-03 21:39:33 +08:00
|
|
|
class Album(models.Model):
|
|
|
|
title = models.CharField(max_length=150)
|
|
|
|
|
2009-10-20 03:17:07 +08:00
|
|
|
|
2008-08-28 23:43:04 +08:00
|
|
|
class Song(models.Model):
|
|
|
|
title = models.CharField(max_length=150)
|
2009-05-03 21:39:33 +08:00
|
|
|
album = models.ForeignKey(Album)
|
|
|
|
|
2008-08-28 23:43:04 +08:00
|
|
|
class Meta:
|
|
|
|
ordering = ('title',)
|
2009-05-03 21:39:33 +08:00
|
|
|
|
2008-08-28 23:43:04 +08:00
|
|
|
def __unicode__(self):
|
|
|
|
return self.title
|
|
|
|
|
2009-10-20 03:17:07 +08:00
|
|
|
|
|
|
|
class Model11709(models.Model):
|
|
|
|
album1 = models.ForeignKey(Album, related_name="album1_set")
|
|
|
|
album2 = models.ForeignKey(Album, related_name="album2_set")
|
|
|
|
e = models.CharField(max_length=1)
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-08-28 23:43:04 +08:00
|
|
|
__test__ = {'API_TESTS':"""
|
|
|
|
|
|
|
|
>>> from django import forms
|
|
|
|
>>> from django.contrib import admin
|
2009-10-20 03:17:07 +08:00
|
|
|
>>> from django.contrib.admin.validation import validate, validate_inline
|
2008-08-28 23:43:04 +08:00
|
|
|
|
|
|
|
# Regression test for #8027: custom ModelForms with fields/fieldsets
|
|
|
|
|
|
|
|
>>> class SongForm(forms.ModelForm):
|
|
|
|
... pass
|
|
|
|
|
|
|
|
>>> class ValidFields(admin.ModelAdmin):
|
|
|
|
... form = SongForm
|
|
|
|
... fields = ['title']
|
|
|
|
|
|
|
|
>>> class InvalidFields(admin.ModelAdmin):
|
|
|
|
... form = SongForm
|
|
|
|
... fields = ['spam']
|
|
|
|
|
|
|
|
>>> validate(ValidFields, Song)
|
|
|
|
>>> validate(InvalidFields, Song)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
ImproperlyConfigured: 'InvalidFields.fields' refers to field 'spam' that is missing from the form.
|
|
|
|
|
2009-05-03 21:39:33 +08:00
|
|
|
# Regression test for #9932 - exclude in InlineModelAdmin
|
|
|
|
# should not contain the ForeignKey field used in ModelAdmin.model
|
|
|
|
|
|
|
|
>>> class SongInline(admin.StackedInline):
|
|
|
|
... model = Song
|
|
|
|
... exclude = ['album']
|
|
|
|
|
|
|
|
>>> class AlbumAdmin(admin.ModelAdmin):
|
|
|
|
... model = Album
|
|
|
|
... inlines = [SongInline]
|
|
|
|
|
|
|
|
>>> validate(AlbumAdmin, Album)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
ImproperlyConfigured: SongInline cannot exclude the field 'album' - this is the foreign key to the parent model Album.
|
|
|
|
|
2009-10-20 03:17:07 +08:00
|
|
|
# Regression test for #11709 - when testing for fk excluding (when exclude is
|
|
|
|
# given) make sure fk_name is honored or things blow up when there is more
|
|
|
|
# than one fk to the parent model.
|
|
|
|
|
|
|
|
>>> class Model11709Inline(admin.TabularInline):
|
|
|
|
... model = Model11709
|
|
|
|
... exclude = ("e",)
|
|
|
|
... fk_name = "album1"
|
|
|
|
|
|
|
|
>>> validate_inline(Model11709Inline, None, Album)
|
|
|
|
|
2008-08-28 23:43:04 +08:00
|
|
|
"""}
|