12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685 |
- from __future__ import unicode_literals
- from datetime import date
- from django import forms
- from django.contrib.admin import BooleanFieldListFilter, SimpleListFilter
- from django.contrib.admin.options import (
- HORIZONTAL, VERTICAL, ModelAdmin, TabularInline,
- )
- from django.contrib.admin.sites import AdminSite
- from django.contrib.admin.widgets import AdminDateWidget, AdminRadioSelect
- from django.core.checks import Error
- from django.forms.models import BaseModelFormSet
- from django.forms.widgets import Select
- from django.test import SimpleTestCase, TestCase
- from django.utils import six
- from .models import (
- Band, Concert, ValidationTestInlineModel, ValidationTestModel,
- )
- class MockRequest(object):
- pass
- class MockSuperUser(object):
- def has_perm(self, perm):
- return True
- request = MockRequest()
- request.user = MockSuperUser()
- class ModelAdminTests(TestCase):
- def setUp(self):
- self.band = Band.objects.create(
- name='The Doors',
- bio='',
- sign_date=date(1965, 1, 1),
- )
- self.site = AdminSite()
- # form/fields/fieldsets interaction ##############################
- def test_default_fields(self):
- ma = ModelAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['name', 'bio', 'sign_date'])
- self.assertEqual(list(ma.get_fields(request)), ['name', 'bio', 'sign_date'])
- self.assertEqual(list(ma.get_fields(request, self.band)), ['name', 'bio', 'sign_date'])
- def test_default_fieldsets(self):
- # fieldsets_add and fieldsets_change should return a special data structure that
- # is used in the templates. They should generate the "right thing" whether we
- # have specified a custom form, the fields argument, or nothing at all.
- #
- # Here's the default case. There are no custom form_add/form_change methods,
- # no fields argument, and no fieldsets argument.
- ma = ModelAdmin(Band, self.site)
- self.assertEqual(ma.get_fieldsets(request), [(None, {'fields': ['name', 'bio', 'sign_date']})])
- self.assertEqual(ma.get_fieldsets(request, self.band), [(None, {'fields': ['name', 'bio', 'sign_date']})])
- def test_get_fieldsets(self):
- # Test that get_fieldsets is called when figuring out form fields.
- # Refs #18681.
- class BandAdmin(ModelAdmin):
- def get_fieldsets(self, request, obj=None):
- return [(None, {'fields': ['name', 'bio']})]
- ma = BandAdmin(Band, self.site)
- form = ma.get_form(None)
- self.assertEqual(form._meta.fields, ['name', 'bio'])
- class InlineBandAdmin(TabularInline):
- model = Concert
- fk_name = 'main_band'
- can_delete = False
- def get_fieldsets(self, request, obj=None):
- return [(None, {'fields': ['day', 'transport']})]
- ma = InlineBandAdmin(Band, self.site)
- form = ma.get_formset(None).form
- self.assertEqual(form._meta.fields, ['day', 'transport'])
- def test_lookup_allowed_allows_nonexistent_lookup(self):
- """
- Ensure that a lookup_allowed allows a parameter
- whose field lookup doesn't exist.
- Refs #21129.
- """
- class BandAdmin(ModelAdmin):
- fields = ['name']
- ma = BandAdmin(Band, self.site)
- self.assertTrue(ma.lookup_allowed('name__nonexistent', 'test_value'))
- def test_field_arguments(self):
- # If we specify the fields argument, fieldsets_add and fieldsets_change should
- # just stick the fields into a formsets structure and return it.
- class BandAdmin(ModelAdmin):
- fields = ['name']
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_fields(request)), ['name'])
- self.assertEqual(list(ma.get_fields(request, self.band)), ['name'])
- self.assertEqual(ma.get_fieldsets(request), [(None, {'fields': ['name']})])
- self.assertEqual(ma.get_fieldsets(request, self.band), [(None, {'fields': ['name']})])
- def test_field_arguments_restricted_on_form(self):
- # If we specify fields or fieldsets, it should exclude fields on the Form class
- # to the fields specified. This may cause errors to be raised in the db layer if
- # required model fields aren't in fields/fieldsets, but that's preferable to
- # ghost errors where you have a field in your Form class that isn't being
- # displayed because you forgot to add it to fields/fieldsets
- # Using `fields`.
- class BandAdmin(ModelAdmin):
- fields = ['name']
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['name'])
- self.assertEqual(list(ma.get_form(request, self.band).base_fields), ['name'])
- # Using `fieldsets`.
- class BandAdmin(ModelAdmin):
- fieldsets = [(None, {'fields': ['name']})]
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['name'])
- self.assertEqual(list(ma.get_form(request, self.band).base_fields), ['name'])
- # Using `exclude`.
- class BandAdmin(ModelAdmin):
- exclude = ['bio']
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['name', 'sign_date'])
- # You can also pass a tuple to `exclude`.
- class BandAdmin(ModelAdmin):
- exclude = ('bio',)
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['name', 'sign_date'])
- # Using `fields` and `exclude`.
- class BandAdmin(ModelAdmin):
- fields = ['name', 'bio']
- exclude = ['bio']
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['name'])
- def test_custom_form_meta_exclude_with_readonly(self):
- """
- Ensure that the custom ModelForm's `Meta.exclude` is respected when
- used in conjunction with `ModelAdmin.readonly_fields` and when no
- `ModelAdmin.exclude` is defined.
- Refs #14496.
- """
- # First, with `ModelAdmin` -----------------------
- class AdminBandForm(forms.ModelForm):
- class Meta:
- model = Band
- exclude = ['bio']
- class BandAdmin(ModelAdmin):
- readonly_fields = ['name']
- form = AdminBandForm
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['sign_date'])
- # Then, with `InlineModelAdmin` -----------------
- class AdminConcertForm(forms.ModelForm):
- class Meta:
- model = Concert
- exclude = ['day']
- class ConcertInline(TabularInline):
- readonly_fields = ['transport']
- form = AdminConcertForm
- fk_name = 'main_band'
- model = Concert
- class BandAdmin(ModelAdmin):
- inlines = [
- ConcertInline
- ]
- ma = BandAdmin(Band, self.site)
- self.assertEqual(
- list(list(ma.get_formsets_with_inlines(request))[0][0]().forms[0].fields),
- ['main_band', 'opening_band', 'id', 'DELETE'])
- def test_custom_formfield_override_readonly(self):
- class AdminBandForm(forms.ModelForm):
- name = forms.CharField()
- class Meta:
- exclude = tuple()
- model = Band
- class BandAdmin(ModelAdmin):
- form = AdminBandForm
- readonly_fields = ['name']
- ma = BandAdmin(Band, self.site)
- # `name` shouldn't appear in base_fields because it's part of
- # readonly_fields.
- self.assertEqual(
- list(ma.get_form(request).base_fields),
- ['bio', 'sign_date']
- )
- # But it should appear in get_fields()/fieldsets() so it can be
- # displayed as read-only.
- self.assertEqual(
- list(ma.get_fields(request)),
- ['bio', 'sign_date', 'name']
- )
- self.assertEqual(
- list(ma.get_fieldsets(request)),
- [(None, {'fields': ['bio', 'sign_date', 'name']})]
- )
- def test_custom_form_meta_exclude(self):
- """
- Ensure that the custom ModelForm's `Meta.exclude` is overridden if
- `ModelAdmin.exclude` or `InlineModelAdmin.exclude` are defined.
- Refs #14496.
- """
- # First, with `ModelAdmin` -----------------------
- class AdminBandForm(forms.ModelForm):
- class Meta:
- model = Band
- exclude = ['bio']
- class BandAdmin(ModelAdmin):
- exclude = ['name']
- form = AdminBandForm
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['bio', 'sign_date'])
- # Then, with `InlineModelAdmin` -----------------
- class AdminConcertForm(forms.ModelForm):
- class Meta:
- model = Concert
- exclude = ['day']
- class ConcertInline(TabularInline):
- exclude = ['transport']
- form = AdminConcertForm
- fk_name = 'main_band'
- model = Concert
- class BandAdmin(ModelAdmin):
- inlines = [
- ConcertInline
- ]
- ma = BandAdmin(Band, self.site)
- self.assertEqual(
- list(list(ma.get_formsets_with_inlines(request))[0][0]().forms[0].fields),
- ['main_band', 'opening_band', 'day', 'id', 'DELETE']
- )
- def test_custom_form_validation(self):
- # If we specify a form, it should use it allowing custom validation to work
- # properly. This won't, however, break any of the admin widgets or media.
- class AdminBandForm(forms.ModelForm):
- delete = forms.BooleanField()
- class BandAdmin(ModelAdmin):
- form = AdminBandForm
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['name', 'bio', 'sign_date', 'delete'])
- self.assertEqual(type(ma.get_form(request).base_fields['sign_date'].widget), AdminDateWidget)
- def test_form_exclude_kwarg_override(self):
- """
- Ensure that the `exclude` kwarg passed to `ModelAdmin.get_form()`
- overrides all other declarations. Refs #8999.
- """
- class AdminBandForm(forms.ModelForm):
- class Meta:
- model = Band
- exclude = ['name']
- class BandAdmin(ModelAdmin):
- exclude = ['sign_date']
- form = AdminBandForm
- def get_form(self, request, obj=None, **kwargs):
- kwargs['exclude'] = ['bio']
- return super(BandAdmin, self).get_form(request, obj, **kwargs)
- ma = BandAdmin(Band, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['name', 'sign_date'])
- def test_formset_exclude_kwarg_override(self):
- """
- Ensure that the `exclude` kwarg passed to `InlineModelAdmin.get_formset()`
- overrides all other declarations. Refs #8999.
- """
- class AdminConcertForm(forms.ModelForm):
- class Meta:
- model = Concert
- exclude = ['day']
- class ConcertInline(TabularInline):
- exclude = ['transport']
- form = AdminConcertForm
- fk_name = 'main_band'
- model = Concert
- def get_formset(self, request, obj=None, **kwargs):
- kwargs['exclude'] = ['opening_band']
- return super(ConcertInline, self).get_formset(request, obj, **kwargs)
- class BandAdmin(ModelAdmin):
- inlines = [
- ConcertInline
- ]
- ma = BandAdmin(Band, self.site)
- self.assertEqual(
- list(list(ma.get_formsets_with_inlines(request))[0][0]().forms[0].fields),
- ['main_band', 'day', 'transport', 'id', 'DELETE'])
- def test_queryset_override(self):
- # If we need to override the queryset of a ModelChoiceField in our custom form
- # make sure that RelatedFieldWidgetWrapper doesn't mess that up.
- band2 = Band(name='The Beatles', bio='', sign_date=date(1962, 1, 1))
- band2.save()
- class ConcertAdmin(ModelAdmin):
- pass
- ma = ConcertAdmin(Concert, self.site)
- form = ma.get_form(request)()
- self.assertHTMLEqual(
- str(form["main_band"]),
- '<div class="related-widget-wrapper">'
- '<select name="main_band" id="id_main_band" required>'
- '<option value="" selected>---------</option>'
- '<option value="%d">The Beatles</option>'
- '<option value="%d">The Doors</option>'
- '</select></div>' % (band2.id, self.band.id)
- )
- class AdminConcertForm(forms.ModelForm):
- def __init__(self, *args, **kwargs):
- super(AdminConcertForm, self).__init__(*args, **kwargs)
- self.fields["main_band"].queryset = Band.objects.filter(name='The Doors')
- class ConcertAdminWithForm(ModelAdmin):
- form = AdminConcertForm
- ma = ConcertAdminWithForm(Concert, self.site)
- form = ma.get_form(request)()
- self.assertHTMLEqual(
- str(form["main_band"]),
- '<div class="related-widget-wrapper">'
- '<select name="main_band" id="id_main_band" required>'
- '<option value="" selected>---------</option>'
- '<option value="%d">The Doors</option>'
- '</select></div>' % self.band.id
- )
- def test_regression_for_ticket_15820(self):
- """
- Ensure that `obj` is passed from `InlineModelAdmin.get_fieldsets()` to
- `InlineModelAdmin.get_formset()`.
- """
- class CustomConcertForm(forms.ModelForm):
- class Meta:
- model = Concert
- fields = ['day']
- class ConcertInline(TabularInline):
- model = Concert
- fk_name = 'main_band'
- def get_formset(self, request, obj=None, **kwargs):
- if obj:
- kwargs['form'] = CustomConcertForm
- return super(ConcertInline, self).get_formset(request, obj, **kwargs)
- class BandAdmin(ModelAdmin):
- inlines = [
- ConcertInline
- ]
- Concert.objects.create(main_band=self.band, opening_band=self.band, day=1)
- ma = BandAdmin(Band, self.site)
- inline_instances = ma.get_inline_instances(request)
- fieldsets = list(inline_instances[0].get_fieldsets(request))
- self.assertEqual(fieldsets[0][1]['fields'], ['main_band', 'opening_band', 'day', 'transport'])
- fieldsets = list(inline_instances[0].get_fieldsets(request, inline_instances[0].model))
- self.assertEqual(fieldsets[0][1]['fields'], ['day'])
- # radio_fields behavior ###########################################
- def test_default_foreign_key_widget(self):
- # First, without any radio_fields specified, the widgets for ForeignKey
- # and fields with choices specified ought to be a basic Select widget.
- # ForeignKey widgets in the admin are wrapped with RelatedFieldWidgetWrapper so
- # they need to be handled properly when type checking. For Select fields, all of
- # the choices lists have a first entry of dashes.
- cma = ModelAdmin(Concert, self.site)
- cmafa = cma.get_form(request)
- self.assertEqual(type(cmafa.base_fields['main_band'].widget.widget), Select)
- self.assertEqual(
- list(cmafa.base_fields['main_band'].widget.choices),
- [('', '---------'), (self.band.id, 'The Doors')])
- self.assertEqual(type(cmafa.base_fields['opening_band'].widget.widget), Select)
- self.assertEqual(
- list(cmafa.base_fields['opening_band'].widget.choices),
- [('', '---------'), (self.band.id, 'The Doors')]
- )
- self.assertEqual(type(cmafa.base_fields['day'].widget), Select)
- self.assertEqual(
- list(cmafa.base_fields['day'].widget.choices),
- [('', '---------'), (1, 'Fri'), (2, 'Sat')]
- )
- self.assertEqual(type(cmafa.base_fields['transport'].widget), Select)
- self.assertEqual(
- list(cmafa.base_fields['transport'].widget.choices),
- [('', '---------'), (1, 'Plane'), (2, 'Train'), (3, 'Bus')])
- def test_foreign_key_as_radio_field(self):
- # Now specify all the fields as radio_fields. Widgets should now be
- # RadioSelect, and the choices list should have a first entry of 'None' if
- # blank=True for the model field. Finally, the widget should have the
- # 'radiolist' attr, and 'inline' as well if the field is specified HORIZONTAL.
- class ConcertAdmin(ModelAdmin):
- radio_fields = {
- 'main_band': HORIZONTAL,
- 'opening_band': VERTICAL,
- 'day': VERTICAL,
- 'transport': HORIZONTAL,
- }
- cma = ConcertAdmin(Concert, self.site)
- cmafa = cma.get_form(request)
- self.assertEqual(type(cmafa.base_fields['main_band'].widget.widget), AdminRadioSelect)
- self.assertEqual(cmafa.base_fields['main_band'].widget.attrs, {'class': 'radiolist inline'})
- self.assertEqual(
- list(cmafa.base_fields['main_band'].widget.choices),
- [(self.band.id, 'The Doors')]
- )
- self.assertEqual(type(cmafa.base_fields['opening_band'].widget.widget), AdminRadioSelect)
- self.assertEqual(cmafa.base_fields['opening_band'].widget.attrs, {'class': 'radiolist'})
- self.assertEqual(
- list(cmafa.base_fields['opening_band'].widget.choices),
- [('', 'None'), (self.band.id, 'The Doors')]
- )
- self.assertEqual(type(cmafa.base_fields['day'].widget), AdminRadioSelect)
- self.assertEqual(cmafa.base_fields['day'].widget.attrs, {'class': 'radiolist'})
- self.assertEqual(list(cmafa.base_fields['day'].widget.choices), [(1, 'Fri'), (2, 'Sat')])
- self.assertEqual(type(cmafa.base_fields['transport'].widget), AdminRadioSelect)
- self.assertEqual(cmafa.base_fields['transport'].widget.attrs, {'class': 'radiolist inline'})
- self.assertEqual(
- list(cmafa.base_fields['transport'].widget.choices),
- [('', 'None'), (1, 'Plane'), (2, 'Train'), (3, 'Bus')]
- )
- class AdminConcertForm(forms.ModelForm):
- class Meta:
- model = Concert
- exclude = ('transport',)
- class ConcertAdmin(ModelAdmin):
- form = AdminConcertForm
- ma = ConcertAdmin(Concert, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['main_band', 'opening_band', 'day'])
- class AdminConcertForm(forms.ModelForm):
- extra = forms.CharField()
- class Meta:
- model = Concert
- fields = ['extra', 'transport']
- class ConcertAdmin(ModelAdmin):
- form = AdminConcertForm
- ma = ConcertAdmin(Concert, self.site)
- self.assertEqual(list(ma.get_form(request).base_fields), ['extra', 'transport'])
- class ConcertInline(TabularInline):
- form = AdminConcertForm
- model = Concert
- fk_name = 'main_band'
- can_delete = True
- class BandAdmin(ModelAdmin):
- inlines = [
- ConcertInline
- ]
- ma = BandAdmin(Band, self.site)
- self.assertEqual(
- list(list(ma.get_formsets_with_inlines(request))[0][0]().forms[0].fields),
- ['extra', 'transport', 'id', 'DELETE', 'main_band']
- )
- class CheckTestCase(SimpleTestCase):
- def assertIsInvalid(self, model_admin, model, msg, id=None, hint=None, invalid_obj=None):
- invalid_obj = invalid_obj or model_admin
- admin_obj = model_admin(model, AdminSite())
- errors = admin_obj.check()
- expected = [
- Error(
- msg,
- hint=hint,
- obj=invalid_obj,
- id=id,
- )
- ]
- self.assertEqual(errors, expected)
- def assertIsInvalidRegexp(self, model_admin, model, msg, id=None, hint=None, invalid_obj=None):
- """
- Same as assertIsInvalid but treats the given msg as a regexp.
- """
- invalid_obj = invalid_obj or model_admin
- admin_obj = model_admin(model, AdminSite())
- errors = admin_obj.check()
- self.assertEqual(len(errors), 1)
- error = errors[0]
- self.assertEqual(error.hint, hint)
- self.assertEqual(error.obj, invalid_obj)
- self.assertEqual(error.id, id)
- six.assertRegex(self, error.msg, msg)
- def assertIsValid(self, model_admin, model):
- admin_obj = model_admin(model, AdminSite())
- errors = admin_obj.check()
- expected = []
- self.assertEqual(errors, expected)
- class RawIdCheckTests(CheckTestCase):
- def test_not_iterable(self):
- class ValidationTestModelAdmin(ModelAdmin):
- raw_id_fields = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'raw_id_fields' must be a list or tuple.",
- 'admin.E001')
- def test_missing_field(self):
- class ValidationTestModelAdmin(ModelAdmin):
- raw_id_fields = ('non_existent_field',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- ("The value of 'raw_id_fields[0]' refers to 'non_existent_field', "
- "which is not an attribute of 'modeladmin.ValidationTestModel'."),
- 'admin.E002')
- def test_invalid_field_type(self):
- class ValidationTestModelAdmin(ModelAdmin):
- raw_id_fields = ('name',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'raw_id_fields[0]' must be a foreign key or a many-to-many field.",
- 'admin.E003')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- raw_id_fields = ('users',)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class FieldsetsCheckTests(CheckTestCase):
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- fieldsets = (("General", {'fields': ('name',)}),)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- def test_not_iterable(self):
- class ValidationTestModelAdmin(ModelAdmin):
- fieldsets = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'fieldsets' must be a list or tuple.",
- 'admin.E007')
- def test_non_iterable_item(self):
- class ValidationTestModelAdmin(ModelAdmin):
- fieldsets = ({},)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'fieldsets[0]' must be a list or tuple.",
- 'admin.E008')
- def test_item_not_a_pair(self):
- class ValidationTestModelAdmin(ModelAdmin):
- fieldsets = ((),)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'fieldsets[0]' must be of length 2.",
- 'admin.E009')
- def test_second_element_of_item_not_a_dict(self):
- class ValidationTestModelAdmin(ModelAdmin):
- fieldsets = (("General", ()),)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'fieldsets[0][1]' must be a dictionary.",
- 'admin.E010')
- def test_missing_fields_key(self):
- class ValidationTestModelAdmin(ModelAdmin):
- fieldsets = (("General", {}),)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'fieldsets[0][1]' must contain the key 'fields'.",
- 'admin.E011')
- class ValidationTestModelAdmin(ModelAdmin):
- fieldsets = (("General", {'fields': ('name',)}),)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- def test_specified_both_fields_and_fieldsets(self):
- class ValidationTestModelAdmin(ModelAdmin):
- fieldsets = (("General", {'fields': ('name',)}),)
- fields = ['name']
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "Both 'fieldsets' and 'fields' are specified.",
- 'admin.E005')
- def test_duplicate_fields(self):
- class ValidationTestModelAdmin(ModelAdmin):
- fieldsets = [(None, {'fields': ['name', 'name']})]
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "There are duplicate field(s) in 'fieldsets[0][1]'.",
- 'admin.E012')
- def test_fieldsets_with_custom_form_validation(self):
- class BandAdmin(ModelAdmin):
- fieldsets = (
- ('Band', {
- 'fields': ('name',)
- }),
- )
- self.assertIsValid(BandAdmin, Band)
- class FieldsCheckTests(CheckTestCase):
- def test_duplicate_fields_in_fields(self):
- class ValidationTestModelAdmin(ModelAdmin):
- fields = ['name', 'name']
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'fields' contains duplicate field(s).",
- 'admin.E006')
- def test_inline(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- fields = 10
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'fields' must be a list or tuple.",
- 'admin.E004',
- invalid_obj=ValidationTestInline)
- class FormCheckTests(CheckTestCase):
- def test_invalid_type(self):
- class FakeForm(object):
- pass
- class ValidationTestModelAdmin(ModelAdmin):
- form = FakeForm
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'form' must inherit from 'BaseModelForm'.",
- 'admin.E016')
- def test_fieldsets_with_custom_form_validation(self):
- class BandAdmin(ModelAdmin):
- fieldsets = (
- ('Band', {
- 'fields': ('name',)
- }),
- )
- self.assertIsValid(BandAdmin, Band)
- def test_valid_case(self):
- class AdminBandForm(forms.ModelForm):
- delete = forms.BooleanField()
- class BandAdmin(ModelAdmin):
- form = AdminBandForm
- fieldsets = (
- ('Band', {
- 'fields': ('name', 'bio', 'sign_date', 'delete')
- }),
- )
- self.assertIsValid(BandAdmin, Band)
- class FilterVerticalCheckTests(CheckTestCase):
- def test_not_iterable(self):
- class ValidationTestModelAdmin(ModelAdmin):
- filter_vertical = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'filter_vertical' must be a list or tuple.",
- 'admin.E017')
- def test_missing_field(self):
- class ValidationTestModelAdmin(ModelAdmin):
- filter_vertical = ('non_existent_field',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- ("The value of 'filter_vertical[0]' refers to 'non_existent_field', "
- "which is not an attribute of 'modeladmin.ValidationTestModel'."),
- 'admin.E019')
- def test_invalid_field_type(self):
- class ValidationTestModelAdmin(ModelAdmin):
- filter_vertical = ('name',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'filter_vertical[0]' must be a many-to-many field.",
- 'admin.E020')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- filter_vertical = ("users",)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class FilterHorizontalCheckTests(CheckTestCase):
- def test_not_iterable(self):
- class ValidationTestModelAdmin(ModelAdmin):
- filter_horizontal = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'filter_horizontal' must be a list or tuple.",
- 'admin.E018')
- def test_missing_field(self):
- class ValidationTestModelAdmin(ModelAdmin):
- filter_horizontal = ('non_existent_field',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- ("The value of 'filter_horizontal[0]' refers to 'non_existent_field', "
- "which is not an attribute of 'modeladmin.ValidationTestModel'."),
- 'admin.E019')
- def test_invalid_field_type(self):
- class ValidationTestModelAdmin(ModelAdmin):
- filter_horizontal = ('name',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'filter_horizontal[0]' must be a many-to-many field.",
- 'admin.E020')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- filter_horizontal = ("users",)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class RadioFieldsCheckTests(CheckTestCase):
- def test_not_dictionary(self):
- class ValidationTestModelAdmin(ModelAdmin):
- radio_fields = ()
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'radio_fields' must be a dictionary.",
- 'admin.E021')
- def test_missing_field(self):
- class ValidationTestModelAdmin(ModelAdmin):
- radio_fields = {'non_existent_field': VERTICAL}
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- ("The value of 'radio_fields' refers to 'non_existent_field', "
- "which is not an attribute of 'modeladmin.ValidationTestModel'."),
- 'admin.E022')
- def test_invalid_field_type(self):
- class ValidationTestModelAdmin(ModelAdmin):
- radio_fields = {'name': VERTICAL}
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- ("The value of 'radio_fields' refers to 'name', which is not an instance "
- "of ForeignKey, and does not have a 'choices' definition."),
- 'admin.E023')
- def test_invalid_value(self):
- class ValidationTestModelAdmin(ModelAdmin):
- radio_fields = {"state": None}
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'radio_fields[\"state\"]' must be either admin.HORIZONTAL or admin.VERTICAL.",
- 'admin.E024')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- radio_fields = {"state": VERTICAL}
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class PrepopulatedFieldsCheckTests(CheckTestCase):
- def test_not_dictionary(self):
- class ValidationTestModelAdmin(ModelAdmin):
- prepopulated_fields = ()
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'prepopulated_fields' must be a dictionary.",
- 'admin.E026')
- def test_missing_field(self):
- class ValidationTestModelAdmin(ModelAdmin):
- prepopulated_fields = {'non_existent_field': ("slug",)}
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- ("The value of 'prepopulated_fields' refers to 'non_existent_field', "
- "which is not an attribute of 'modeladmin.ValidationTestModel'."),
- 'admin.E027')
- def test_missing_field_again(self):
- class ValidationTestModelAdmin(ModelAdmin):
- prepopulated_fields = {"slug": ('non_existent_field',)}
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- ("The value of 'prepopulated_fields[\"slug\"][0]' refers to 'non_existent_field', "
- "which is not an attribute of 'modeladmin.ValidationTestModel'."),
- 'admin.E030')
- def test_invalid_field_type(self):
- class ValidationTestModelAdmin(ModelAdmin):
- prepopulated_fields = {"users": ('name',)}
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- ("The value of 'prepopulated_fields' refers to 'users', which must not be "
- "a DateTimeField, a ForeignKey, or a ManyToManyField."),
- 'admin.E028')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- prepopulated_fields = {"slug": ('name',)}
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class ListDisplayTests(CheckTestCase):
- def test_not_iterable(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_display = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_display' must be a list or tuple.",
- 'admin.E107')
- def test_missing_field(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_display = ('non_existent_field',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- ("The value of 'list_display[0]' refers to 'non_existent_field', which is not a callable, an attribute "
- "of 'ValidationTestModelAdmin', or an attribute or method on 'modeladmin.ValidationTestModel'."),
- 'admin.E108')
- def test_invalid_field_type(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_display = ('users',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_display[0]' must not be a ManyToManyField.",
- 'admin.E109')
- def test_valid_case(self):
- def a_callable(obj):
- pass
- class ValidationTestModelAdmin(ModelAdmin):
- def a_method(self, obj):
- pass
- list_display = ('name', 'decade_published_in', 'a_method', a_callable)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class ListDisplayLinksCheckTests(CheckTestCase):
- def test_not_iterable(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_display_links = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_display_links' must be a list, a tuple, or None.",
- 'admin.E110')
- def test_missing_field(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_display_links = ('non_existent_field',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel, (
- "The value of 'list_display_links[0]' refers to "
- "'non_existent_field', which is not defined in 'list_display'."
- ), 'admin.E111'
- )
- def test_missing_in_list_display(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_display_links = ('name',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_display_links[0]' refers to 'name', which is not defined in 'list_display'.",
- 'admin.E111')
- def test_valid_case(self):
- def a_callable(obj):
- pass
- class ValidationTestModelAdmin(ModelAdmin):
- def a_method(self, obj):
- pass
- list_display = ('name', 'decade_published_in', 'a_method', a_callable)
- list_display_links = ('name', 'decade_published_in', 'a_method', a_callable)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- def test_None_is_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_display_links = None
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class ListFilterTests(CheckTestCase):
- def test_list_filter_validation(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_filter = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_filter' must be a list or tuple.",
- 'admin.E112')
- def test_missing_field(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_filter = ('non_existent_field',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_filter[0]' refers to 'non_existent_field', which does not refer to a Field.",
- 'admin.E116')
- def test_not_filter(self):
- class RandomClass(object):
- pass
- class ValidationTestModelAdmin(ModelAdmin):
- list_filter = (RandomClass,)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_filter[0]' must inherit from 'ListFilter'.",
- 'admin.E113')
- def test_not_filter_again(self):
- class RandomClass(object):
- pass
- class ValidationTestModelAdmin(ModelAdmin):
- list_filter = (('is_active', RandomClass),)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_filter[0][1]' must inherit from 'FieldListFilter'.",
- 'admin.E115')
- def test_not_filter_again_again(self):
- class AwesomeFilter(SimpleListFilter):
- def get_title(self):
- return 'awesomeness'
- def get_choices(self, request):
- return (('bit', 'A bit awesome'), ('very', 'Very awesome'), )
- def get_queryset(self, cl, qs):
- return qs
- class ValidationTestModelAdmin(ModelAdmin):
- list_filter = (('is_active', AwesomeFilter),)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_filter[0][1]' must inherit from 'FieldListFilter'.",
- 'admin.E115')
- def test_not_associated_with_field_name(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_filter = (BooleanFieldListFilter,)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_filter[0]' must not inherit from 'FieldListFilter'.",
- 'admin.E114')
- def test_valid_case(self):
- class AwesomeFilter(SimpleListFilter):
- def get_title(self):
- return 'awesomeness'
- def get_choices(self, request):
- return (('bit', 'A bit awesome'), ('very', 'Very awesome'), )
- def get_queryset(self, cl, qs):
- return qs
- class ValidationTestModelAdmin(ModelAdmin):
- list_filter = ('is_active', AwesomeFilter, ('is_active', BooleanFieldListFilter), 'no')
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class ListPerPageCheckTests(CheckTestCase):
- def test_not_integer(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_per_page = 'hello'
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_per_page' must be an integer.",
- 'admin.E118')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_per_page = 100
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class ListMaxShowAllCheckTests(CheckTestCase):
- def test_not_integer(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_max_show_all = 'hello'
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_max_show_all' must be an integer.",
- 'admin.E119')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_max_show_all = 200
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class SearchFieldsCheckTests(CheckTestCase):
- def test_not_iterable(self):
- class ValidationTestModelAdmin(ModelAdmin):
- search_fields = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'search_fields' must be a list or tuple.",
- 'admin.E126')
- class DateHierarchyCheckTests(CheckTestCase):
- def test_missing_field(self):
- class ValidationTestModelAdmin(ModelAdmin):
- date_hierarchy = 'non_existent_field'
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'date_hierarchy' refers to 'non_existent_field', which "
- "does not refer to a Field.",
- 'admin.E127'
- )
- def test_invalid_field_type(self):
- class ValidationTestModelAdmin(ModelAdmin):
- date_hierarchy = 'name'
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'date_hierarchy' must be a DateField or DateTimeField.",
- 'admin.E128')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- date_hierarchy = 'pub_date'
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- def test_related_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- date_hierarchy = 'band__sign_date'
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- def test_related_invalid_field_type(self):
- class ValidationTestModelAdmin(ModelAdmin):
- date_hierarchy = 'band__name'
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'date_hierarchy' must be a DateField or DateTimeField.",
- 'admin.E128'
- )
- class OrderingCheckTests(CheckTestCase):
- def test_not_iterable(self):
- class ValidationTestModelAdmin(ModelAdmin):
- ordering = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'ordering' must be a list or tuple.",
- 'admin.E031'
- )
- class ValidationTestModelAdmin(ModelAdmin):
- ordering = ('non_existent_field',)
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'ordering[0]' refers to 'non_existent_field', "
- "which is not an attribute of 'modeladmin.ValidationTestModel'.",
- 'admin.E033'
- )
- def test_random_marker_not_alone(self):
- class ValidationTestModelAdmin(ModelAdmin):
- ordering = ('?', 'name')
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'ordering' has the random ordering marker '?', but contains "
- "other fields as well.",
- 'admin.E032',
- hint='Either remove the "?", or remove the other fields.'
- )
- def test_valid_random_marker_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- ordering = ('?',)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- def test_valid_complex_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- ordering = ('band__name',)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- ordering = ('name',)
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class ListSelectRelatedCheckTests(CheckTestCase):
- def test_invalid_type(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_select_related = 1
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'list_select_related' must be a boolean, tuple or list.",
- 'admin.E117')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- list_select_related = False
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class SaveAsCheckTests(CheckTestCase):
- def test_not_boolean(self):
- class ValidationTestModelAdmin(ModelAdmin):
- save_as = 1
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'save_as' must be a boolean.",
- 'admin.E101')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- save_as = True
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class SaveOnTopCheckTests(CheckTestCase):
- def test_not_boolean(self):
- class ValidationTestModelAdmin(ModelAdmin):
- save_on_top = 1
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'save_on_top' must be a boolean.",
- 'admin.E102')
- def test_valid_case(self):
- class ValidationTestModelAdmin(ModelAdmin):
- save_on_top = True
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class InlinesCheckTests(CheckTestCase):
- def test_not_iterable(self):
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = 10
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'inlines' must be a list or tuple.",
- 'admin.E103')
- def test_not_model_admin(self):
- class ValidationTestInline(object):
- pass
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsInvalidRegexp(
- ValidationTestModelAdmin, ValidationTestModel,
- r"'.*\.ValidationTestInline' must inherit from 'InlineModelAdmin'\.",
- 'admin.E104')
- def test_missing_model_field(self):
- class ValidationTestInline(TabularInline):
- pass
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsInvalidRegexp(
- ValidationTestModelAdmin, ValidationTestModel,
- r"'.*\.ValidationTestInline' must have a 'model' attribute\.",
- 'admin.E105')
- def test_invalid_model_type(self):
- """ Test if `model` attribute on inline model admin is a models.Model.
- """
- class SomethingBad(object):
- pass
- class ValidationTestInline(TabularInline):
- model = SomethingBad
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsInvalidRegexp(
- ValidationTestModelAdmin, ValidationTestModel,
- r"The value of '.*\.ValidationTestInline.model' must be a Model\.",
- 'admin.E106')
- def test_valid_case(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class FkNameCheckTests(CheckTestCase):
- def test_missing_field(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- fk_name = 'non_existent_field'
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "'modeladmin.ValidationTestInlineModel' has no field named 'non_existent_field'.",
- 'admin.E202',
- invalid_obj=ValidationTestInline)
- def test_valid_case(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- fk_name = "parent"
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class ExtraCheckTests(CheckTestCase):
- def test_not_integer(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- extra = "hello"
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'extra' must be an integer.",
- 'admin.E203',
- invalid_obj=ValidationTestInline)
- def test_valid_case(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- extra = 2
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class MaxNumCheckTests(CheckTestCase):
- def test_not_integer(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- max_num = "hello"
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'max_num' must be an integer.",
- 'admin.E204',
- invalid_obj=ValidationTestInline)
- def test_valid_case(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- max_num = 2
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class MinNumCheckTests(CheckTestCase):
- def test_not_integer(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- min_num = "hello"
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'min_num' must be an integer.",
- 'admin.E205',
- invalid_obj=ValidationTestInline)
- def test_valid_case(self):
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- min_num = 2
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class FormsetCheckTests(CheckTestCase):
- def test_invalid_type(self):
- class FakeFormSet(object):
- pass
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- formset = FakeFormSet
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsInvalid(
- ValidationTestModelAdmin, ValidationTestModel,
- "The value of 'formset' must inherit from 'BaseModelFormSet'.",
- 'admin.E206',
- invalid_obj=ValidationTestInline)
- def test_valid_case(self):
- class RealModelFormSet(BaseModelFormSet):
- pass
- class ValidationTestInline(TabularInline):
- model = ValidationTestInlineModel
- formset = RealModelFormSet
- class ValidationTestModelAdmin(ModelAdmin):
- inlines = [ValidationTestInline]
- self.assertIsValid(ValidationTestModelAdmin, ValidationTestModel)
- class ListDisplayEditableTests(CheckTestCase):
- def test_list_display_links_is_none(self):
- """
- list_display and list_editable can contain the same values
- when list_display_links is None
- """
- class ProductAdmin(ModelAdmin):
- list_display = ['name', 'slug', 'pub_date']
- list_editable = list_display
- list_display_links = None
- self.assertIsValid(ProductAdmin, ValidationTestModel)
- def test_list_display_first_item_same_as_list_editable_first_item(self):
- """
- The first item in list_display can be the same as the first in
- list_editable.
- """
- class ProductAdmin(ModelAdmin):
- list_display = ['name', 'slug', 'pub_date']
- list_editable = ['name', 'slug']
- list_display_links = ['pub_date']
- self.assertIsValid(ProductAdmin, ValidationTestModel)
- def test_list_display_first_item_in_list_editable(self):
- """
- The first item in list_display can be in list_editable as long as
- list_display_links is defined.
- """
- class ProductAdmin(ModelAdmin):
- list_display = ['name', 'slug', 'pub_date']
- list_editable = ['slug', 'name']
- list_display_links = ['pub_date']
- self.assertIsValid(ProductAdmin, ValidationTestModel)
- def test_list_display_first_item_same_as_list_editable_no_list_display_links(self):
- """
- The first item in list_display cannot be the same as the first item
- in list_editable if list_display_links is not defined.
- """
- class ProductAdmin(ModelAdmin):
- list_display = ['name']
- list_editable = ['name']
- self.assertIsInvalid(
- ProductAdmin, ValidationTestModel,
- "The value of 'list_editable[0]' refers to the first field "
- "in 'list_display' ('name'), which cannot be used unless "
- "'list_display_links' is set.",
- id='admin.E124',
- )
- def test_list_display_first_item_in_list_editable_no_list_display_links(self):
- """
- The first item in list_display cannot be in list_editable if
- list_display_links isn't defined.
- """
- class ProductAdmin(ModelAdmin):
- list_display = ['name', 'slug', 'pub_date']
- list_editable = ['slug', 'name']
- self.assertIsInvalid(
- ProductAdmin, ValidationTestModel,
- "The value of 'list_editable[1]' refers to the first field "
- "in 'list_display' ('name'), which cannot be used unless "
- "'list_display_links' is set.",
- id='admin.E124',
- )
- class ModelAdminPermissionTests(SimpleTestCase):
- class MockUser(object):
- def has_module_perms(self, app_label):
- if app_label == "modeladmin":
- return True
- return False
- class MockAddUser(MockUser):
- def has_perm(self, perm):
- if perm == "modeladmin.add_band":
- return True
- return False
- class MockChangeUser(MockUser):
- def has_perm(self, perm):
- if perm == "modeladmin.change_band":
- return True
- return False
- class MockDeleteUser(MockUser):
- def has_perm(self, perm):
- if perm == "modeladmin.delete_band":
- return True
- return False
- def test_has_add_permission(self):
- """
- Ensure that has_add_permission returns True for users who can add
- objects and False for users who can't.
- """
- ma = ModelAdmin(Band, AdminSite())
- request = MockRequest()
- request.user = self.MockAddUser()
- self.assertTrue(ma.has_add_permission(request))
- request.user = self.MockChangeUser()
- self.assertFalse(ma.has_add_permission(request))
- request.user = self.MockDeleteUser()
- self.assertFalse(ma.has_add_permission(request))
- def test_has_change_permission(self):
- """
- Ensure that has_change_permission returns True for users who can edit
- objects and False for users who can't.
- """
- ma = ModelAdmin(Band, AdminSite())
- request = MockRequest()
- request.user = self.MockAddUser()
- self.assertFalse(ma.has_change_permission(request))
- request.user = self.MockChangeUser()
- self.assertTrue(ma.has_change_permission(request))
- request.user = self.MockDeleteUser()
- self.assertFalse(ma.has_change_permission(request))
- def test_has_delete_permission(self):
- """
- Ensure that has_delete_permission returns True for users who can delete
- objects and False for users who can't.
- """
- ma = ModelAdmin(Band, AdminSite())
- request = MockRequest()
- request.user = self.MockAddUser()
- self.assertFalse(ma.has_delete_permission(request))
- request.user = self.MockChangeUser()
- self.assertFalse(ma.has_delete_permission(request))
- request.user = self.MockDeleteUser()
- self.assertTrue(ma.has_delete_permission(request))
- def test_has_module_permission(self):
- """
- Ensure that has_module_permission returns True for users who have any
- permission for the module and False for users who don't.
- """
- ma = ModelAdmin(Band, AdminSite())
- request = MockRequest()
- request.user = self.MockAddUser()
- self.assertTrue(ma.has_module_permission(request))
- request.user = self.MockChangeUser()
- self.assertTrue(ma.has_module_permission(request))
- request.user = self.MockDeleteUser()
- self.assertTrue(ma.has_module_permission(request))
- original_app_label = ma.opts.app_label
- ma.opts.app_label = 'anotherapp'
- try:
- request.user = self.MockAddUser()
- self.assertFalse(ma.has_module_permission(request))
- request.user = self.MockChangeUser()
- self.assertFalse(ma.has_module_permission(request))
- request.user = self.MockDeleteUser()
- self.assertFalse(ma.has_module_permission(request))
- finally:
- ma.opts.app_label = original_app_label
|