Fixed #10927 - Content Types shortcut view throws 500s instead of 404s
Thanks to Jeremy Dunck/Alex Gaynor for the patch git-svn-id: http://code.djangoproject.com/svn/django/trunk@11917 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e4757ec7af
commit
25ab93457c
|
@ -9,7 +9,7 @@ def shortcut(request, content_type_id, object_id):
|
||||||
try:
|
try:
|
||||||
content_type = ContentType.objects.get(pk=content_type_id)
|
content_type = ContentType.objects.get(pk=content_type_id)
|
||||||
obj = content_type.get_object_for_this_type(pk=object_id)
|
obj = content_type.get_object_for_this_type(pk=object_id)
|
||||||
except ObjectDoesNotExist:
|
except (ObjectDoesNotExist, ValueError):
|
||||||
raise http.Http404("Content type %s object %s doesn't exist" % (content_type_id, object_id))
|
raise http.Http404("Content type %s object %s doesn't exist" % (content_type_id, object_id))
|
||||||
try:
|
try:
|
||||||
absurl = obj.get_absolute_url()
|
absurl = obj.get_absolute_url()
|
||||||
|
|
|
@ -10,8 +10,8 @@ class DefaultsTests(TestCase):
|
||||||
"""Test django views in django/views/defaults.py"""
|
"""Test django views in django/views/defaults.py"""
|
||||||
fixtures = ['testdata.json']
|
fixtures = ['testdata.json']
|
||||||
|
|
||||||
def test_shorcut_with_absolute_url(self):
|
def test_shortcut_with_absolute_url(self):
|
||||||
"Can view a shortcut an Author object that has with a get_absolute_url method"
|
"Can view a shortcut for an Author object that has a get_absolute_url method"
|
||||||
for obj in Author.objects.all():
|
for obj in Author.objects.all():
|
||||||
short_url = '/views/shortcut/%s/%s/' % (ContentType.objects.get_for_model(Author).id, obj.pk)
|
short_url = '/views/shortcut/%s/%s/' % (ContentType.objects.get_for_model(Author).id, obj.pk)
|
||||||
response = self.client.get(short_url)
|
response = self.client.get(short_url)
|
||||||
|
@ -19,12 +19,34 @@ class DefaultsTests(TestCase):
|
||||||
status_code=302, target_status_code=404)
|
status_code=302, target_status_code=404)
|
||||||
|
|
||||||
def test_shortcut_no_absolute_url(self):
|
def test_shortcut_no_absolute_url(self):
|
||||||
"Shortcuts for an object that has with a get_absolute_url method raises 404"
|
"Shortcuts for an object that has no get_absolute_url method raises 404"
|
||||||
for obj in Article.objects.all():
|
for obj in Article.objects.all():
|
||||||
short_url = '/views/shortcut/%s/%s/' % (ContentType.objects.get_for_model(Article).id, obj.pk)
|
short_url = '/views/shortcut/%s/%s/' % (ContentType.objects.get_for_model(Article).id, obj.pk)
|
||||||
response = self.client.get(short_url)
|
response = self.client.get(short_url)
|
||||||
self.assertEquals(response.status_code, 404)
|
self.assertEquals(response.status_code, 404)
|
||||||
|
|
||||||
|
def test_wrong_type_pk(self):
|
||||||
|
short_url = '/views/shortcut/%s/%s/' % (ContentType.objects.get_for_model(Author).id, 'nobody/expects')
|
||||||
|
response = self.client.get(short_url)
|
||||||
|
self.assertEquals(response.status_code, 404)
|
||||||
|
|
||||||
|
def test_shortcut_bad_pk(self):
|
||||||
|
short_url = '/views/shortcut/%s/%s/' % (ContentType.objects.get_for_model(Author).id, '4242424242')
|
||||||
|
response = self.client.get(short_url)
|
||||||
|
self.assertEquals(response.status_code, 404)
|
||||||
|
|
||||||
|
def test_nonint_content_type(self):
|
||||||
|
an_author = Author.objects.all()[0]
|
||||||
|
short_url = '/views/shortcut/%s/%s/' % ('spam', an_author.pk)
|
||||||
|
response = self.client.get(short_url)
|
||||||
|
self.assertEquals(response.status_code, 404)
|
||||||
|
|
||||||
|
def test_bad_content_type(self):
|
||||||
|
an_author = Author.objects.all()[0]
|
||||||
|
short_url = '/views/shortcut/%s/%s/' % (4242424242, an_author.pk)
|
||||||
|
response = self.client.get(short_url)
|
||||||
|
self.assertEquals(response.status_code, 404)
|
||||||
|
|
||||||
def test_page_not_found(self):
|
def test_page_not_found(self):
|
||||||
"A 404 status is returned by the page_not_found view"
|
"A 404 status is returned by the page_not_found view"
|
||||||
non_existing_urls = ['/views/non_existing_url/', # this is in urls.py
|
non_existing_urls = ['/views/non_existing_url/', # this is in urls.py
|
||||||
|
|
Loading…
Reference in New Issue