mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	backwards compatible for all practical purposes. Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702 git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			86 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| from django.db import models
 | |
| 
 | |
| class Foo(models.Model):
 | |
|     name = models.CharField(maxlength=50)
 | |
|     friend = models.CharField(maxlength=50, blank=True)
 | |
| 
 | |
|     def __unicode__(self):
 | |
|         return "Foo %s" % self.name
 | |
| 
 | |
| class Bar(models.Model):
 | |
|     name = models.CharField(maxlength=50)
 | |
|     normal = models.ForeignKey(Foo, related_name='normal_foo')
 | |
|     fwd = models.ForeignKey("Whiz")
 | |
|     back = models.ForeignKey("Foo")
 | |
| 
 | |
|     def __unicode__(self):
 | |
|         return "Bar %s" % self.place.name
 | |
| 
 | |
| class Whiz(models.Model):
 | |
|     name = models.CharField(maxlength = 50)
 | |
| 
 | |
|     def __unicode__(self):
 | |
|         return "Whiz %s" % self.name
 | |
| 
 | |
| class Child(models.Model):
 | |
|     parent = models.OneToOneField('Base')
 | |
|     name = models.CharField(maxlength = 50)
 | |
| 
 | |
|     def __unicode__(self):
 | |
|         return "Child %s" % self.name
 | |
| 
 | |
| class Base(models.Model):
 | |
|     name = models.CharField(maxlength = 50)
 | |
| 
 | |
|     def __unicode__(self):
 | |
|         return "Base %s" % self.name
 | |
| 
 | |
| __test__ = {'API_TESTS': ur"""
 | |
| # Regression test for #1661 and #1662: Check that string form referencing of
 | |
| # models works, both as pre and post reference, on all RelatedField types.
 | |
| 
 | |
| >>> f1 = Foo(name="Foo1")
 | |
| >>> f1.save()
 | |
| >>> f2 = Foo(name="Foo2")
 | |
| >>> f2.save()
 | |
| 
 | |
| >>> w1 = Whiz(name="Whiz1")
 | |
| >>> w1.save()
 | |
| 
 | |
| >>> b1 = Bar(name="Bar1", normal=f1, fwd=w1, back=f2)
 | |
| >>> b1.save()
 | |
| 
 | |
| >>> b1.normal
 | |
| <Foo: Foo Foo1>
 | |
| 
 | |
| >>> b1.fwd
 | |
| <Whiz: Whiz Whiz1>
 | |
| 
 | |
| >>> b1.back
 | |
| <Foo: Foo Foo2>
 | |
| 
 | |
| >>> base1 = Base(name="Base1")
 | |
| >>> base1.save()
 | |
| 
 | |
| >>> child1 = Child(name="Child1", parent=base1)
 | |
| >>> child1.save()
 | |
| 
 | |
| >>> child1.parent
 | |
| <Base: Base Base1>
 | |
| 
 | |
| # Regression tests for #3937: make sure we can use unicode characters in
 | |
| # queries.
 | |
| # BUG: These tests fail on MySQL, but it's a problem with the test setup. A
 | |
| # properly configured UTF-8 database can handle this.
 | |
| 
 | |
| >>> fx = Foo(name='Bjorn', friend=u'François')
 | |
| >>> fx.save()
 | |
| >>> Foo.objects.get(friend__contains=u'\xe7')
 | |
| <Foo: Foo Bjorn>
 | |
| 
 | |
| # We can also do the above query using UTF-8 strings.
 | |
| >>> Foo.objects.get(friend__contains='\xc3\xa7')
 | |
| <Foo: Foo Bjorn>
 | |
| """}
 |