2007-04-06 10:25:58 +08:00
|
|
|
from django.db import models
|
2007-07-20 20:07:58 +08:00
|
|
|
from django.contrib.auth.models import User
|
2007-09-15 08:08:08 +08:00
|
|
|
from django.conf import settings
|
2008-02-22 20:50:10 +08:00
|
|
|
import os
|
2007-04-06 10:25:58 +08:00
|
|
|
|
|
|
|
class Animal(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
name = models.CharField(max_length=150)
|
|
|
|
latin_name = models.CharField(max_length=150)
|
2007-04-06 10:25:58 +08:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
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
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
|
|
|
return self.common_name
|
2007-04-06 10:25:58 +08:00
|
|
|
|
2007-04-17 19:11:26 +08:00
|
|
|
class Plant(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
name = models.CharField(max_length=150)
|
2007-04-17 19:11:26 +08:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
# For testing when upper case letter in app name; regression for #4057
|
|
|
|
db_table = "Fixtures_regress_plant"
|
|
|
|
|
2007-07-20 20:07:58 +08:00
|
|
|
class Stuff(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
name = models.CharField(max_length=20, null=True)
|
2007-07-20 20:07:58 +08:00
|
|
|
owner = models.ForeignKey(User, null=True)
|
2008-06-30 08:38:14 +08:00
|
|
|
|
2007-07-20 20:07:58 +08:00
|
|
|
def __unicode__(self):
|
2007-09-15 08:08:08 +08:00
|
|
|
# Oracle doesn't distinguish between None and the empty string.
|
|
|
|
# This hack makes the test case pass using Oracle.
|
|
|
|
name = self.name
|
|
|
|
if settings.DATABASE_ENGINE == 'oracle' and name == u'':
|
|
|
|
name = None
|
|
|
|
return unicode(name) + u' is owned by ' + unicode(self.owner)
|
2007-07-20 20:07:58 +08:00
|
|
|
|
2008-02-22 20:50:10 +08:00
|
|
|
class Absolute(models.Model):
|
|
|
|
name = models.CharField(max_length=40)
|
|
|
|
|
|
|
|
load_count = 0
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(Absolute, self).__init__(*args, **kwargs)
|
|
|
|
Absolute.load_count += 1
|
|
|
|
|
2008-06-30 08:38:14 +08:00
|
|
|
class Parent(models.Model):
|
|
|
|
name = models.CharField(max_length=10)
|
|
|
|
|
|
|
|
class Child(Parent):
|
|
|
|
data = models.CharField(max_length=10)
|
|
|
|
|
2008-06-30 20:18:29 +08:00
|
|
|
# Models to regresison check #7572
|
|
|
|
class Channel(models.Model):
|
|
|
|
name = models.CharField(max_length=255)
|
|
|
|
|
|
|
|
class Article(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
channels = models.ManyToManyField(Channel)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
ordering = ('id',)
|
2008-02-22 20:50:10 +08:00
|
|
|
|
2007-04-06 10:25:58 +08:00
|
|
|
__test__ = {'API_TESTS':"""
|
|
|
|
>>> from django.core import management
|
|
|
|
|
|
|
|
# Load a fixture that uses PK=1
|
2007-08-16 14:06:55 +08:00
|
|
|
>>> management.call_command('loaddata', 'sequence', verbosity=0)
|
2008-06-30 08:38:14 +08:00
|
|
|
|
2007-04-06 10:25:58 +08:00
|
|
|
# Create a new animal. Without a sequence reset, this new object
|
|
|
|
# will take a PK of 1 (on Postgres), and the save will fail.
|
|
|
|
# This is a regression test for ticket #3790.
|
|
|
|
>>> animal = Animal(name='Platypus', latin_name='Ornithorhynchus anatinus')
|
|
|
|
>>> animal.save()
|
|
|
|
|
2007-07-20 20:07:58 +08:00
|
|
|
###############################################
|
|
|
|
# Regression test for ticket #4558 -- pretty printing of XML fixtures
|
|
|
|
# doesn't affect parsing of None values.
|
|
|
|
|
|
|
|
# Load a pretty-printed XML fixture with Nulls.
|
2007-08-16 14:06:55 +08:00
|
|
|
>>> management.call_command('loaddata', 'pretty.xml', verbosity=0)
|
2007-07-20 20:07:58 +08:00
|
|
|
>>> Stuff.objects.all()
|
|
|
|
[<Stuff: None is owned by None>]
|
|
|
|
|
2008-02-22 20:50:10 +08:00
|
|
|
###############################################
|
2008-06-30 08:38:14 +08:00
|
|
|
# Regression test for ticket #6436 --
|
2008-02-22 20:50:10 +08:00
|
|
|
# os.path.join will throw away the initial parts of a path if it encounters
|
2008-06-30 08:38:14 +08:00
|
|
|
# an absolute path. This means that if a fixture is specified as an absolute path,
|
2008-02-22 20:50:10 +08:00
|
|
|
# we need to make sure we don't discover the absolute path in every fixture directory.
|
|
|
|
|
|
|
|
>>> load_absolute_path = os.path.join(os.path.dirname(__file__), 'fixtures', 'absolute.json')
|
|
|
|
>>> management.call_command('loaddata', load_absolute_path, verbosity=0)
|
|
|
|
>>> Absolute.load_count
|
|
|
|
1
|
|
|
|
|
2008-06-08 16:21:18 +08:00
|
|
|
###############################################
|
|
|
|
# Test for ticket #4371 -- fixture loading fails silently in testcases
|
|
|
|
# Validate that error conditions are caught correctly
|
|
|
|
|
|
|
|
# redirect stderr for the next few tests...
|
|
|
|
>>> import sys
|
|
|
|
>>> savestderr = sys.stderr
|
|
|
|
>>> sys.stderr = sys.stdout
|
|
|
|
|
|
|
|
# Loading data of an unknown format should fail
|
|
|
|
>>> management.call_command('loaddata', 'bad_fixture1.unkn', verbosity=0)
|
|
|
|
Problem installing fixture 'bad_fixture1': unkn is not a known serialization format.
|
|
|
|
|
|
|
|
# Loading a fixture file with invalid data using explicit filename
|
|
|
|
>>> management.call_command('loaddata', 'bad_fixture2.xml', verbosity=0)
|
|
|
|
No fixture data found for 'bad_fixture2'. (File format may be invalid.)
|
|
|
|
|
|
|
|
# Loading a fixture file with invalid data without file extension
|
|
|
|
>>> management.call_command('loaddata', 'bad_fixture2', verbosity=0)
|
|
|
|
No fixture data found for 'bad_fixture2'. (File format may be invalid.)
|
|
|
|
|
|
|
|
>>> sys.stderr = savestderr
|
|
|
|
|
2008-06-30 08:38:14 +08:00
|
|
|
###############################################
|
|
|
|
# Test for ticket #7565 -- PostgreSQL sequence resetting checks shouldn't
|
|
|
|
# ascend to parent models when inheritance is used (since they are treated
|
|
|
|
# individually).
|
|
|
|
|
|
|
|
>>> management.call_command('loaddata', 'model-inheritance.json', verbosity=0)
|
|
|
|
|
2008-06-30 20:18:29 +08:00
|
|
|
###############################################
|
|
|
|
# Test for ticket #7572 -- MySQL has a problem if the same connection is
|
|
|
|
# used to create tables, load data, and then query over that data.
|
|
|
|
# To compensate, we close the connection after running loaddata.
|
|
|
|
# This ensures that a new connection is opened when test queries are issued.
|
|
|
|
|
|
|
|
>>> management.call_command('loaddata', 'big-fixture.json', verbosity=0)
|
|
|
|
|
|
|
|
>>> articles = Article.objects.exclude(id=9)
|
|
|
|
>>> articles.values_list('id', flat=True)
|
|
|
|
[1, 2, 3, 4, 5, 6, 7, 8]
|
|
|
|
|
|
|
|
# Just for good measure, run the same query again. Under the influence of
|
|
|
|
# ticket #7572, this will give a different result to the previous call.
|
|
|
|
>>> articles.values_list('id', flat=True)
|
|
|
|
[1, 2, 3, 4, 5, 6, 7, 8]
|
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
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
2007-07-04 20:11:04 +08:00
|
|
|
"""}
|