Skip to content

Commit

Permalink
Fixed #12664 -- Fixed GenericRelation.m2m_reverse_name to return th…
Browse files Browse the repository at this point in the history
…e correct pk column name.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12276 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jbronn committed Jan 22, 2010
1 parent 5ec4445 commit c158438
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 10 deletions.
2 changes: 1 addition & 1 deletion django/contrib/contenttypes/generic.py
Expand Up @@ -129,7 +129,7 @@ def m2m_column_name(self):
return self.object_id_field_name

def m2m_reverse_name(self):
return self.model._meta.pk.column
return self.rel.to._meta.pk.column

def contribute_to_class(self, cls, name):
super(GenericRelation, self).contribute_to_class(cls, name)
Expand Down
28 changes: 24 additions & 4 deletions tests/regressiontests/generic_relations_regress/models.py
Expand Up @@ -13,10 +13,30 @@ def __unicode__(self):
class Place(models.Model):
name = models.CharField(max_length=100)
links = generic.GenericRelation(Link)

def __unicode__(self):
return "Place: %s" % self.name

class Restaurant(Place):

class Restaurant(Place):
def __unicode__(self):
return "Restaurant: %s" % self.name

class Address(models.Model):
street = models.CharField(max_length=80)
city = models.CharField(max_length=50)
state = models.CharField(max_length=2)
zipcode = models.CharField(max_length=5)
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey()

def __unicode__(self):
return '%s %s, %s %s' % (self.street, self.city, self.state, self.zipcode)

class Person(models.Model):
account = models.IntegerField(primary_key=True)
name = models.CharField(max_length=128)
addresses = generic.GenericRelation(Address)

def __unicode__(self):
return "Restaurant: %s" % self.name
return self.name
23 changes: 18 additions & 5 deletions tests/regressiontests/generic_relations_regress/tests.py
@@ -1,19 +1,32 @@
from django.test import TestCase
from django.contrib.contenttypes.models import ContentType
from models import Link, Place, Restaurant
from models import Link, Place, Restaurant, Person, Address

class GenericRelationTests(TestCase):

def test_inherited_models_content_type(self):
"""
Test that GenericRelations on inherited classes use the correct content
type.
"""

p = Place.objects.create(name="South Park")
r = Restaurant.objects.create(name="Chubby's")
r = Restaurant.objects.create(name="Chubby's")
l1 = Link.objects.create(content_object=p)
l2 = Link.objects.create(content_object=r)
self.assertEqual(list(p.links.all()), [l1])
self.assertEqual(list(r.links.all()), [l2])


def test_reverse_relation_pk(self):
"""
Test that the correct column name is used for the primary key on the
originating model of a query. See #12664.
"""
p = Person.objects.create(account=23, name='Chef')
a = Address.objects.create(street='123 Anywhere Place',
city='Conifer', state='CO',
zipcode='80433', content_object=p)

qs = Person.objects.filter(addresses__zipcode='80433')
self.assertEqual(1, qs.count())
self.assertEqual('Chef', qs[0].name)

0 comments on commit c158438

Please sign in to comment.