2010-08-23 15:04:41 +08:00
|
|
|
from django.core import management
|
2016-01-03 03:11:18 +08:00
|
|
|
from django.core.management import CommandError
|
2014-12-27 02:23:38 +08:00
|
|
|
from django.test import TestCase
|
2010-08-23 15:04:41 +08:00
|
|
|
|
2014-12-27 02:23:38 +08:00
|
|
|
from .models import Article
|
2010-08-23 15:04:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
class SampleTestCase(TestCase):
|
2020-05-10 01:37:44 +08:00
|
|
|
fixtures = ["model_package_fixture1.json", "model_package_fixture2.json"]
|
2010-08-23 15:04:41 +08:00
|
|
|
|
2019-04-14 21:00:48 +08:00
|
|
|
def test_class_fixtures(self):
|
2010-08-23 15:04:41 +08:00
|
|
|
"Test cases can load fixture objects into models defined in packages"
|
|
|
|
self.assertQuerysetEqual(
|
2013-10-27 03:15:03 +08:00
|
|
|
Article.objects.all(),
|
|
|
|
[
|
2012-06-08 00:08:47 +08:00
|
|
|
"Django conquers world!",
|
|
|
|
"Copyright is fine the way it is",
|
|
|
|
"Poker has no place on ESPN",
|
2010-08-23 15:04:41 +08:00
|
|
|
],
|
|
|
|
lambda a: a.headline,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class FixtureTestCase(TestCase):
|
|
|
|
def test_loaddata(self):
|
|
|
|
"Fixtures can load data into models defined in packages"
|
|
|
|
# Load fixture 1. Single JSON file, with two objects
|
2020-05-10 01:37:44 +08:00
|
|
|
management.call_command("loaddata", "model_package_fixture1.json", verbosity=0)
|
2010-08-23 15:04:41 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.all(),
|
|
|
|
[
|
2012-06-08 00:08:47 +08:00
|
|
|
"Time to reform copyright",
|
|
|
|
"Poker has no place on ESPN",
|
2010-08-23 15:04:41 +08:00
|
|
|
],
|
|
|
|
lambda a: a.headline,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Load fixture 2. JSON file imported by default. Overwrites some
|
|
|
|
# existing objects
|
2020-05-10 01:37:44 +08:00
|
|
|
management.call_command("loaddata", "model_package_fixture2.json", verbosity=0)
|
2010-08-23 15:04:41 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.all(),
|
|
|
|
[
|
2012-06-08 00:08:47 +08:00
|
|
|
"Django conquers world!",
|
|
|
|
"Copyright is fine the way it is",
|
|
|
|
"Poker has no place on ESPN",
|
2010-08-23 15:04:41 +08:00
|
|
|
],
|
|
|
|
lambda a: a.headline,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Load a fixture that doesn't exist
|
2016-01-03 03:11:18 +08:00
|
|
|
with self.assertRaisesMessage(
|
|
|
|
CommandError, "No fixture named 'unknown' found."
|
|
|
|
):
|
2013-06-30 20:17:33 +08:00
|
|
|
management.call_command("loaddata", "unknown.json", verbosity=0)
|
2013-05-19 17:20:10 +08:00
|
|
|
|
2010-08-23 15:04:41 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Article.objects.all(),
|
|
|
|
[
|
2012-06-08 00:08:47 +08:00
|
|
|
"Django conquers world!",
|
|
|
|
"Copyright is fine the way it is",
|
|
|
|
"Poker has no place on ESPN",
|
2010-08-23 15:04:41 +08:00
|
|
|
],
|
|
|
|
lambda a: a.headline,
|
|
|
|
)
|