mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Merged regressiontests and modeltests into the test root.
This commit is contained in:
parent
b3d2ccb5bf
commit
89f40e3624
1050 changed files with 0 additions and 0 deletions
0
tests/custom_pk/__init__.py
Normal file
0
tests/custom_pk/__init__.py
Normal file
57
tests/custom_pk/fields.py
Normal file
57
tests/custom_pk/fields.py
Normal file
|
@ -0,0 +1,57 @@
|
|||
import random
|
||||
import string
|
||||
|
||||
from django.db import models
|
||||
from django.utils import six
|
||||
from django.utils.encoding import python_2_unicode_compatible
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class MyWrapper(object):
|
||||
def __init__(self, value):
|
||||
self.value = value
|
||||
|
||||
def __repr__(self):
|
||||
return "<%s: %s>" % (self.__class__.__name__, self.value)
|
||||
|
||||
def __str__(self):
|
||||
return self.value
|
||||
|
||||
def __eq__(self, other):
|
||||
if isinstance(other, self.__class__):
|
||||
return self.value == other.value
|
||||
return self.value == other
|
||||
|
||||
class MyAutoField(six.with_metaclass(models.SubfieldBase, models.CharField)):
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
kwargs['max_length'] = 10
|
||||
super(MyAutoField, self).__init__(*args, **kwargs)
|
||||
|
||||
def pre_save(self, instance, add):
|
||||
value = getattr(instance, self.attname, None)
|
||||
if not value:
|
||||
value = MyWrapper(''.join(random.sample(string.ascii_lowercase, 10)))
|
||||
setattr(instance, self.attname, value)
|
||||
return value
|
||||
|
||||
def to_python(self, value):
|
||||
if not value:
|
||||
return
|
||||
if not isinstance(value, MyWrapper):
|
||||
value = MyWrapper(value)
|
||||
return value
|
||||
|
||||
def get_db_prep_save(self, value, connection):
|
||||
if not value:
|
||||
return
|
||||
if isinstance(value, MyWrapper):
|
||||
return six.text_type(value)
|
||||
return value
|
||||
|
||||
def get_db_prep_value(self, value, connection, prepared=False):
|
||||
if not value:
|
||||
return
|
||||
if isinstance(value, MyWrapper):
|
||||
return six.text_type(value)
|
||||
return value
|
48
tests/custom_pk/models.py
Normal file
48
tests/custom_pk/models.py
Normal file
|
@ -0,0 +1,48 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
14. Using a custom primary key
|
||||
|
||||
By default, Django adds an ``"id"`` field to each model. But you can override
|
||||
this behavior by explicitly adding ``primary_key=True`` to a field.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import, unicode_literals
|
||||
|
||||
from django.db import models
|
||||
|
||||
from .fields import MyAutoField
|
||||
from django.utils.encoding import python_2_unicode_compatible
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Employee(models.Model):
|
||||
employee_code = models.IntegerField(primary_key=True, db_column = 'code')
|
||||
first_name = models.CharField(max_length=20)
|
||||
last_name = models.CharField(max_length=20)
|
||||
class Meta:
|
||||
ordering = ('last_name', 'first_name')
|
||||
|
||||
def __str__(self):
|
||||
return "%s %s" % (self.first_name, self.last_name)
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Business(models.Model):
|
||||
name = models.CharField(max_length=20, primary_key=True)
|
||||
employees = models.ManyToManyField(Employee)
|
||||
class Meta:
|
||||
verbose_name_plural = 'businesses'
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class Bar(models.Model):
|
||||
id = MyAutoField(primary_key=True, db_index=True)
|
||||
|
||||
def __str__(self):
|
||||
return repr(self.pk)
|
||||
|
||||
|
||||
class Foo(models.Model):
|
||||
bar = models.ForeignKey(Bar)
|
||||
|
182
tests/custom_pk/tests.py
Normal file
182
tests/custom_pk/tests.py
Normal file
|
@ -0,0 +1,182 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import absolute_import, unicode_literals
|
||||
|
||||
from django.db import transaction, IntegrityError
|
||||
from django.test import TestCase, skipIfDBFeature
|
||||
from django.utils import six
|
||||
|
||||
from .models import Employee, Business, Bar, Foo
|
||||
|
||||
|
||||
class CustomPKTests(TestCase):
|
||||
def test_custom_pk(self):
|
||||
dan = Employee.objects.create(
|
||||
employee_code=123, first_name="Dan", last_name="Jones"
|
||||
)
|
||||
self.assertQuerysetEqual(
|
||||
Employee.objects.all(), [
|
||||
"Dan Jones",
|
||||
],
|
||||
six.text_type
|
||||
)
|
||||
|
||||
fran = Employee.objects.create(
|
||||
employee_code=456, first_name="Fran", last_name="Bones"
|
||||
)
|
||||
self.assertQuerysetEqual(
|
||||
Employee.objects.all(), [
|
||||
"Fran Bones",
|
||||
"Dan Jones",
|
||||
],
|
||||
six.text_type
|
||||
)
|
||||
|
||||
self.assertEqual(Employee.objects.get(pk=123), dan)
|
||||
self.assertEqual(Employee.objects.get(pk=456), fran)
|
||||
|
||||
self.assertRaises(Employee.DoesNotExist,
|
||||
lambda: Employee.objects.get(pk=42)
|
||||
)
|
||||
|
||||
# Use the name of the primary key, rather than pk.
|
||||
self.assertEqual(Employee.objects.get(employee_code=123), dan)
|
||||
# pk can be used as a substitute for the primary key.
|
||||
self.assertQuerysetEqual(
|
||||
Employee.objects.filter(pk__in=[123, 456]), [
|
||||
"Fran Bones",
|
||||
"Dan Jones",
|
||||
],
|
||||
six.text_type
|
||||
)
|
||||
# The primary key can be accessed via the pk property on the model.
|
||||
e = Employee.objects.get(pk=123)
|
||||
self.assertEqual(e.pk, 123)
|
||||
# Or we can use the real attribute name for the primary key:
|
||||
self.assertEqual(e.employee_code, 123)
|
||||
|
||||
# Fran got married and changed her last name.
|
||||
fran = Employee.objects.get(pk=456)
|
||||
fran.last_name = "Jones"
|
||||
fran.save()
|
||||
|
||||
self.assertQuerysetEqual(
|
||||
Employee.objects.filter(last_name="Jones"), [
|
||||
"Dan Jones",
|
||||
"Fran Jones",
|
||||
],
|
||||
six.text_type
|
||||
)
|
||||
|
||||
emps = Employee.objects.in_bulk([123, 456])
|
||||
self.assertEqual(emps[123], dan)
|
||||
|
||||
b = Business.objects.create(name="Sears")
|
||||
b.employees.add(dan, fran)
|
||||
self.assertQuerysetEqual(
|
||||
b.employees.all(), [
|
||||
"Dan Jones",
|
||||
"Fran Jones",
|
||||
],
|
||||
six.text_type
|
||||
)
|
||||
self.assertQuerysetEqual(
|
||||
fran.business_set.all(), [
|
||||
"Sears",
|
||||
],
|
||||
lambda b: b.name
|
||||
)
|
||||
|
||||
self.assertEqual(Business.objects.in_bulk(["Sears"]), {
|
||||
"Sears": b,
|
||||
})
|
||||
|
||||
self.assertQuerysetEqual(
|
||||
Business.objects.filter(name="Sears"), [
|
||||
"Sears"
|
||||
],
|
||||
lambda b: b.name
|
||||
)
|
||||
self.assertQuerysetEqual(
|
||||
Business.objects.filter(pk="Sears"), [
|
||||
"Sears",
|
||||
],
|
||||
lambda b: b.name
|
||||
)
|
||||
|
||||
# Queries across tables, involving primary key
|
||||
self.assertQuerysetEqual(
|
||||
Employee.objects.filter(business__name="Sears"), [
|
||||
"Dan Jones",
|
||||
"Fran Jones",
|
||||
],
|
||||
six.text_type,
|
||||
)
|
||||
self.assertQuerysetEqual(
|
||||
Employee.objects.filter(business__pk="Sears"), [
|
||||
"Dan Jones",
|
||||
"Fran Jones",
|
||||
],
|
||||
six.text_type,
|
||||
)
|
||||
|
||||
self.assertQuerysetEqual(
|
||||
Business.objects.filter(employees__employee_code=123), [
|
||||
"Sears",
|
||||
],
|
||||
lambda b: b.name
|
||||
)
|
||||
self.assertQuerysetEqual(
|
||||
Business.objects.filter(employees__pk=123), [
|
||||
"Sears",
|
||||
],
|
||||
lambda b: b.name,
|
||||
)
|
||||
|
||||
self.assertQuerysetEqual(
|
||||
Business.objects.filter(employees__first_name__startswith="Fran"), [
|
||||
"Sears",
|
||||
],
|
||||
lambda b: b.name
|
||||
)
|
||||
|
||||
def test_unicode_pk(self):
|
||||
# Primary key may be unicode string
|
||||
bus = Business.objects.create(name='jaźń')
|
||||
|
||||
def test_unique_pk(self):
|
||||
# The primary key must also obviously be unique, so trying to create a
|
||||
# new object with the same primary key will fail.
|
||||
e = Employee.objects.create(
|
||||
employee_code=123, first_name="Frank", last_name="Jones"
|
||||
)
|
||||
sid = transaction.savepoint()
|
||||
self.assertRaises(IntegrityError,
|
||||
Employee.objects.create, employee_code=123, first_name="Fred", last_name="Jones"
|
||||
)
|
||||
transaction.savepoint_rollback(sid)
|
||||
|
||||
def test_custom_field_pk(self):
|
||||
# Regression for #10785 -- Custom fields can be used for primary keys.
|
||||
new_bar = Bar.objects.create()
|
||||
new_foo = Foo.objects.create(bar=new_bar)
|
||||
|
||||
f = Foo.objects.get(bar=new_bar.pk)
|
||||
self.assertEqual(f, new_foo)
|
||||
self.assertEqual(f.bar, new_bar)
|
||||
|
||||
f = Foo.objects.get(bar=new_bar)
|
||||
self.assertEqual(f, new_foo),
|
||||
self.assertEqual(f.bar, new_bar)
|
||||
|
||||
# SQLite lets objects be saved with an empty primary key, even though an
|
||||
# integer is expected. So we can't check for an error being raised in that
|
||||
# case for SQLite. Remove it from the suite for this next bit.
|
||||
@skipIfDBFeature('supports_unspecified_pk')
|
||||
def test_required_pk(self):
|
||||
# The primary key must be specified, so an error is raised if you
|
||||
# try to create an object without it.
|
||||
sid = transaction.savepoint()
|
||||
self.assertRaises(IntegrityError,
|
||||
Employee.objects.create, first_name="Tom", last_name="Smith"
|
||||
)
|
||||
transaction.savepoint_rollback(sid)
|
Loading…
Add table
Add a link
Reference in a new issue