2021-01-08 00:54:40 +08:00
|
|
|
import logging
|
2017-01-20 21:01:02 +08:00
|
|
|
import os
|
2013-07-01 20:22:27 +08:00
|
|
|
import unittest
|
2018-04-28 05:18:15 +08:00
|
|
|
import warnings
|
2017-01-07 19:11:46 +08:00
|
|
|
from io import StringIO
|
2017-02-25 02:58:56 +08:00
|
|
|
from unittest import mock
|
2013-07-01 20:22:27 +08:00
|
|
|
|
2017-02-25 02:58:56 +08:00
|
|
|
from django.conf import settings
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.contrib.staticfiles.finders import get_finder, get_finders
|
2015-01-25 22:53:40 +08:00
|
|
|
from django.contrib.staticfiles.storage import staticfiles_storage
|
2018-07-12 12:12:20 +08:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2014-10-04 19:02:10 +08:00
|
|
|
from django.core.files.storage import default_storage
|
2020-05-20 18:04:36 +08:00
|
|
|
from django.db import (
|
|
|
|
IntegrityError,
|
|
|
|
connection,
|
|
|
|
connections,
|
|
|
|
models,
|
|
|
|
router,
|
|
|
|
transaction,
|
|
|
|
)
|
2021-11-21 02:55:10 +08:00
|
|
|
from django.forms import (
|
|
|
|
CharField,
|
|
|
|
EmailField,
|
|
|
|
Form,
|
|
|
|
IntegerField,
|
|
|
|
ValidationError,
|
|
|
|
formset_factory,
|
|
|
|
)
|
2012-02-01 04:36:11 +08:00
|
|
|
from django.http import HttpResponse
|
2012-02-01 03:23:09 +08:00
|
|
|
from django.template.loader import render_to_string
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.test import (
|
2021-09-16 15:12:56 +08:00
|
|
|
SimpleTestCase,
|
|
|
|
TestCase,
|
|
|
|
TransactionTestCase,
|
|
|
|
skipIfDBFeature,
|
|
|
|
skipUnlessDBFeature,
|
2015-01-28 20:35:27 +08:00
|
|
|
)
|
2013-03-02 04:29:39 +08:00
|
|
|
from django.test.html import HTMLParseError, parse_html
|
2021-11-13 01:36:13 +08:00
|
|
|
from django.test.testcases import DatabaseOperationForbidden
|
2015-11-17 13:33:18 +08:00
|
|
|
from django.test.utils import (
|
2022-01-04 20:02:14 +08:00
|
|
|
CaptureQueriesContext,
|
|
|
|
TestContextDecorator,
|
|
|
|
ignore_warnings,
|
|
|
|
isolate_apps,
|
2018-08-18 04:30:27 +08:00
|
|
|
override_settings,
|
|
|
|
setup_test_environment,
|
2015-11-17 13:33:18 +08:00
|
|
|
)
|
2019-01-21 22:31:33 +08:00
|
|
|
from django.urls import NoReverseMatch, path, reverse, reverse_lazy
|
2022-01-04 20:02:14 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango50Warning
|
2021-01-08 00:54:40 +08:00
|
|
|
from django.utils.log import DEFAULT_LOGGING
|
2010-10-17 12:26:47 +08:00
|
|
|
|
2014-09-29 23:17:44 +08:00
|
|
|
from .models import Car, Person, PossessedCar
|
2014-05-04 22:29:49 +08:00
|
|
|
from .views import empty_response
|
2010-10-17 12:26:47 +08:00
|
|
|
|
2010-10-12 11:33:19 +08:00
|
|
|
|
2015-04-18 05:38:20 +08:00
|
|
|
class SkippingTestCase(SimpleTestCase):
|
2019-01-13 05:14:54 +08:00
|
|
|
def _assert_skipping(self, func, expected_exc, msg=None):
|
2014-08-24 00:01:33 +08:00
|
|
|
try:
|
2019-01-13 05:14:54 +08:00
|
|
|
if msg is not None:
|
2019-04-28 21:15:19 +08:00
|
|
|
with self.assertRaisesMessage(expected_exc, msg):
|
|
|
|
func()
|
2019-01-13 05:14:54 +08:00
|
|
|
else:
|
2019-04-28 21:15:19 +08:00
|
|
|
with self.assertRaises(expected_exc):
|
|
|
|
func()
|
2019-01-13 05:14:54 +08:00
|
|
|
except unittest.SkipTest:
|
|
|
|
self.fail("%s should not result in a skipped test." % func.__name__)
|
2014-08-24 00:01:33 +08:00
|
|
|
|
2011-01-20 12:47:47 +08:00
|
|
|
def test_skip_unless_db_feature(self):
|
2014-08-24 00:01:33 +08:00
|
|
|
"""
|
|
|
|
Testing the django.test.skipUnlessDBFeature decorator.
|
|
|
|
"""
|
2011-01-20 12:47:47 +08:00
|
|
|
# Total hack, but it works, just want an attribute that's always true.
|
|
|
|
@skipUnlessDBFeature("__class__")
|
|
|
|
def test_func():
|
|
|
|
raise ValueError
|
|
|
|
|
2014-08-24 00:01:33 +08:00
|
|
|
@skipUnlessDBFeature("notprovided")
|
|
|
|
def test_func2():
|
|
|
|
raise ValueError
|
|
|
|
|
|
|
|
@skipUnlessDBFeature("__class__", "__class__")
|
|
|
|
def test_func3():
|
|
|
|
raise ValueError
|
|
|
|
|
|
|
|
@skipUnlessDBFeature("__class__", "notprovided")
|
|
|
|
def test_func4():
|
|
|
|
raise ValueError
|
|
|
|
|
|
|
|
self._assert_skipping(test_func, ValueError)
|
|
|
|
self._assert_skipping(test_func2, unittest.SkipTest)
|
|
|
|
self._assert_skipping(test_func3, ValueError)
|
|
|
|
self._assert_skipping(test_func4, unittest.SkipTest)
|
|
|
|
|
2019-01-13 05:14:54 +08:00
|
|
|
class SkipTestCase(SimpleTestCase):
|
|
|
|
@skipUnlessDBFeature("missing")
|
|
|
|
def test_foo(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
self._assert_skipping(
|
|
|
|
SkipTestCase("test_foo").test_foo,
|
|
|
|
ValueError,
|
|
|
|
"skipUnlessDBFeature cannot be used on test_foo (test_utils.tests."
|
|
|
|
"SkippingTestCase.test_skip_unless_db_feature.<locals>.SkipTestCase) "
|
|
|
|
"as SkippingTestCase.test_skip_unless_db_feature.<locals>.SkipTestCase "
|
|
|
|
"doesn't allow queries against the 'default' database.",
|
|
|
|
)
|
|
|
|
|
2014-08-24 00:01:33 +08:00
|
|
|
def test_skip_if_db_feature(self):
|
|
|
|
"""
|
|
|
|
Testing the django.test.skipIfDBFeature decorator.
|
|
|
|
"""
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2014-08-24 00:01:33 +08:00
|
|
|
@skipIfDBFeature("__class__")
|
|
|
|
def test_func():
|
|
|
|
raise ValueError
|
|
|
|
|
|
|
|
@skipIfDBFeature("notprovided")
|
|
|
|
def test_func2():
|
|
|
|
raise ValueError
|
|
|
|
|
|
|
|
@skipIfDBFeature("__class__", "__class__")
|
|
|
|
def test_func3():
|
|
|
|
raise ValueError
|
|
|
|
|
|
|
|
@skipIfDBFeature("__class__", "notprovided")
|
|
|
|
def test_func4():
|
|
|
|
raise ValueError
|
|
|
|
|
|
|
|
@skipIfDBFeature("notprovided", "notprovided")
|
|
|
|
def test_func5():
|
|
|
|
raise ValueError
|
|
|
|
|
|
|
|
self._assert_skipping(test_func, unittest.SkipTest)
|
|
|
|
self._assert_skipping(test_func2, ValueError)
|
|
|
|
self._assert_skipping(test_func3, unittest.SkipTest)
|
|
|
|
self._assert_skipping(test_func4, unittest.SkipTest)
|
|
|
|
self._assert_skipping(test_func5, ValueError)
|
2011-01-20 12:47:47 +08:00
|
|
|
|
2019-01-13 05:14:54 +08:00
|
|
|
class SkipTestCase(SimpleTestCase):
|
|
|
|
@skipIfDBFeature("missing")
|
|
|
|
def test_foo(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
self._assert_skipping(
|
|
|
|
SkipTestCase("test_foo").test_foo,
|
|
|
|
ValueError,
|
|
|
|
"skipIfDBFeature cannot be used on test_foo (test_utils.tests."
|
|
|
|
"SkippingTestCase.test_skip_if_db_feature.<locals>.SkipTestCase) "
|
|
|
|
"as SkippingTestCase.test_skip_if_db_feature.<locals>.SkipTestCase "
|
|
|
|
"doesn't allow queries against the 'default' database.",
|
|
|
|
)
|
|
|
|
|
2011-01-20 12:47:47 +08:00
|
|
|
|
2019-01-13 05:14:54 +08:00
|
|
|
class SkippingClassTestCase(TestCase):
|
2013-07-20 02:30:14 +08:00
|
|
|
def test_skip_class_unless_db_feature(self):
|
|
|
|
@skipUnlessDBFeature("__class__")
|
2019-01-13 05:14:54 +08:00
|
|
|
class NotSkippedTests(TestCase):
|
2013-07-20 02:30:14 +08:00
|
|
|
def test_dummy(self):
|
|
|
|
return
|
|
|
|
|
2016-09-13 10:06:31 +08:00
|
|
|
@skipUnlessDBFeature("missing")
|
2013-07-20 02:30:14 +08:00
|
|
|
@skipIfDBFeature("__class__")
|
2019-01-13 05:14:54 +08:00
|
|
|
class SkippedTests(TestCase):
|
2013-07-20 02:30:14 +08:00
|
|
|
def test_will_be_skipped(self):
|
|
|
|
self.fail("We should never arrive here.")
|
|
|
|
|
2016-09-13 10:06:31 +08:00
|
|
|
@skipIfDBFeature("__dict__")
|
|
|
|
class SkippedTestsSubclass(SkippedTests):
|
|
|
|
pass
|
|
|
|
|
2013-07-20 02:30:14 +08:00
|
|
|
test_suite = unittest.TestSuite()
|
|
|
|
test_suite.addTest(NotSkippedTests("test_dummy"))
|
|
|
|
try:
|
|
|
|
test_suite.addTest(SkippedTests("test_will_be_skipped"))
|
2016-09-13 10:06:31 +08:00
|
|
|
test_suite.addTest(SkippedTestsSubclass("test_will_be_skipped"))
|
2013-07-20 02:30:14 +08:00
|
|
|
except unittest.SkipTest:
|
2019-01-13 05:14:54 +08:00
|
|
|
self.fail("SkipTest should not be raised here.")
|
2017-01-07 19:11:46 +08:00
|
|
|
result = unittest.TextTestRunner(stream=StringIO()).run(test_suite)
|
2016-09-13 10:06:31 +08:00
|
|
|
self.assertEqual(result.testsRun, 3)
|
|
|
|
self.assertEqual(len(result.skipped), 2)
|
|
|
|
self.assertEqual(result.skipped[0][1], "Database has feature(s) __class__")
|
|
|
|
self.assertEqual(result.skipped[1][1], "Database has feature(s) __class__")
|
2013-07-20 02:30:14 +08:00
|
|
|
|
2019-01-13 05:14:54 +08:00
|
|
|
def test_missing_default_databases(self):
|
|
|
|
@skipIfDBFeature("missing")
|
|
|
|
class MissingDatabases(SimpleTestCase):
|
|
|
|
def test_assertion_error(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
suite = unittest.TestSuite()
|
|
|
|
try:
|
|
|
|
suite.addTest(MissingDatabases("test_assertion_error"))
|
|
|
|
except unittest.SkipTest:
|
|
|
|
self.fail("SkipTest should not be raised at this stage")
|
|
|
|
runner = unittest.TextTestRunner(stream=StringIO())
|
|
|
|
msg = (
|
|
|
|
"skipIfDBFeature cannot be used on <class 'test_utils.tests."
|
|
|
|
"SkippingClassTestCase.test_missing_default_databases.<locals>."
|
|
|
|
"MissingDatabases'> as it doesn't allow queries against the "
|
|
|
|
"'default' database."
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(ValueError, msg):
|
|
|
|
runner.run(suite)
|
|
|
|
|
2013-07-20 02:30:14 +08:00
|
|
|
|
2014-04-05 14:04:46 +08:00
|
|
|
@override_settings(ROOT_URLCONF="test_utils.urls")
|
2011-01-20 12:47:47 +08:00
|
|
|
class AssertNumQueriesTests(TestCase):
|
2010-10-31 16:29:07 +08:00
|
|
|
def test_assert_num_queries(self):
|
|
|
|
def test_func():
|
|
|
|
raise ValueError
|
|
|
|
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
self.assertNumQueries(2, test_func)
|
2010-10-31 16:29:07 +08:00
|
|
|
|
2011-01-20 12:47:47 +08:00
|
|
|
def test_assert_num_queries_with_client(self):
|
|
|
|
person = Person.objects.create(name="test")
|
2010-10-17 12:26:47 +08:00
|
|
|
|
2011-01-20 12:47:47 +08:00
|
|
|
self.assertNumQueries(
|
|
|
|
1, self.client.get, "/test_utils/get_person/%s/" % person.pk
|
|
|
|
)
|
2010-10-17 12:26:47 +08:00
|
|
|
|
2011-01-20 12:47:47 +08:00
|
|
|
self.assertNumQueries(
|
|
|
|
1, self.client.get, "/test_utils/get_person/%s/" % person.pk
|
|
|
|
)
|
2010-10-17 12:26:47 +08:00
|
|
|
|
2011-01-20 12:47:47 +08:00
|
|
|
def test_func():
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % person.pk)
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % person.pk)
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2011-01-20 12:47:47 +08:00
|
|
|
self.assertNumQueries(2, test_func)
|
2010-11-11 23:06:20 +08:00
|
|
|
|
2011-08-13 08:42:08 +08:00
|
|
|
|
2017-05-15 03:46:23 +08:00
|
|
|
@unittest.skipUnless(
|
|
|
|
connection.vendor != "sqlite" or not connection.is_in_memory_db(),
|
|
|
|
"For SQLite in-memory tests, closing the connection destroys the database.",
|
|
|
|
)
|
|
|
|
class AssertNumQueriesUponConnectionTests(TransactionTestCase):
|
|
|
|
available_apps = []
|
|
|
|
|
|
|
|
def test_ignores_connection_configuration_queries(self):
|
|
|
|
real_ensure_connection = connection.ensure_connection
|
|
|
|
connection.close()
|
|
|
|
|
|
|
|
def make_configuration_query():
|
|
|
|
is_opening_connection = connection.connection is None
|
|
|
|
real_ensure_connection()
|
|
|
|
|
|
|
|
if is_opening_connection:
|
|
|
|
# Avoid infinite recursion. Creating a cursor calls
|
|
|
|
# ensure_connection() which is currently mocked by this method.
|
2020-02-04 11:07:00 +08:00
|
|
|
with connection.cursor() as cursor:
|
|
|
|
cursor.execute("SELECT 1" + connection.features.bare_select_suffix)
|
2017-05-15 03:46:23 +08:00
|
|
|
|
|
|
|
ensure_connection = (
|
|
|
|
"django.db.backends.base.base.BaseDatabaseWrapper.ensure_connection"
|
2022-02-04 03:24:19 +08:00
|
|
|
)
|
2017-05-15 03:46:23 +08:00
|
|
|
with mock.patch(ensure_connection, side_effect=make_configuration_query):
|
|
|
|
with self.assertNumQueries(1):
|
|
|
|
list(Car.objects.all())
|
|
|
|
|
|
|
|
|
2012-12-13 19:33:11 +08:00
|
|
|
class AssertQuerysetEqualTests(TestCase):
|
2018-11-24 09:59:38 +08:00
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
|
|
|
cls.p1 = Person.objects.create(name="p1")
|
|
|
|
cls.p2 = Person.objects.create(name="p2")
|
2012-12-13 19:33:11 +08:00
|
|
|
|
2020-10-19 00:29:52 +08:00
|
|
|
def test_empty(self):
|
|
|
|
self.assertQuerysetEqual(Person.objects.filter(name="p3"), [])
|
|
|
|
|
2012-12-13 19:33:11 +08:00
|
|
|
def test_ordered(self):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all().order_by("name"),
|
2020-10-19 00:29:52 +08:00
|
|
|
[self.p1, self.p2],
|
2012-12-13 19:33:11 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
def test_unordered(self):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all().order_by("name"), [self.p2, self.p1], ordered=False
|
|
|
|
)
|
|
|
|
|
2020-10-19 00:29:52 +08:00
|
|
|
def test_queryset(self):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all().order_by("name"),
|
|
|
|
Person.objects.all().order_by("name"),
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_flat_values_list(self):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all().order_by("name").values_list("name", flat=True),
|
|
|
|
["p1", "p2"],
|
|
|
|
)
|
|
|
|
|
2012-12-13 19:33:11 +08:00
|
|
|
def test_transform(self):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all().order_by("name"),
|
|
|
|
[self.p1.pk, self.p2.pk],
|
|
|
|
transform=lambda x: x.pk,
|
|
|
|
)
|
|
|
|
|
2020-10-19 00:29:52 +08:00
|
|
|
def test_repr_transform(self):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all().order_by("name"),
|
|
|
|
[repr(self.p1), repr(self.p2)],
|
|
|
|
transform=repr,
|
|
|
|
)
|
|
|
|
|
2012-12-13 19:33:11 +08:00
|
|
|
def test_undefined_order(self):
|
|
|
|
# Using an unordered queryset with more than one ordered value
|
|
|
|
# is an error.
|
2021-02-26 20:26:48 +08:00
|
|
|
msg = (
|
|
|
|
"Trying to compare non-ordered queryset against more than one "
|
|
|
|
"ordered value."
|
|
|
|
)
|
2017-05-29 03:37:21 +08:00
|
|
|
with self.assertRaisesMessage(ValueError, msg):
|
2012-12-13 19:33:11 +08:00
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all(),
|
2020-10-19 00:29:52 +08:00
|
|
|
[self.p1, self.p2],
|
2012-12-13 19:33:11 +08:00
|
|
|
)
|
|
|
|
# No error for one value.
|
2020-10-19 00:29:52 +08:00
|
|
|
self.assertQuerysetEqual(Person.objects.filter(name="p1"), [self.p1])
|
2012-12-13 19:33:11 +08:00
|
|
|
|
2014-09-29 23:17:44 +08:00
|
|
|
def test_repeated_values(self):
|
|
|
|
"""
|
2016-10-27 15:53:39 +08:00
|
|
|
assertQuerysetEqual checks the number of appearance of each item
|
2014-09-29 23:17:44 +08:00
|
|
|
when used with option ordered=False.
|
|
|
|
"""
|
|
|
|
batmobile = Car.objects.create(name="Batmobile")
|
|
|
|
k2000 = Car.objects.create(name="K 2000")
|
|
|
|
PossessedCar.objects.bulk_create(
|
|
|
|
[
|
|
|
|
PossessedCar(car=batmobile, belongs_to=self.p1),
|
|
|
|
PossessedCar(car=batmobile, belongs_to=self.p1),
|
|
|
|
PossessedCar(car=k2000, belongs_to=self.p1),
|
|
|
|
PossessedCar(car=k2000, belongs_to=self.p1),
|
|
|
|
PossessedCar(car=k2000, belongs_to=self.p1),
|
|
|
|
PossessedCar(car=k2000, belongs_to=self.p1),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertQuerysetEqual(
|
2020-10-19 00:29:52 +08:00
|
|
|
self.p1.cars.all(), [batmobile, k2000], ordered=False
|
2014-09-29 23:17:44 +08:00
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(
|
2020-10-19 00:29:52 +08:00
|
|
|
self.p1.cars.all(), [batmobile] * 2 + [k2000] * 4, ordered=False
|
2014-09-29 23:17:44 +08:00
|
|
|
)
|
|
|
|
|
2021-02-21 23:37:03 +08:00
|
|
|
def test_maxdiff(self):
|
|
|
|
names = ["Joe Smith %s" % i for i in range(20)]
|
|
|
|
Person.objects.bulk_create([Person(name=name) for name in names])
|
|
|
|
names.append("Extra Person")
|
|
|
|
|
|
|
|
with self.assertRaises(AssertionError) as ctx:
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.filter(name__startswith="Joe"),
|
|
|
|
names,
|
|
|
|
ordered=False,
|
|
|
|
transform=lambda p: p.name,
|
|
|
|
)
|
|
|
|
self.assertIn("Set self.maxDiff to None to see it.", str(ctx.exception))
|
|
|
|
|
|
|
|
original = self.maxDiff
|
|
|
|
self.maxDiff = None
|
|
|
|
try:
|
|
|
|
with self.assertRaises(AssertionError) as ctx:
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.filter(name__startswith="Joe"),
|
|
|
|
names,
|
|
|
|
ordered=False,
|
|
|
|
transform=lambda p: p.name,
|
|
|
|
)
|
|
|
|
finally:
|
|
|
|
self.maxDiff = original
|
|
|
|
exception_msg = str(ctx.exception)
|
|
|
|
self.assertNotIn("Set self.maxDiff to None to see it.", exception_msg)
|
|
|
|
for name in names:
|
|
|
|
self.assertIn(name, exception_msg)
|
|
|
|
|
2012-12-13 19:33:11 +08:00
|
|
|
|
2014-04-05 14:04:46 +08:00
|
|
|
@override_settings(ROOT_URLCONF="test_utils.urls")
|
2013-03-02 04:29:39 +08:00
|
|
|
class CaptureQueriesContextManagerTests(TestCase):
|
2018-11-24 09:59:38 +08:00
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
|
|
|
cls.person_pk = str(Person.objects.create(name="test").pk)
|
2013-03-02 04:29:39 +08:00
|
|
|
|
|
|
|
def test_simple(self):
|
|
|
|
with CaptureQueriesContext(connection) as captured_queries:
|
|
|
|
Person.objects.get(pk=self.person_pk)
|
|
|
|
self.assertEqual(len(captured_queries), 1)
|
|
|
|
self.assertIn(self.person_pk, captured_queries[0]["sql"])
|
|
|
|
|
|
|
|
with CaptureQueriesContext(connection) as captured_queries:
|
|
|
|
pass
|
|
|
|
self.assertEqual(0, len(captured_queries))
|
|
|
|
|
|
|
|
def test_within(self):
|
|
|
|
with CaptureQueriesContext(connection) as captured_queries:
|
|
|
|
Person.objects.get(pk=self.person_pk)
|
|
|
|
self.assertEqual(len(captured_queries), 1)
|
|
|
|
self.assertIn(self.person_pk, captured_queries[0]["sql"])
|
|
|
|
|
|
|
|
def test_nested(self):
|
|
|
|
with CaptureQueriesContext(connection) as captured_queries:
|
|
|
|
Person.objects.count()
|
|
|
|
with CaptureQueriesContext(connection) as nested_captured_queries:
|
|
|
|
Person.objects.count()
|
|
|
|
self.assertEqual(1, len(nested_captured_queries))
|
|
|
|
self.assertEqual(2, len(captured_queries))
|
|
|
|
|
|
|
|
def test_failure(self):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
with CaptureQueriesContext(connection):
|
|
|
|
raise TypeError
|
2013-03-02 04:29:39 +08:00
|
|
|
|
|
|
|
def test_with_client(self):
|
|
|
|
with CaptureQueriesContext(connection) as captured_queries:
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % self.person_pk)
|
|
|
|
self.assertEqual(len(captured_queries), 1)
|
|
|
|
self.assertIn(self.person_pk, captured_queries[0]["sql"])
|
|
|
|
|
|
|
|
with CaptureQueriesContext(connection) as captured_queries:
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % self.person_pk)
|
|
|
|
self.assertEqual(len(captured_queries), 1)
|
|
|
|
self.assertIn(self.person_pk, captured_queries[0]["sql"])
|
|
|
|
|
|
|
|
with CaptureQueriesContext(connection) as captured_queries:
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % self.person_pk)
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % self.person_pk)
|
|
|
|
self.assertEqual(len(captured_queries), 2)
|
|
|
|
self.assertIn(self.person_pk, captured_queries[0]["sql"])
|
|
|
|
self.assertIn(self.person_pk, captured_queries[1]["sql"])
|
|
|
|
|
|
|
|
|
2014-04-05 14:04:46 +08:00
|
|
|
@override_settings(ROOT_URLCONF="test_utils.urls")
|
2011-03-28 13:58:43 +08:00
|
|
|
class AssertNumQueriesContextManagerTests(TestCase):
|
|
|
|
def test_simple(self):
|
|
|
|
with self.assertNumQueries(0):
|
|
|
|
pass
|
|
|
|
|
|
|
|
with self.assertNumQueries(1):
|
|
|
|
Person.objects.count()
|
|
|
|
|
|
|
|
with self.assertNumQueries(2):
|
|
|
|
Person.objects.count()
|
|
|
|
Person.objects.count()
|
|
|
|
|
|
|
|
def test_failure(self):
|
2020-02-05 04:58:07 +08:00
|
|
|
msg = "1 != 2 : 1 queries executed, 2 expected\nCaptured queries were:\n1."
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertNumQueries(2):
|
|
|
|
Person.objects.count()
|
2011-03-28 13:58:43 +08:00
|
|
|
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
with self.assertNumQueries(4000):
|
|
|
|
raise TypeError
|
2011-03-28 13:58:43 +08:00
|
|
|
|
|
|
|
def test_with_client(self):
|
|
|
|
person = Person.objects.create(name="test")
|
|
|
|
|
|
|
|
with self.assertNumQueries(1):
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % person.pk)
|
|
|
|
|
|
|
|
with self.assertNumQueries(1):
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % person.pk)
|
|
|
|
|
|
|
|
with self.assertNumQueries(2):
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % person.pk)
|
|
|
|
self.client.get("/test_utils/get_person/%s/" % person.pk)
|
|
|
|
|
2011-01-20 12:47:47 +08:00
|
|
|
|
2014-04-05 14:04:46 +08:00
|
|
|
@override_settings(ROOT_URLCONF="test_utils.urls")
|
2015-04-18 05:38:20 +08:00
|
|
|
class AssertTemplateUsedContextManagerTests(SimpleTestCase):
|
2012-02-01 03:23:09 +08:00
|
|
|
def test_usage(self):
|
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
|
|
|
|
with self.assertTemplateUsed(template_name="template_used/base.html"):
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
|
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
render_to_string("template_used/include.html")
|
|
|
|
|
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
render_to_string("template_used/extends.html")
|
|
|
|
|
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
|
|
|
|
def test_nested_usage(self):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
with self.assertTemplateUsed("template_used/include.html"):
|
|
|
|
render_to_string("template_used/include.html")
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed("template_used/extends.html"):
|
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
render_to_string("template_used/extends.html")
|
2012-02-01 03:23:09 +08:00
|
|
|
|
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
with self.assertTemplateUsed("template_used/alternative.html"):
|
|
|
|
render_to_string("template_used/alternative.html")
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
|
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
render_to_string("template_used/extends.html")
|
|
|
|
with self.assertTemplateNotUsed("template_used/base.html"):
|
|
|
|
render_to_string("template_used/alternative.html")
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
|
|
|
|
def test_not_used(self):
|
|
|
|
with self.assertTemplateNotUsed("template_used/base.html"):
|
|
|
|
pass
|
|
|
|
with self.assertTemplateNotUsed("template_used/alternative.html"):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_error_message(self):
|
2022-01-01 13:55:55 +08:00
|
|
|
msg = "No templates used to render the response"
|
2017-01-20 10:10:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2017-01-20 10:10:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed(template_name="template_used/base.html"):
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2017-01-20 10:10:33 +08:00
|
|
|
msg2 = (
|
2022-01-01 13:55:55 +08:00
|
|
|
"Template 'template_used/base.html' was not a template used to render "
|
|
|
|
"the response. Actual template(s) used: template_used/alternative.html"
|
2017-01-20 10:10:33 +08:00
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg2):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
render_to_string("template_used/alternative.html")
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2017-01-20 10:10:33 +08:00
|
|
|
with self.assertRaisesMessage(
|
|
|
|
AssertionError, "No templates used to render the response"
|
|
|
|
):
|
2013-11-04 23:50:14 +08:00
|
|
|
response = self.client.get("/test_utils/no_template_used/")
|
|
|
|
self.assertTemplateUsed(response, "template_used/base.html")
|
|
|
|
|
2022-01-01 13:55:55 +08:00
|
|
|
def test_msg_prefix(self):
|
|
|
|
msg_prefix = "Prefix"
|
|
|
|
msg = f"{msg_prefix}: No templates used to render the response"
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
with self.assertTemplateUsed(
|
|
|
|
"template_used/base.html", msg_prefix=msg_prefix
|
|
|
|
):
|
|
|
|
pass
|
|
|
|
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
with self.assertTemplateUsed(
|
|
|
|
template_name="template_used/base.html",
|
|
|
|
msg_prefix=msg_prefix,
|
|
|
|
):
|
|
|
|
pass
|
|
|
|
|
|
|
|
msg = (
|
|
|
|
f"{msg_prefix}: Template 'template_used/base.html' was not a "
|
|
|
|
f"template used to render the response. Actual template(s) used: "
|
|
|
|
f"template_used/alternative.html"
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
with self.assertTemplateUsed(
|
|
|
|
"template_used/base.html", msg_prefix=msg_prefix
|
|
|
|
):
|
|
|
|
render_to_string("template_used/alternative.html")
|
|
|
|
|
|
|
|
def test_count(self):
|
|
|
|
with self.assertTemplateUsed("template_used/base.html", count=2):
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
|
|
|
|
msg = (
|
|
|
|
"Template 'template_used/base.html' was expected to be rendered "
|
|
|
|
"3 time(s) but was actually rendered 2 time(s)."
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
with self.assertTemplateUsed("template_used/base.html", count=3):
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
render_to_string("template_used/base.html")
|
|
|
|
|
2012-02-01 03:23:09 +08:00
|
|
|
def test_failure(self):
|
2017-05-29 03:37:21 +08:00
|
|
|
msg = "response and/or template_name argument must be provided"
|
|
|
|
with self.assertRaisesMessage(TypeError, msg):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed():
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2017-05-29 03:37:21 +08:00
|
|
|
msg = "No templates used to render the response"
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed(""):
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2017-05-29 03:37:21 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed(""):
|
|
|
|
render_to_string("template_used/base.html")
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2017-05-29 03:37:21 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed(template_name=""):
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2017-05-29 03:37:21 +08:00
|
|
|
msg = (
|
2022-01-01 13:55:55 +08:00
|
|
|
"Template 'template_used/base.html' was not a template used to "
|
|
|
|
"render the response. Actual template(s) used: "
|
|
|
|
"template_used/alternative.html"
|
2017-05-29 03:37:21 +08:00
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertTemplateUsed("template_used/base.html"):
|
|
|
|
render_to_string("template_used/alternative.html")
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2014-10-12 00:53:29 +08:00
|
|
|
def test_assert_used_on_http_response(self):
|
|
|
|
response = HttpResponse()
|
2021-11-21 02:56:39 +08:00
|
|
|
msg = "%s() is only usable on responses fetched using the Django test Client."
|
|
|
|
with self.assertRaisesMessage(ValueError, msg % "assertTemplateUsed"):
|
2014-10-12 00:53:29 +08:00
|
|
|
self.assertTemplateUsed(response, "template.html")
|
2021-11-21 02:56:39 +08:00
|
|
|
with self.assertRaisesMessage(ValueError, msg % "assertTemplateNotUsed"):
|
2014-10-12 00:53:29 +08:00
|
|
|
self.assertTemplateNotUsed(response, "template.html")
|
|
|
|
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2015-04-18 05:38:20 +08:00
|
|
|
class HTMLEqualTests(SimpleTestCase):
|
2012-02-01 04:36:11 +08:00
|
|
|
def test_html_parser(self):
|
|
|
|
element = parse_html("<div><p>Hello</p></div>")
|
|
|
|
self.assertEqual(len(element.children), 1)
|
|
|
|
self.assertEqual(element.children[0].name, "p")
|
|
|
|
self.assertEqual(element.children[0].children[0], "Hello")
|
|
|
|
|
|
|
|
parse_html("<p>")
|
|
|
|
parse_html("<p attr>")
|
|
|
|
dom = parse_html("<p>foo")
|
|
|
|
self.assertEqual(len(dom.children), 1)
|
|
|
|
self.assertEqual(dom.name, "p")
|
|
|
|
self.assertEqual(dom[0], "foo")
|
|
|
|
|
|
|
|
def test_parse_html_in_script(self):
|
2013-10-10 20:50:32 +08:00
|
|
|
parse_html('<script>var a = "<p" + ">";</script>')
|
2012-02-01 04:36:11 +08:00
|
|
|
parse_html(
|
2022-02-04 03:24:19 +08:00
|
|
|
"""
|
2012-02-01 04:36:11 +08:00
|
|
|
<script>
|
|
|
|
var js_sha_link='<p>***</p>';
|
|
|
|
</script>
|
2022-02-04 03:24:19 +08:00
|
|
|
"""
|
2012-02-01 04:36:11 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# script content will be parsed to text
|
|
|
|
dom = parse_html(
|
2022-02-04 03:24:19 +08:00
|
|
|
"""
|
2012-02-01 04:36:11 +08:00
|
|
|
<script><p>foo</p> '</scr'+'ipt>' <span>bar</span></script>
|
2022-02-04 03:24:19 +08:00
|
|
|
"""
|
2012-02-01 04:36:11 +08:00
|
|
|
)
|
|
|
|
self.assertEqual(len(dom.children), 1)
|
|
|
|
self.assertEqual(dom.children[0], "<p>foo</p> '</scr'+'ipt>' <span>bar</span>")
|
|
|
|
|
|
|
|
def test_self_closing_tags(self):
|
2019-05-10 18:04:07 +08:00
|
|
|
self_closing_tags = [
|
|
|
|
"area",
|
|
|
|
"base",
|
|
|
|
"br",
|
|
|
|
"col",
|
|
|
|
"embed",
|
|
|
|
"hr",
|
|
|
|
"img",
|
|
|
|
"input",
|
|
|
|
"link",
|
|
|
|
"meta",
|
|
|
|
"param",
|
|
|
|
"source",
|
|
|
|
"track",
|
|
|
|
"wbr",
|
|
|
|
# Deprecated tags
|
|
|
|
"frame",
|
|
|
|
"spacer",
|
|
|
|
]
|
2012-02-01 04:36:11 +08:00
|
|
|
for tag in self_closing_tags:
|
2019-05-09 23:17:42 +08:00
|
|
|
with self.subTest(tag):
|
|
|
|
dom = parse_html("<p>Hello <%s> world</p>" % tag)
|
|
|
|
self.assertEqual(len(dom.children), 3)
|
|
|
|
self.assertEqual(dom[0], "Hello")
|
|
|
|
self.assertEqual(dom[1].name, tag)
|
|
|
|
self.assertEqual(dom[2], "world")
|
|
|
|
|
|
|
|
dom = parse_html("<p>Hello <%s /> world</p>" % tag)
|
|
|
|
self.assertEqual(len(dom.children), 3)
|
|
|
|
self.assertEqual(dom[0], "Hello")
|
|
|
|
self.assertEqual(dom[1].name, tag)
|
|
|
|
self.assertEqual(dom[2], "world")
|
2012-02-01 04:36:11 +08:00
|
|
|
|
|
|
|
def test_simple_equal_html(self):
|
|
|
|
self.assertHTMLEqual("", "")
|
|
|
|
self.assertHTMLEqual("<p></p>", "<p></p>")
|
|
|
|
self.assertHTMLEqual("<p></p>", " <p> </p> ")
|
|
|
|
self.assertHTMLEqual("<div><p>Hello</p></div>", "<div><p>Hello</p></div>")
|
|
|
|
self.assertHTMLEqual("<div><p>Hello</p></div>", "<div> <p>Hello</p> </div>")
|
|
|
|
self.assertHTMLEqual("<div>\n<p>Hello</p></div>", "<div><p>Hello</p></div>\n")
|
|
|
|
self.assertHTMLEqual(
|
|
|
|
"<div><p>Hello\nWorld !</p></div>", "<div><p>Hello World\n!</p></div>"
|
|
|
|
)
|
|
|
|
self.assertHTMLEqual(
|
|
|
|
"<div><p>Hello\nWorld !</p></div>", "<div><p>Hello World\n!</p></div>"
|
2022-02-04 03:24:19 +08:00
|
|
|
)
|
2012-02-01 04:36:11 +08:00
|
|
|
self.assertHTMLEqual("<p>Hello World !</p>", "<p>Hello World\n\n!</p>")
|
|
|
|
self.assertHTMLEqual("<p> </p>", "<p></p>")
|
|
|
|
self.assertHTMLEqual("<p/>", "<p></p>")
|
|
|
|
self.assertHTMLEqual("<p />", "<p></p>")
|
|
|
|
self.assertHTMLEqual("<input checked>", '<input checked="checked">')
|
|
|
|
self.assertHTMLEqual("<p>Hello", "<p> Hello")
|
|
|
|
self.assertHTMLEqual("<p>Hello</p>World", "<p>Hello</p> World")
|
|
|
|
|
|
|
|
def test_ignore_comments(self):
|
|
|
|
self.assertHTMLEqual(
|
|
|
|
"<div>Hello<!-- this is a comment --> World!</div>",
|
|
|
|
"<div>Hello World!</div>",
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_unequal_html(self):
|
|
|
|
self.assertHTMLNotEqual("<p>Hello</p>", "<p>Hello!</p>")
|
|
|
|
self.assertHTMLNotEqual("<p>foobar</p>", "<p>foo bar</p>")
|
|
|
|
self.assertHTMLNotEqual("<p>foo bar</p>", "<p>foo bar</p>")
|
|
|
|
self.assertHTMLNotEqual("<p>foo nbsp</p>", "<p>foo </p>")
|
|
|
|
self.assertHTMLNotEqual("<p>foo #20</p>", "<p>foo </p>")
|
|
|
|
self.assertHTMLNotEqual(
|
|
|
|
"<p><span>Hello</span><span>World</span></p>",
|
|
|
|
"<p><span>Hello</span>World</p>",
|
|
|
|
)
|
|
|
|
self.assertHTMLNotEqual(
|
|
|
|
"<p><span>Hello</span>World</p>",
|
|
|
|
"<p><span>Hello</span><span>World</span></p>",
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_attributes(self):
|
|
|
|
self.assertHTMLEqual(
|
|
|
|
'<input type="text" id="id_name" />', '<input id="id_name" type="text" />'
|
|
|
|
)
|
|
|
|
self.assertHTMLEqual(
|
|
|
|
"""<input type='text' id="id_name" />""",
|
|
|
|
'<input id="id_name" type="text" />',
|
|
|
|
)
|
|
|
|
self.assertHTMLNotEqual(
|
|
|
|
'<input type="text" id="id_name" />',
|
|
|
|
'<input type="password" id="id_name" />',
|
|
|
|
)
|
|
|
|
|
2019-05-09 23:18:18 +08:00
|
|
|
def test_class_attribute(self):
|
|
|
|
pairs = [
|
|
|
|
('<p class="foo bar"></p>', '<p class="bar foo"></p>'),
|
|
|
|
('<p class=" foo bar "></p>', '<p class="bar foo"></p>'),
|
|
|
|
('<p class=" foo bar "></p>', '<p class="bar foo"></p>'),
|
|
|
|
('<p class="foo\tbar"></p>', '<p class="bar foo"></p>'),
|
|
|
|
('<p class="\tfoo\tbar\t"></p>', '<p class="bar foo"></p>'),
|
|
|
|
('<p class="\t\t\tfoo\t\t\tbar\t\t\t"></p>', '<p class="bar foo"></p>'),
|
|
|
|
('<p class="\t \nfoo \t\nbar\n\t "></p>', '<p class="bar foo"></p>'),
|
|
|
|
]
|
|
|
|
for html1, html2 in pairs:
|
|
|
|
with self.subTest(html1):
|
|
|
|
self.assertHTMLEqual(html1, html2)
|
|
|
|
|
2021-03-18 18:04:43 +08:00
|
|
|
def test_boolean_attribute(self):
|
2021-03-19 07:43:38 +08:00
|
|
|
html1 = "<input checked>"
|
|
|
|
html2 = '<input checked="">'
|
|
|
|
html3 = '<input checked="checked">'
|
2021-03-18 18:04:43 +08:00
|
|
|
self.assertHTMLEqual(html1, html2)
|
2021-03-19 07:43:38 +08:00
|
|
|
self.assertHTMLEqual(html1, html3)
|
|
|
|
self.assertHTMLEqual(html2, html3)
|
|
|
|
self.assertHTMLNotEqual(html1, '<input checked="invalid">')
|
|
|
|
self.assertEqual(str(parse_html(html1)), "<input checked>")
|
|
|
|
self.assertEqual(str(parse_html(html2)), "<input checked>")
|
|
|
|
self.assertEqual(str(parse_html(html3)), "<input checked>")
|
|
|
|
|
|
|
|
def test_non_boolean_attibutes(self):
|
|
|
|
html1 = "<input value>"
|
|
|
|
html2 = '<input value="">'
|
|
|
|
html3 = '<input value="value">'
|
|
|
|
self.assertHTMLEqual(html1, html2)
|
|
|
|
self.assertHTMLNotEqual(html1, html3)
|
|
|
|
self.assertEqual(str(parse_html(html1)), '<input value="">')
|
|
|
|
self.assertEqual(str(parse_html(html2)), '<input value="">')
|
2021-03-18 18:04:43 +08:00
|
|
|
|
2019-05-09 21:55:32 +08:00
|
|
|
def test_normalize_refs(self):
|
|
|
|
pairs = [
|
|
|
|
("'", "'"),
|
|
|
|
("'", "'"),
|
|
|
|
("'", "'"),
|
|
|
|
("'", "'"),
|
|
|
|
("'", "'"),
|
|
|
|
("'", "'"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
("&", "&"),
|
|
|
|
]
|
|
|
|
for pair in pairs:
|
|
|
|
with self.subTest(repr(pair)):
|
|
|
|
self.assertHTMLEqual(*pair)
|
|
|
|
|
2012-02-01 04:36:11 +08:00
|
|
|
def test_complex_examples(self):
|
|
|
|
self.assertHTMLEqual(
|
2013-10-18 06:27:45 +08:00
|
|
|
"""<tr><th><label for="id_first_name">First name:</label></th>
|
2012-02-01 04:36:11 +08:00
|
|
|
<td><input type="text" name="first_name" value="John" id="id_first_name" /></td></tr>
|
|
|
|
<tr><th><label for="id_last_name">Last name:</label></th>
|
|
|
|
<td><input type="text" id="id_last_name" name="last_name" value="Lennon" /></td></tr>
|
|
|
|
<tr><th><label for="id_birthday">Birthday:</label></th>
|
|
|
|
<td><input type="text" value="1940-10-9" name="birthday" id="id_birthday" /></td></tr>""", # NOQA
|
2013-10-18 06:27:45 +08:00
|
|
|
"""
|
2012-02-01 04:36:11 +08:00
|
|
|
<tr><th>
|
2015-09-12 07:33:12 +08:00
|
|
|
<label for="id_first_name">First name:</label></th><td>
|
|
|
|
<input type="text" name="first_name" value="John" id="id_first_name" />
|
2012-02-01 04:36:11 +08:00
|
|
|
</td></tr>
|
|
|
|
<tr><th>
|
2015-09-12 07:33:12 +08:00
|
|
|
<label for="id_last_name">Last name:</label></th><td>
|
|
|
|
<input type="text" name="last_name" value="Lennon" id="id_last_name" />
|
2012-02-01 04:36:11 +08:00
|
|
|
</td></tr>
|
|
|
|
<tr><th>
|
2015-09-12 07:33:12 +08:00
|
|
|
<label for="id_birthday">Birthday:</label></th><td>
|
|
|
|
<input type="text" name="birthday" value="1940-10-9" id="id_birthday" />
|
2012-02-01 04:36:11 +08:00
|
|
|
</td></tr>
|
|
|
|
""",
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertHTMLEqual(
|
2013-10-18 06:27:45 +08:00
|
|
|
"""<!DOCTYPE html>
|
2012-02-01 04:36:11 +08:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet">
|
|
|
|
<title>Document</title>
|
|
|
|
<meta attribute="value">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>
|
|
|
|
This is a valid paragraph
|
|
|
|
<div> this is a div AFTER the p</div>
|
|
|
|
</body>
|
|
|
|
</html>""",
|
|
|
|
"""
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet">
|
|
|
|
<title>Document</title>
|
|
|
|
<meta attribute="value">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p> This is a valid paragraph
|
|
|
|
<!-- browsers would close the p tag here -->
|
|
|
|
<div> this is a div AFTER the p</div>
|
2012-02-04 04:45:45 +08:00
|
|
|
</p> <!-- this is invalid HTML parsing, but it should make no
|
2012-02-01 04:36:11 +08:00
|
|
|
difference in most cases -->
|
|
|
|
</body>
|
|
|
|
</html>""",
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_html_contain(self):
|
|
|
|
# equal html contains each other
|
|
|
|
dom1 = parse_html("<p>foo")
|
|
|
|
dom2 = parse_html("<p>foo</p>")
|
2014-10-28 18:02:56 +08:00
|
|
|
self.assertIn(dom1, dom2)
|
|
|
|
self.assertIn(dom2, dom1)
|
2012-02-01 04:36:11 +08:00
|
|
|
|
|
|
|
dom2 = parse_html("<div><p>foo</p></div>")
|
2014-10-28 18:02:56 +08:00
|
|
|
self.assertIn(dom1, dom2)
|
|
|
|
self.assertNotIn(dom2, dom1)
|
2012-02-01 04:36:11 +08:00
|
|
|
|
2014-10-28 18:02:56 +08:00
|
|
|
self.assertNotIn("<p>foo</p>", dom2)
|
|
|
|
self.assertIn("foo", dom2)
|
2012-02-01 04:36:11 +08:00
|
|
|
|
|
|
|
# when a root element is used ...
|
|
|
|
dom1 = parse_html("<p>foo</p><p>bar</p>")
|
|
|
|
dom2 = parse_html("<p>foo</p><p>bar</p>")
|
2014-10-28 18:02:56 +08:00
|
|
|
self.assertIn(dom1, dom2)
|
2012-02-01 04:36:11 +08:00
|
|
|
dom1 = parse_html("<p>foo</p>")
|
2014-10-28 18:02:56 +08:00
|
|
|
self.assertIn(dom1, dom2)
|
2012-02-01 04:36:11 +08:00
|
|
|
dom1 = parse_html("<p>bar</p>")
|
2014-10-28 18:02:56 +08:00
|
|
|
self.assertIn(dom1, dom2)
|
2016-09-01 08:41:34 +08:00
|
|
|
dom1 = parse_html("<div><p>foo</p><p>bar</p></div>")
|
|
|
|
self.assertIn(dom2, dom1)
|
2012-02-01 04:36:11 +08:00
|
|
|
|
|
|
|
def test_count(self):
|
|
|
|
# equal html contains each other one time
|
|
|
|
dom1 = parse_html("<p>foo")
|
|
|
|
dom2 = parse_html("<p>foo</p>")
|
|
|
|
self.assertEqual(dom1.count(dom2), 1)
|
|
|
|
self.assertEqual(dom2.count(dom1), 1)
|
|
|
|
|
|
|
|
dom2 = parse_html("<p>foo</p><p>bar</p>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 1)
|
|
|
|
|
|
|
|
dom2 = parse_html("<p>foo foo</p><p>foo</p>")
|
|
|
|
self.assertEqual(dom2.count("foo"), 3)
|
|
|
|
|
|
|
|
dom2 = parse_html('<p class="bar">foo</p>')
|
|
|
|
self.assertEqual(dom2.count("bar"), 0)
|
|
|
|
self.assertEqual(dom2.count("class"), 0)
|
|
|
|
self.assertEqual(dom2.count("p"), 0)
|
|
|
|
self.assertEqual(dom2.count("o"), 2)
|
|
|
|
|
|
|
|
dom2 = parse_html("<p>foo</p><p>foo</p>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 2)
|
|
|
|
|
|
|
|
dom2 = parse_html('<div><p>foo<input type=""></p><p>foo</p></div>')
|
|
|
|
self.assertEqual(dom2.count(dom1), 1)
|
|
|
|
|
|
|
|
dom2 = parse_html("<div><div><p>foo</p></div></div>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 1)
|
|
|
|
|
|
|
|
dom2 = parse_html("<p>foo<p>foo</p></p>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 1)
|
|
|
|
|
|
|
|
dom2 = parse_html("<p>foo<p>bar</p></p>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 0)
|
|
|
|
|
2020-09-20 22:14:54 +08:00
|
|
|
# HTML with a root element contains the same HTML with no root element.
|
2016-09-01 08:41:34 +08:00
|
|
|
dom1 = parse_html("<p>foo</p><p>bar</p>")
|
|
|
|
dom2 = parse_html("<div><p>foo</p><p>bar</p></div>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 1)
|
|
|
|
|
2020-09-20 22:14:54 +08:00
|
|
|
# Target of search is a sequence of child elements and appears more
|
|
|
|
# than once.
|
|
|
|
dom2 = parse_html("<div><p>foo</p><p>bar</p><p>foo</p><p>bar</p></div>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 2)
|
|
|
|
|
|
|
|
# Searched HTML has additional children.
|
|
|
|
dom1 = parse_html("<a/><b/>")
|
|
|
|
dom2 = parse_html("<a/><b/><c/>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 1)
|
|
|
|
|
|
|
|
# No match found in children.
|
|
|
|
dom1 = parse_html("<b/><a/>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 0)
|
|
|
|
|
|
|
|
# Target of search found among children and grandchildren.
|
|
|
|
dom1 = parse_html("<b/><b/>")
|
|
|
|
dom2 = parse_html("<a><b/><b/></a><b/><b/>")
|
|
|
|
self.assertEqual(dom2.count(dom1), 2)
|
|
|
|
|
2021-10-29 02:15:01 +08:00
|
|
|
def test_root_element_escaped_html(self):
|
|
|
|
html = "<br>"
|
|
|
|
parsed = parse_html(html)
|
|
|
|
self.assertEqual(str(parsed), html)
|
|
|
|
|
2012-02-01 04:36:11 +08:00
|
|
|
def test_parsing_errors(self):
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertHTMLEqual("<p>", "")
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertHTMLEqual("", "<p>")
|
2016-07-20 22:12:13 +08:00
|
|
|
error_msg = (
|
|
|
|
"First argument is not valid HTML:\n"
|
|
|
|
"('Unexpected end tag `div` (Line 1, Column 6)', (1, 6))"
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(AssertionError, error_msg):
|
|
|
|
self.assertHTMLEqual("< div></ div>", "<div></div>")
|
2012-02-01 04:36:11 +08:00
|
|
|
with self.assertRaises(HTMLParseError):
|
|
|
|
parse_html("</p>")
|
|
|
|
|
2021-10-29 02:15:01 +08:00
|
|
|
def test_escaped_html_errors(self):
|
|
|
|
msg = "<p>\n<foo>\n</p> != <p>\n<foo>\n</p>\n"
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertHTMLEqual("<p><foo></p>", "<p><foo></p>")
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertHTMLEqual("<p><foo></p>", "<p><foo></p>")
|
|
|
|
|
2012-02-01 04:36:11 +08:00
|
|
|
def test_contains_html(self):
|
|
|
|
response = HttpResponse(
|
|
|
|
"""<body>
|
2018-05-02 21:20:04 +08:00
|
|
|
This is a form: <form method="get">
|
2012-02-01 04:36:11 +08:00
|
|
|
<input type="text" name="Hello" />
|
|
|
|
</form></body>"""
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertNotContains(response, "<input name='Hello' type='text'>")
|
2018-05-02 21:20:04 +08:00
|
|
|
self.assertContains(response, '<form method="get">')
|
2012-02-01 04:36:11 +08:00
|
|
|
|
|
|
|
self.assertContains(response, "<input name='Hello' type='text'>", html=True)
|
2018-05-02 21:20:04 +08:00
|
|
|
self.assertNotContains(response, '<form method="get">', html=True)
|
2012-02-01 04:36:11 +08:00
|
|
|
|
|
|
|
invalid_response = HttpResponse("""<body <bad>>""")
|
|
|
|
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertContains(invalid_response, "<p></p>")
|
|
|
|
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertContains(response, '<p "whats" that>')
|
|
|
|
|
|
|
|
def test_unicode_handling(self):
|
2020-04-18 22:46:05 +08:00
|
|
|
response = HttpResponse(
|
|
|
|
'<p class="help">Some help text for the title (with Unicode ŠĐĆŽćžšđ)</p>'
|
|
|
|
)
|
2015-09-12 07:33:12 +08:00
|
|
|
self.assertContains(
|
|
|
|
response,
|
2020-04-18 22:46:05 +08:00
|
|
|
'<p class="help">Some help text for the title (with Unicode ŠĐĆŽćžšđ)</p>',
|
2015-09-12 07:33:12 +08:00
|
|
|
html=True,
|
|
|
|
)
|
2012-02-01 04:36:11 +08:00
|
|
|
|
|
|
|
|
2015-04-18 05:38:20 +08:00
|
|
|
class JSONEqualTests(SimpleTestCase):
|
2014-04-17 17:44:30 +08:00
|
|
|
def test_simple_equal(self):
|
|
|
|
json1 = '{"attr1": "foo", "attr2":"baz"}'
|
|
|
|
json2 = '{"attr1": "foo", "attr2":"baz"}'
|
|
|
|
self.assertJSONEqual(json1, json2)
|
|
|
|
|
|
|
|
def test_simple_equal_unordered(self):
|
|
|
|
json1 = '{"attr1": "foo", "attr2":"baz"}'
|
|
|
|
json2 = '{"attr2":"baz", "attr1": "foo"}'
|
|
|
|
self.assertJSONEqual(json1, json2)
|
|
|
|
|
|
|
|
def test_simple_equal_raise(self):
|
|
|
|
json1 = '{"attr1": "foo", "attr2":"baz"}'
|
|
|
|
json2 = '{"attr2":"baz"}'
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertJSONEqual(json1, json2)
|
|
|
|
|
|
|
|
def test_equal_parsing_errors(self):
|
|
|
|
invalid_json = '{"attr1": "foo, "attr2":"baz"}'
|
|
|
|
valid_json = '{"attr1": "foo", "attr2":"baz"}'
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertJSONEqual(invalid_json, valid_json)
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertJSONEqual(valid_json, invalid_json)
|
|
|
|
|
|
|
|
def test_simple_not_equal(self):
|
|
|
|
json1 = '{"attr1": "foo", "attr2":"baz"}'
|
|
|
|
json2 = '{"attr2":"baz"}'
|
|
|
|
self.assertJSONNotEqual(json1, json2)
|
|
|
|
|
|
|
|
def test_simple_not_equal_raise(self):
|
|
|
|
json1 = '{"attr1": "foo", "attr2":"baz"}'
|
|
|
|
json2 = '{"attr1": "foo", "attr2":"baz"}'
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertJSONNotEqual(json1, json2)
|
|
|
|
|
|
|
|
def test_not_equal_parsing_errors(self):
|
|
|
|
invalid_json = '{"attr1": "foo, "attr2":"baz"}'
|
|
|
|
valid_json = '{"attr1": "foo", "attr2":"baz"}'
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertJSONNotEqual(invalid_json, valid_json)
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertJSONNotEqual(valid_json, invalid_json)
|
|
|
|
|
|
|
|
|
2015-04-18 05:38:20 +08:00
|
|
|
class XMLEqualTests(SimpleTestCase):
|
2012-10-06 19:14:11 +08:00
|
|
|
def test_simple_equal(self):
|
|
|
|
xml1 = "<elem attr1='a' attr2='b' />"
|
|
|
|
xml2 = "<elem attr1='a' attr2='b' />"
|
|
|
|
self.assertXMLEqual(xml1, xml2)
|
|
|
|
|
|
|
|
def test_simple_equal_unordered(self):
|
|
|
|
xml1 = "<elem attr1='a' attr2='b' />"
|
|
|
|
xml2 = "<elem attr2='b' attr1='a' />"
|
|
|
|
self.assertXMLEqual(xml1, xml2)
|
|
|
|
|
|
|
|
def test_simple_equal_raise(self):
|
|
|
|
xml1 = "<elem attr1='a' />"
|
|
|
|
xml2 = "<elem attr2='b' attr1='a' />"
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertXMLEqual(xml1, xml2)
|
|
|
|
|
2015-08-03 04:07:31 +08:00
|
|
|
def test_simple_equal_raises_message(self):
|
|
|
|
xml1 = "<elem attr1='a' />"
|
|
|
|
xml2 = "<elem attr2='b' attr1='a' />"
|
|
|
|
|
|
|
|
msg = """{xml1} != {xml2}
|
|
|
|
- <elem attr1='a' />
|
|
|
|
+ <elem attr2='b' attr1='a' />
|
|
|
|
? ++++++++++
|
|
|
|
""".format(
|
|
|
|
xml1=repr(xml1), xml2=repr(xml2)
|
2022-02-04 03:24:19 +08:00
|
|
|
)
|
2015-08-03 04:07:31 +08:00
|
|
|
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertXMLEqual(xml1, xml2)
|
|
|
|
|
2012-10-06 19:14:11 +08:00
|
|
|
def test_simple_not_equal(self):
|
|
|
|
xml1 = "<elem attr1='a' attr2='c' />"
|
|
|
|
xml2 = "<elem attr1='a' attr2='b' />"
|
|
|
|
self.assertXMLNotEqual(xml1, xml2)
|
|
|
|
|
|
|
|
def test_simple_not_equal_raise(self):
|
|
|
|
xml1 = "<elem attr1='a' attr2='b' />"
|
|
|
|
xml2 = "<elem attr2='b' attr1='a' />"
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertXMLNotEqual(xml1, xml2)
|
|
|
|
|
|
|
|
def test_parsing_errors(self):
|
|
|
|
xml_unvalid = "<elem attr1='a attr2='b' />"
|
|
|
|
xml2 = "<elem attr2='b' attr1='a' />"
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertXMLNotEqual(xml_unvalid, xml2)
|
|
|
|
|
2012-10-16 04:18:47 +08:00
|
|
|
def test_comment_root(self):
|
|
|
|
xml1 = "<?xml version='1.0'?><!-- comment1 --><elem attr1='a' attr2='b' />"
|
|
|
|
xml2 = "<?xml version='1.0'?><!-- comment2 --><elem attr2='b' attr1='a' />"
|
|
|
|
self.assertXMLEqual(xml1, xml2)
|
|
|
|
|
2015-11-07 21:31:25 +08:00
|
|
|
def test_simple_equal_with_leading_or_trailing_whitespace(self):
|
|
|
|
xml1 = "<elem>foo</elem> \t\n"
|
|
|
|
xml2 = " \t\n<elem>foo</elem>"
|
|
|
|
self.assertXMLEqual(xml1, xml2)
|
|
|
|
|
|
|
|
def test_simple_not_equal_with_whitespace_in_the_middle(self):
|
|
|
|
xml1 = "<elem>foo</elem><elem>bar</elem>"
|
|
|
|
xml2 = "<elem>foo</elem> <elem>bar</elem>"
|
|
|
|
self.assertXMLNotEqual(xml1, xml2)
|
|
|
|
|
2019-05-22 21:31:46 +08:00
|
|
|
def test_doctype_root(self):
|
|
|
|
xml1 = '<?xml version="1.0"?><!DOCTYPE root SYSTEM "example1.dtd"><root />'
|
|
|
|
xml2 = '<?xml version="1.0"?><!DOCTYPE root SYSTEM "example2.dtd"><root />'
|
|
|
|
self.assertXMLEqual(xml1, xml2)
|
|
|
|
|
2020-02-12 18:38:06 +08:00
|
|
|
def test_processing_instruction(self):
|
|
|
|
xml1 = (
|
|
|
|
'<?xml version="1.0"?>'
|
|
|
|
'<?xml-model href="http://www.example1.com"?><root />'
|
|
|
|
)
|
|
|
|
xml2 = (
|
|
|
|
'<?xml version="1.0"?>'
|
|
|
|
'<?xml-model href="http://www.example2.com"?><root />'
|
|
|
|
)
|
|
|
|
self.assertXMLEqual(xml1, xml2)
|
|
|
|
self.assertXMLEqual(
|
|
|
|
'<?xml-stylesheet href="style1.xslt" type="text/xsl"?><root />',
|
|
|
|
'<?xml-stylesheet href="style2.xslt" type="text/xsl"?><root />',
|
|
|
|
)
|
|
|
|
|
2012-10-06 19:14:11 +08:00
|
|
|
|
2011-06-11 23:27:12 +08:00
|
|
|
class SkippingExtraTests(TestCase):
|
|
|
|
fixtures = ["should_not_be_loaded.json"]
|
|
|
|
|
|
|
|
# HACK: This depends on internals of our TestCase subclasses
|
|
|
|
def __call__(self, result=None):
|
|
|
|
# Detect fixture loading by counting SQL queries, should be zero
|
|
|
|
with self.assertNumQueries(0):
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__call__(result)
|
2011-06-11 23:27:12 +08:00
|
|
|
|
2013-07-20 02:30:14 +08:00
|
|
|
@unittest.skip("Fixture loading should not be performed for skipped tests.")
|
2011-06-11 23:27:12 +08:00
|
|
|
def test_fixtures_are_skipped(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2011-08-13 08:42:08 +08:00
|
|
|
class AssertRaisesMsgTest(SimpleTestCase):
|
2015-07-31 03:00:24 +08:00
|
|
|
def test_assert_raises_message(self):
|
|
|
|
msg = "'Expected message' not found in 'Unexpected message'"
|
|
|
|
# context manager form of assertRaisesMessage()
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
with self.assertRaisesMessage(ValueError, "Expected message"):
|
|
|
|
raise ValueError("Unexpected message")
|
|
|
|
|
|
|
|
# callable form
|
|
|
|
def func():
|
|
|
|
raise ValueError("Unexpected message")
|
|
|
|
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertRaisesMessage(ValueError, "Expected message", func)
|
|
|
|
|
2011-08-13 08:42:08 +08:00
|
|
|
def test_special_re_chars(self):
|
|
|
|
"""assertRaisesMessage shouldn't interpret RE special chars."""
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2011-08-13 08:42:08 +08:00
|
|
|
def func1():
|
|
|
|
raise ValueError("[.*x+]y?")
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2016-01-04 16:50:08 +08:00
|
|
|
with self.assertRaisesMessage(ValueError, "[.*x+]y?"):
|
|
|
|
func1()
|
2011-08-13 08:42:08 +08:00
|
|
|
|
|
|
|
|
2018-04-28 05:18:15 +08:00
|
|
|
class AssertWarnsMessageTests(SimpleTestCase):
|
|
|
|
def test_context_manager(self):
|
|
|
|
with self.assertWarnsMessage(UserWarning, "Expected message"):
|
|
|
|
warnings.warn("Expected message", UserWarning)
|
|
|
|
|
|
|
|
def test_context_manager_failure(self):
|
|
|
|
msg = "Expected message' not found in 'Unexpected message'"
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
with self.assertWarnsMessage(UserWarning, "Expected message"):
|
|
|
|
warnings.warn("Unexpected message", UserWarning)
|
|
|
|
|
|
|
|
def test_callable(self):
|
|
|
|
def func():
|
|
|
|
warnings.warn("Expected message", UserWarning)
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2018-04-28 05:18:15 +08:00
|
|
|
self.assertWarnsMessage(UserWarning, "Expected message", func)
|
|
|
|
|
|
|
|
def test_special_re_chars(self):
|
|
|
|
def func1():
|
|
|
|
warnings.warn("[.*x+]y?", UserWarning)
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2018-04-28 05:18:15 +08:00
|
|
|
with self.assertWarnsMessage(UserWarning, "[.*x+]y?"):
|
|
|
|
func1()
|
|
|
|
|
|
|
|
|
2021-01-08 00:54:40 +08:00
|
|
|
# TODO: Remove when dropping support for PY39.
|
|
|
|
class AssertNoLogsTest(SimpleTestCase):
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
super().setUpClass()
|
|
|
|
logging.config.dictConfig(DEFAULT_LOGGING)
|
|
|
|
cls.addClassCleanup(logging.config.dictConfig, settings.LOGGING)
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.logger = logging.getLogger("django")
|
|
|
|
|
|
|
|
@override_settings(DEBUG=True)
|
|
|
|
def test_fails_when_log_emitted(self):
|
|
|
|
msg = "Unexpected logs found: ['INFO:django:FAIL!']"
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
with self.assertNoLogs("django", "INFO"):
|
|
|
|
self.logger.info("FAIL!")
|
|
|
|
|
|
|
|
@override_settings(DEBUG=True)
|
|
|
|
def test_text_level(self):
|
|
|
|
with self.assertNoLogs("django", "INFO"):
|
|
|
|
self.logger.debug("DEBUG logs are ignored.")
|
|
|
|
|
|
|
|
@override_settings(DEBUG=True)
|
|
|
|
def test_int_level(self):
|
|
|
|
with self.assertNoLogs("django", logging.INFO):
|
|
|
|
self.logger.debug("DEBUG logs are ignored.")
|
|
|
|
|
|
|
|
@override_settings(DEBUG=True)
|
|
|
|
def test_default_level(self):
|
|
|
|
with self.assertNoLogs("django"):
|
|
|
|
self.logger.debug("DEBUG logs are ignored.")
|
|
|
|
|
|
|
|
@override_settings(DEBUG=True)
|
|
|
|
def test_does_not_hide_other_failures(self):
|
|
|
|
msg = "1 != 2"
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
with self.assertNoLogs("django"):
|
|
|
|
self.assertEqual(1, 2)
|
|
|
|
|
|
|
|
|
2011-08-23 10:32:37 +08:00
|
|
|
class AssertFieldOutputTests(SimpleTestCase):
|
|
|
|
def test_assert_field_output(self):
|
2012-09-26 20:14:51 +08:00
|
|
|
error_invalid = ["Enter a valid email address."]
|
2011-08-23 10:32:37 +08:00
|
|
|
self.assertFieldOutput(
|
|
|
|
EmailField, {"a@a.com": "a@a.com"}, {"aaa": error_invalid}
|
|
|
|
)
|
2015-09-12 07:33:12 +08:00
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertFieldOutput(
|
|
|
|
EmailField,
|
|
|
|
{"a@a.com": "a@a.com"},
|
|
|
|
{"aaa": error_invalid + ["Another error"]},
|
|
|
|
)
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertFieldOutput(
|
|
|
|
EmailField, {"a@a.com": "Wrong output"}, {"aaa": error_invalid}
|
|
|
|
)
|
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
self.assertFieldOutput(
|
|
|
|
EmailField,
|
|
|
|
{"a@a.com": "a@a.com"},
|
|
|
|
{"aaa": ["Come on, gimme some well formatted data, dude."]},
|
|
|
|
)
|
2011-08-23 10:32:37 +08:00
|
|
|
|
2012-01-07 18:26:29 +08:00
|
|
|
def test_custom_required_message(self):
|
|
|
|
class MyCustomField(IntegerField):
|
|
|
|
default_error_messages = {
|
2012-06-08 00:08:47 +08:00
|
|
|
"required": "This is really required.",
|
2012-01-07 18:26:29 +08:00
|
|
|
}
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2012-01-07 18:26:29 +08:00
|
|
|
self.assertFieldOutput(MyCustomField, {}, {}, empty_value=None)
|
2011-08-23 10:32:37 +08:00
|
|
|
|
2013-04-07 01:09:44 +08:00
|
|
|
|
2019-01-21 22:31:33 +08:00
|
|
|
@override_settings(ROOT_URLCONF="test_utils.urls")
|
2017-12-20 03:05:10 +08:00
|
|
|
class AssertURLEqualTests(SimpleTestCase):
|
|
|
|
def test_equal(self):
|
|
|
|
valid_tests = (
|
|
|
|
("http://example.com/?", "http://example.com/"),
|
|
|
|
("http://example.com/?x=1&", "http://example.com/?x=1"),
|
|
|
|
("http://example.com/?x=1&y=2", "http://example.com/?y=2&x=1"),
|
|
|
|
("http://example.com/?x=1&y=2", "http://example.com/?y=2&x=1"),
|
|
|
|
(
|
|
|
|
"http://example.com/?x=1&y=2&a=1&a=2",
|
|
|
|
"http://example.com/?a=1&a=2&y=2&x=1",
|
|
|
|
),
|
|
|
|
("/path/to/?x=1&y=2&z=3", "/path/to/?z=3&y=2&x=1"),
|
|
|
|
("?x=1&y=2&z=3", "?z=3&y=2&x=1"),
|
2019-01-21 22:31:33 +08:00
|
|
|
("/test_utils/no_template_used/", reverse_lazy("no_template_used")),
|
2017-12-20 03:05:10 +08:00
|
|
|
)
|
|
|
|
for url1, url2 in valid_tests:
|
|
|
|
with self.subTest(url=url1):
|
|
|
|
self.assertURLEqual(url1, url2)
|
|
|
|
|
|
|
|
def test_not_equal(self):
|
|
|
|
invalid_tests = (
|
|
|
|
# Protocol must be the same.
|
|
|
|
("http://example.com/", "https://example.com/"),
|
|
|
|
("http://example.com/?x=1&x=2", "https://example.com/?x=2&x=1"),
|
|
|
|
("http://example.com/?x=1&y=bar&x=2", "https://example.com/?y=bar&x=2&x=1"),
|
|
|
|
# Parameters of the same name must be in the same order.
|
|
|
|
("/path/to?a=1&a=2", "/path/to/?a=2&a=1"),
|
|
|
|
)
|
|
|
|
for url1, url2 in invalid_tests:
|
|
|
|
with self.subTest(url=url1), self.assertRaises(AssertionError):
|
|
|
|
self.assertURLEqual(url1, url2)
|
|
|
|
|
|
|
|
def test_message(self):
|
|
|
|
msg = (
|
|
|
|
"Expected 'http://example.com/?x=1&x=2' to equal "
|
|
|
|
"'https://example.com/?x=2&x=1'"
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertURLEqual(
|
|
|
|
"http://example.com/?x=1&x=2", "https://example.com/?x=2&x=1"
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_msg_prefix(self):
|
|
|
|
msg = (
|
|
|
|
"Prefix: Expected 'http://example.com/?x=1&x=2' to equal "
|
|
|
|
"'https://example.com/?x=2&x=1'"
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertURLEqual(
|
|
|
|
"http://example.com/?x=1&x=2",
|
|
|
|
"https://example.com/?x=2&x=1",
|
|
|
|
msg_prefix="Prefix: ",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-11-21 02:55:10 +08:00
|
|
|
class TestForm(Form):
|
|
|
|
field = CharField()
|
|
|
|
|
|
|
|
def clean_field(self):
|
|
|
|
value = self.cleaned_data.get("field", "")
|
|
|
|
if value == "invalid":
|
|
|
|
raise ValidationError("invalid value")
|
|
|
|
return value
|
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
if self.cleaned_data.get("field") == "invalid_non_field":
|
|
|
|
raise ValidationError("non-field error")
|
|
|
|
return self.cleaned_data
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _get_cleaned_form(cls, field_value):
|
|
|
|
form = cls({"field": field_value})
|
|
|
|
form.full_clean()
|
|
|
|
return form
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def valid(cls):
|
|
|
|
return cls._get_cleaned_form("valid")
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def invalid(cls, nonfield=False):
|
|
|
|
return cls._get_cleaned_form("invalid_non_field" if nonfield else "invalid")
|
|
|
|
|
|
|
|
|
|
|
|
class TestFormset(formset_factory(TestForm)):
|
|
|
|
@classmethod
|
|
|
|
def _get_cleaned_formset(cls, field_value):
|
|
|
|
formset = cls(
|
|
|
|
{
|
|
|
|
"form-TOTAL_FORMS": "1",
|
|
|
|
"form-INITIAL_FORMS": "0",
|
|
|
|
"form-0-field": field_value,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
formset.full_clean()
|
|
|
|
return formset
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def valid(cls):
|
|
|
|
return cls._get_cleaned_formset("valid")
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def invalid(cls, nonfield=False, nonform=False):
|
|
|
|
if nonform:
|
|
|
|
formset = cls({}, error_messages={"missing_management_form": "error"})
|
|
|
|
formset.full_clean()
|
|
|
|
return formset
|
|
|
|
return cls._get_cleaned_formset("invalid_non_field" if nonfield else "invalid")
|
|
|
|
|
|
|
|
|
|
|
|
class AssertFormErrorTests(SimpleTestCase):
|
2021-11-21 02:56:39 +08:00
|
|
|
def test_non_client_response(self):
|
|
|
|
msg = (
|
|
|
|
"assertFormError() is only usable on responses fetched using the "
|
|
|
|
"Django test Client."
|
|
|
|
)
|
|
|
|
response = HttpResponse()
|
|
|
|
with self.assertRaisesMessage(ValueError, msg):
|
|
|
|
self.assertFormError(response, "formset", 0, "field", "invalid value")
|
|
|
|
|
2021-11-21 02:55:10 +08:00
|
|
|
def test_response_with_no_context(self):
|
|
|
|
msg = "Response did not use any contexts to render the response"
|
|
|
|
response = mock.Mock(context=[])
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormError(response, "form", "field", "invalid value")
|
|
|
|
msg_prefix = "Custom prefix"
|
|
|
|
with self.assertRaisesMessage(AssertionError, f"{msg_prefix}: {msg}"):
|
|
|
|
self.assertFormError(
|
|
|
|
response,
|
|
|
|
"form",
|
|
|
|
"field",
|
|
|
|
"invalid value",
|
|
|
|
msg_prefix=msg_prefix,
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_form_not_in_context(self):
|
|
|
|
msg = "The form 'form' was not used to render the response"
|
|
|
|
response = mock.Mock(context=[{}])
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormError(response, "form", "field", "invalid value")
|
|
|
|
|
|
|
|
def test_field_not_in_form(self):
|
2022-02-14 18:02:33 +08:00
|
|
|
msg = (
|
|
|
|
"The form <TestForm bound=True, valid=False, fields=(field)> does not "
|
|
|
|
"contain the field 'other_field'."
|
|
|
|
)
|
2021-11-21 02:55:10 +08:00
|
|
|
response = mock.Mock(context=[{"form": TestForm.invalid()}])
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormError(response, "form", "other_field", "invalid value")
|
|
|
|
|
|
|
|
def test_field_with_no_errors(self):
|
2022-02-14 18:02:33 +08:00
|
|
|
msg = (
|
|
|
|
"The errors of field 'field' on form <TestForm bound=True, valid=True, "
|
|
|
|
"fields=(field)> don't match."
|
|
|
|
)
|
2021-11-21 02:55:10 +08:00
|
|
|
response = mock.Mock(context=[{"form": TestForm.valid()}])
|
2022-02-14 18:02:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg) as ctx:
|
2021-11-21 02:55:10 +08:00
|
|
|
self.assertFormError(response, "form", "field", "invalid value")
|
2022-02-14 18:02:33 +08:00
|
|
|
self.assertIn("[] != ['invalid value']", str(ctx.exception))
|
2021-11-21 02:55:10 +08:00
|
|
|
|
|
|
|
def test_field_with_different_error(self):
|
|
|
|
msg = (
|
2022-02-14 18:02:33 +08:00
|
|
|
"The errors of field 'field' on form <TestForm bound=True, valid=False, "
|
|
|
|
"fields=(field)> don't match."
|
2021-11-21 02:55:10 +08:00
|
|
|
)
|
|
|
|
response = mock.Mock(context=[{"form": TestForm.invalid()}])
|
2022-02-14 18:02:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg) as ctx:
|
2021-11-21 02:55:10 +08:00
|
|
|
self.assertFormError(response, "form", "field", "other error")
|
2022-02-14 18:02:33 +08:00
|
|
|
self.assertIn("['invalid value'] != ['other error']", str(ctx.exception))
|
2021-11-21 02:55:10 +08:00
|
|
|
|
|
|
|
def test_basic_positive_assertion(self):
|
|
|
|
response = mock.Mock(context=[{"form": TestForm.invalid()}])
|
|
|
|
self.assertFormError(response, "form", "field", "invalid value")
|
|
|
|
|
|
|
|
def test_basic_positive_assertion_multicontext(self):
|
|
|
|
response = mock.Mock(context=[{}, {"form": TestForm.invalid()}])
|
|
|
|
self.assertFormError(response, "form", "field", "invalid value")
|
|
|
|
|
|
|
|
def test_empty_errors_unbound_form(self):
|
2022-02-14 15:42:27 +08:00
|
|
|
msg = (
|
|
|
|
"The form <TestForm bound=False, valid=Unknown, fields=(field)> is not "
|
|
|
|
"bound, it will never have any errors."
|
|
|
|
)
|
2021-11-21 02:55:10 +08:00
|
|
|
response = mock.Mock(context=[{"form": TestForm()}])
|
2022-02-14 15:42:27 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormError(response, "form", "field", [])
|
2022-02-15 17:14:19 +08:00
|
|
|
msg_prefix = "Custom prefix"
|
|
|
|
with self.assertRaisesMessage(AssertionError, f"{msg_prefix}: {msg}"):
|
|
|
|
self.assertFormError(response, "form", "field", [], msg_prefix=msg_prefix)
|
2021-11-21 02:55:10 +08:00
|
|
|
|
|
|
|
def test_empty_errors_valid_form(self):
|
|
|
|
response = mock.Mock(context=[{"form": TestForm.valid()}])
|
|
|
|
self.assertFormError(response, "form", "field", [])
|
|
|
|
|
|
|
|
def test_empty_errors_invalid_form(self):
|
2022-02-14 18:02:33 +08:00
|
|
|
msg = (
|
|
|
|
"The errors of field 'field' on form <TestForm bound=True, valid=False, "
|
|
|
|
"fields=(field)> don't match."
|
|
|
|
)
|
2021-11-21 02:55:10 +08:00
|
|
|
response = mock.Mock(context=[{"form": TestForm.invalid()}])
|
2022-02-14 18:02:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg) as ctx:
|
|
|
|
self.assertFormError(response, "form", "field", [])
|
|
|
|
self.assertIn("['invalid value'] != []", str(ctx.exception))
|
2021-11-21 02:55:10 +08:00
|
|
|
|
|
|
|
def test_non_field_errors(self):
|
|
|
|
response = mock.Mock(context=[{"form": TestForm.invalid(nonfield=True)}])
|
|
|
|
self.assertFormError(response, "form", None, "non-field error")
|
|
|
|
|
2022-01-04 20:02:14 +08:00
|
|
|
@ignore_warnings(category=RemovedInDjango50Warning)
|
|
|
|
def test_errors_none(self):
|
2022-02-14 18:02:33 +08:00
|
|
|
msg = (
|
|
|
|
"The errors of field 'field' on form <TestForm bound=True, valid=False, "
|
|
|
|
"fields=(field)> don't match."
|
|
|
|
)
|
2022-01-04 20:02:14 +08:00
|
|
|
response = mock.Mock(context=[{"form": TestForm.invalid()}])
|
2022-02-14 18:02:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormError(response, "form", "field", None)
|
2022-01-04 20:02:14 +08:00
|
|
|
|
|
|
|
def test_errors_none_warning(self):
|
2022-02-14 18:02:33 +08:00
|
|
|
response = mock.Mock(context=[{"form": TestForm.valid()}])
|
2022-01-04 20:02:14 +08:00
|
|
|
msg = (
|
|
|
|
"Passing errors=None to assertFormError() is deprecated, use "
|
|
|
|
"errors=[] instead."
|
|
|
|
)
|
|
|
|
with self.assertWarnsMessage(RemovedInDjango50Warning, msg):
|
2022-02-14 18:02:33 +08:00
|
|
|
self.assertFormError(response, "form", "field", None)
|
2022-01-04 20:02:14 +08:00
|
|
|
|
2021-11-21 02:55:10 +08:00
|
|
|
|
|
|
|
class AssertFormsetErrorTests(SimpleTestCase):
|
|
|
|
def _get_formset_data(self, field_value):
|
|
|
|
return {
|
|
|
|
"form-TOTAL_FORMS": "1",
|
|
|
|
"form-INITIAL_FORMS": "0",
|
|
|
|
"form-0-field": field_value,
|
|
|
|
}
|
|
|
|
|
2021-11-21 02:56:39 +08:00
|
|
|
def test_non_client_response(self):
|
|
|
|
msg = (
|
|
|
|
"assertFormsetError() is only usable on responses fetched using "
|
|
|
|
"the Django test Client."
|
|
|
|
)
|
|
|
|
response = HttpResponse()
|
|
|
|
with self.assertRaisesMessage(ValueError, msg):
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", "invalid value")
|
|
|
|
|
2021-11-21 02:55:10 +08:00
|
|
|
def test_response_with_no_context(self):
|
|
|
|
msg = "Response did not use any contexts to render the response"
|
|
|
|
response = mock.Mock(context=[])
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", "invalid value")
|
|
|
|
|
|
|
|
def test_formset_not_in_context(self):
|
|
|
|
msg = "The formset 'formset' was not used to render the response"
|
|
|
|
response = mock.Mock(context=[{}])
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", "invalid value")
|
|
|
|
|
|
|
|
def test_field_not_in_form(self):
|
|
|
|
msg = (
|
2022-02-14 18:02:33 +08:00
|
|
|
"The form 0 of formset <TestFormset: bound=True valid=False total_forms=1> "
|
|
|
|
"does not contain the field 'other_field'."
|
2021-11-21 02:55:10 +08:00
|
|
|
)
|
|
|
|
response = mock.Mock(context=[{"formset": TestFormset.invalid()}])
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormsetError(
|
|
|
|
response,
|
|
|
|
"formset",
|
|
|
|
0,
|
|
|
|
"other_field",
|
|
|
|
"invalid value",
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_field_with_no_errors(self):
|
|
|
|
msg = (
|
2022-02-14 18:02:33 +08:00
|
|
|
"The errors of field 'field' on form 0 of formset <TestFormset: bound=True "
|
|
|
|
"valid=True total_forms=1> don't match."
|
2021-11-21 02:55:10 +08:00
|
|
|
)
|
|
|
|
response = mock.Mock(context=[{"formset": TestFormset.valid()}])
|
2022-02-14 18:02:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg) as ctx:
|
2021-11-21 02:55:10 +08:00
|
|
|
self.assertFormsetError(response, "formset", 0, "field", "invalid value")
|
2022-02-14 18:02:33 +08:00
|
|
|
self.assertIn("[] != ['invalid value']", str(ctx.exception))
|
2021-11-21 02:55:10 +08:00
|
|
|
|
|
|
|
def test_field_with_different_error(self):
|
|
|
|
msg = (
|
2022-02-14 18:02:33 +08:00
|
|
|
"The errors of field 'field' on form 0 of formset <TestFormset: bound=True "
|
|
|
|
"valid=False total_forms=1> don't match."
|
2021-11-21 02:55:10 +08:00
|
|
|
)
|
|
|
|
response = mock.Mock(context=[{"formset": TestFormset.invalid()}])
|
2022-02-14 18:02:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg) as ctx:
|
2021-11-21 02:55:10 +08:00
|
|
|
self.assertFormsetError(response, "formset", 0, "field", "other error")
|
2022-02-14 18:02:33 +08:00
|
|
|
self.assertIn("['invalid value'] != ['other error']", str(ctx.exception))
|
2021-11-21 02:55:10 +08:00
|
|
|
|
|
|
|
def test_basic_positive_assertion(self):
|
|
|
|
response = mock.Mock(context=[{"formset": TestFormset.invalid()}])
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", "invalid value")
|
|
|
|
|
|
|
|
def test_basic_positive_assertion_multicontext(self):
|
|
|
|
response = mock.Mock(context=[{}, {"formset": TestFormset.invalid()}])
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", "invalid value")
|
|
|
|
|
|
|
|
def test_empty_errors_unbound_formset(self):
|
2022-02-14 15:42:27 +08:00
|
|
|
msg = (
|
|
|
|
"The formset <TestFormset: bound=False valid=Unknown total_forms=1> is not "
|
|
|
|
"bound, it will never have any errors."
|
|
|
|
)
|
2021-11-21 02:55:10 +08:00
|
|
|
response = mock.Mock(context=[{"formset": TestFormset()}])
|
2022-02-14 15:42:27 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", [])
|
2021-11-21 02:55:10 +08:00
|
|
|
|
|
|
|
def test_empty_errors_valid_formset(self):
|
|
|
|
response = mock.Mock(context=[{}, {"formset": TestFormset.valid()}])
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", [])
|
|
|
|
|
|
|
|
def test_empty_errors_invalid_formset(self):
|
2022-02-14 18:02:33 +08:00
|
|
|
msg = (
|
|
|
|
"The errors of field 'field' on form 0 of formset <TestFormset: bound=True "
|
|
|
|
"valid=False total_forms=1> don't match."
|
|
|
|
)
|
2021-11-21 02:55:10 +08:00
|
|
|
response = mock.Mock(context=[{}, {"formset": TestFormset.invalid()}])
|
2022-02-14 18:02:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg) as ctx:
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", [])
|
|
|
|
self.assertIn("['invalid value'] != []", str(ctx.exception))
|
2021-11-21 02:55:10 +08:00
|
|
|
|
|
|
|
def test_non_field_errors(self):
|
|
|
|
response = mock.Mock(
|
|
|
|
context=[
|
|
|
|
{},
|
|
|
|
{"formset": TestFormset.invalid(nonfield=True)},
|
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertFormsetError(response, "formset", 0, None, "non-field error")
|
|
|
|
|
|
|
|
def test_non_form_errors(self):
|
|
|
|
response = mock.Mock(
|
|
|
|
context=[
|
|
|
|
{},
|
|
|
|
{"formset": TestFormset.invalid(nonform=True)},
|
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertFormsetError(response, "formset", None, None, "error")
|
|
|
|
|
2022-02-14 19:27:26 +08:00
|
|
|
def test_form_index_too_big(self):
|
|
|
|
msg = (
|
|
|
|
"The formset <TestFormset: bound=True valid=False total_forms=1> only has "
|
|
|
|
"1 form."
|
|
|
|
)
|
|
|
|
response = mock.Mock(context=[{}, {"formset": TestFormset.invalid()}])
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormsetError(response, "formset", 2, "field", "error")
|
|
|
|
|
|
|
|
def test_form_index_too_big_plural(self):
|
|
|
|
formset = TestFormset(
|
|
|
|
{
|
|
|
|
"form-TOTAL_FORMS": "2",
|
|
|
|
"form-INITIAL_FORMS": "0",
|
|
|
|
"form-0-field": "valid",
|
|
|
|
"form-1-field": "valid",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
formset.full_clean()
|
|
|
|
msg = (
|
|
|
|
"The formset <TestFormset: bound=True valid=True total_forms=2> only has 2 "
|
|
|
|
"forms."
|
|
|
|
)
|
|
|
|
response = mock.Mock(context=[{}, {"formset": formset}])
|
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormsetError(response, "formset", 2, "field", "error")
|
|
|
|
|
2021-12-08 21:46:22 +08:00
|
|
|
def test_formset_named_form(self):
|
|
|
|
formset = TestFormset.invalid()
|
|
|
|
# The mocked context emulates the template-based rendering of the
|
|
|
|
# formset.
|
|
|
|
response = mock.Mock(
|
|
|
|
context=[
|
|
|
|
{"form": formset},
|
|
|
|
{"form": formset.management_form},
|
|
|
|
]
|
|
|
|
)
|
|
|
|
self.assertFormsetError(response, "form", 0, "field", "invalid value")
|
|
|
|
|
2022-01-04 20:02:14 +08:00
|
|
|
@ignore_warnings(category=RemovedInDjango50Warning)
|
|
|
|
def test_errors_none(self):
|
2022-02-14 18:02:33 +08:00
|
|
|
msg = (
|
|
|
|
"The errors of field 'field' on form 0 of formset <TestFormset: bound=True "
|
|
|
|
"valid=False total_forms=1> don't match."
|
|
|
|
)
|
2022-01-04 20:02:14 +08:00
|
|
|
response = mock.Mock(context=[{"formset": TestFormset.invalid()}])
|
2022-02-14 18:02:33 +08:00
|
|
|
with self.assertRaisesMessage(AssertionError, msg):
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", None)
|
2022-01-04 20:02:14 +08:00
|
|
|
|
|
|
|
def test_errors_none_warning(self):
|
2022-02-14 18:02:33 +08:00
|
|
|
response = mock.Mock(context=[{"formset": TestFormset.valid()}])
|
2022-01-04 20:02:14 +08:00
|
|
|
msg = (
|
|
|
|
"Passing errors=None to assertFormsetError() is deprecated, use "
|
|
|
|
"errors=[] instead."
|
|
|
|
)
|
|
|
|
with self.assertWarnsMessage(RemovedInDjango50Warning, msg):
|
|
|
|
self.assertFormsetError(response, "formset", 0, "field", None)
|
|
|
|
|
2021-11-21 02:55:10 +08:00
|
|
|
|
2013-11-28 03:45:20 +08:00
|
|
|
class FirstUrls:
|
2018-12-08 06:52:28 +08:00
|
|
|
urlpatterns = [path("first/", empty_response, name="first")]
|
2013-11-28 03:45:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
class SecondUrls:
|
2018-12-08 06:52:28 +08:00
|
|
|
urlpatterns = [path("second/", empty_response, name="second")]
|
2013-11-28 03:45:20 +08:00
|
|
|
|
|
|
|
|
2016-08-08 17:38:10 +08:00
|
|
|
class SetupTestEnvironmentTests(SimpleTestCase):
|
|
|
|
def test_setup_test_environment_calling_more_than_once(self):
|
|
|
|
with self.assertRaisesMessage(
|
|
|
|
RuntimeError, "setup_test_environment() was already called"
|
|
|
|
):
|
|
|
|
setup_test_environment()
|
|
|
|
|
2017-02-25 02:58:56 +08:00
|
|
|
def test_allowed_hosts(self):
|
|
|
|
for type_ in (list, tuple):
|
|
|
|
with self.subTest(type_=type_):
|
|
|
|
allowed_hosts = type_("*")
|
|
|
|
with mock.patch("django.test.utils._TestState") as x:
|
|
|
|
del x.saved_data
|
|
|
|
with self.settings(ALLOWED_HOSTS=allowed_hosts):
|
|
|
|
setup_test_environment()
|
|
|
|
self.assertEqual(settings.ALLOWED_HOSTS, ["*", "testserver"])
|
|
|
|
|
2016-08-08 17:38:10 +08:00
|
|
|
|
2015-04-18 05:38:20 +08:00
|
|
|
class OverrideSettingsTests(SimpleTestCase):
|
2014-05-04 22:29:49 +08:00
|
|
|
|
2014-12-24 20:10:34 +08:00
|
|
|
# #21518 -- If neither override_settings nor a setting_changed receiver
|
2014-05-04 22:29:49 +08:00
|
|
|
# clears the URL cache between tests, then one of test_first or
|
|
|
|
# test_second will fail.
|
2013-11-28 03:45:20 +08:00
|
|
|
|
|
|
|
@override_settings(ROOT_URLCONF=FirstUrls)
|
2014-05-04 22:29:49 +08:00
|
|
|
def test_urlconf_first(self):
|
2013-11-28 03:45:20 +08:00
|
|
|
reverse("first")
|
|
|
|
|
|
|
|
@override_settings(ROOT_URLCONF=SecondUrls)
|
2014-05-04 22:29:49 +08:00
|
|
|
def test_urlconf_second(self):
|
2013-11-28 03:45:20 +08:00
|
|
|
reverse("second")
|
2014-05-04 22:29:49 +08:00
|
|
|
|
|
|
|
def test_urlconf_cache(self):
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(NoReverseMatch):
|
|
|
|
reverse("first")
|
|
|
|
with self.assertRaises(NoReverseMatch):
|
|
|
|
reverse("second")
|
2014-05-04 22:29:49 +08:00
|
|
|
|
|
|
|
with override_settings(ROOT_URLCONF=FirstUrls):
|
|
|
|
self.client.get(reverse("first"))
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(NoReverseMatch):
|
|
|
|
reverse("second")
|
2014-05-04 22:29:49 +08:00
|
|
|
|
|
|
|
with override_settings(ROOT_URLCONF=SecondUrls):
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(NoReverseMatch):
|
|
|
|
reverse("first")
|
2014-05-04 22:29:49 +08:00
|
|
|
self.client.get(reverse("second"))
|
|
|
|
|
|
|
|
self.client.get(reverse("first"))
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(NoReverseMatch):
|
|
|
|
reverse("second")
|
2014-05-04 22:29:49 +08:00
|
|
|
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(NoReverseMatch):
|
|
|
|
reverse("first")
|
|
|
|
with self.assertRaises(NoReverseMatch):
|
|
|
|
reverse("second")
|
2014-10-04 19:02:10 +08:00
|
|
|
|
|
|
|
def test_override_media_root(self):
|
|
|
|
"""
|
|
|
|
Overriding the MEDIA_ROOT setting should be reflected in the
|
|
|
|
base_location attribute of django.core.files.storage.default_storage.
|
|
|
|
"""
|
|
|
|
self.assertEqual(default_storage.base_location, "")
|
|
|
|
with self.settings(MEDIA_ROOT="test_value"):
|
|
|
|
self.assertEqual(default_storage.base_location, "test_value")
|
|
|
|
|
|
|
|
def test_override_media_url(self):
|
|
|
|
"""
|
|
|
|
Overriding the MEDIA_URL setting should be reflected in the
|
|
|
|
base_url attribute of django.core.files.storage.default_storage.
|
|
|
|
"""
|
|
|
|
self.assertEqual(default_storage.base_location, "")
|
|
|
|
with self.settings(MEDIA_URL="/test_value/"):
|
|
|
|
self.assertEqual(default_storage.base_url, "/test_value/")
|
|
|
|
|
|
|
|
def test_override_file_upload_permissions(self):
|
|
|
|
"""
|
|
|
|
Overriding the FILE_UPLOAD_PERMISSIONS setting should be reflected in
|
|
|
|
the file_permissions_mode attribute of
|
|
|
|
django.core.files.storage.default_storage.
|
|
|
|
"""
|
2019-02-06 21:57:37 +08:00
|
|
|
self.assertEqual(default_storage.file_permissions_mode, 0o644)
|
2014-10-04 19:02:10 +08:00
|
|
|
with self.settings(FILE_UPLOAD_PERMISSIONS=0o777):
|
|
|
|
self.assertEqual(default_storage.file_permissions_mode, 0o777)
|
|
|
|
|
|
|
|
def test_override_file_upload_directory_permissions(self):
|
|
|
|
"""
|
|
|
|
Overriding the FILE_UPLOAD_DIRECTORY_PERMISSIONS setting should be
|
|
|
|
reflected in the directory_permissions_mode attribute of
|
|
|
|
django.core.files.storage.default_storage.
|
|
|
|
"""
|
|
|
|
self.assertIsNone(default_storage.directory_permissions_mode)
|
|
|
|
with self.settings(FILE_UPLOAD_DIRECTORY_PERMISSIONS=0o777):
|
|
|
|
self.assertEqual(default_storage.directory_permissions_mode, 0o777)
|
2014-11-29 21:42:06 +08:00
|
|
|
|
|
|
|
def test_override_database_routers(self):
|
|
|
|
"""
|
|
|
|
Overriding DATABASE_ROUTERS should update the master router.
|
|
|
|
"""
|
2017-03-17 19:51:48 +08:00
|
|
|
test_routers = [object()]
|
2014-11-29 21:42:06 +08:00
|
|
|
with self.settings(DATABASE_ROUTERS=test_routers):
|
2017-03-17 19:51:48 +08:00
|
|
|
self.assertEqual(router.routers, test_routers)
|
2015-01-25 22:53:40 +08:00
|
|
|
|
|
|
|
def test_override_static_url(self):
|
|
|
|
"""
|
|
|
|
Overriding the STATIC_URL setting should be reflected in the
|
|
|
|
base_url attribute of
|
|
|
|
django.contrib.staticfiles.storage.staticfiles_storage.
|
|
|
|
"""
|
|
|
|
with self.settings(STATIC_URL="/test/"):
|
|
|
|
self.assertEqual(staticfiles_storage.base_url, "/test/")
|
|
|
|
|
|
|
|
def test_override_static_root(self):
|
|
|
|
"""
|
|
|
|
Overriding the STATIC_ROOT setting should be reflected in the
|
|
|
|
location attribute of
|
|
|
|
django.contrib.staticfiles.storage.staticfiles_storage.
|
|
|
|
"""
|
|
|
|
with self.settings(STATIC_ROOT="/tmp/test"):
|
2017-01-20 21:01:02 +08:00
|
|
|
self.assertEqual(staticfiles_storage.location, os.path.abspath("/tmp/test"))
|
2015-01-25 22:53:40 +08:00
|
|
|
|
|
|
|
def test_override_staticfiles_storage(self):
|
|
|
|
"""
|
|
|
|
Overriding the STATICFILES_STORAGE setting should be reflected in
|
|
|
|
the value of django.contrib.staticfiles.storage.staticfiles_storage.
|
|
|
|
"""
|
2018-10-27 22:30:28 +08:00
|
|
|
new_class = "ManifestStaticFilesStorage"
|
2015-01-25 22:53:40 +08:00
|
|
|
new_storage = "django.contrib.staticfiles.storage." + new_class
|
|
|
|
with self.settings(STATICFILES_STORAGE=new_storage):
|
|
|
|
self.assertEqual(staticfiles_storage.__class__.__name__, new_class)
|
|
|
|
|
|
|
|
def test_override_staticfiles_finders(self):
|
|
|
|
"""
|
|
|
|
Overriding the STATICFILES_FINDERS setting should be reflected in
|
|
|
|
the return value of django.contrib.staticfiles.finders.get_finders.
|
|
|
|
"""
|
|
|
|
current = get_finders()
|
|
|
|
self.assertGreater(len(list(current)), 1)
|
|
|
|
finders = ["django.contrib.staticfiles.finders.FileSystemFinder"]
|
|
|
|
with self.settings(STATICFILES_FINDERS=finders):
|
|
|
|
self.assertEqual(len(list(get_finders())), len(finders))
|
|
|
|
|
|
|
|
def test_override_staticfiles_dirs(self):
|
|
|
|
"""
|
|
|
|
Overriding the STATICFILES_DIRS setting should be reflected in
|
|
|
|
the locations attribute of the
|
|
|
|
django.contrib.staticfiles.finders.FileSystemFinder instance.
|
|
|
|
"""
|
|
|
|
finder = get_finder("django.contrib.staticfiles.finders.FileSystemFinder")
|
|
|
|
test_path = "/tmp/test"
|
|
|
|
expected_location = ("", test_path)
|
|
|
|
self.assertNotIn(expected_location, finder.locations)
|
|
|
|
with self.settings(STATICFILES_DIRS=[test_path]):
|
|
|
|
finder = get_finder("django.contrib.staticfiles.finders.FileSystemFinder")
|
|
|
|
self.assertIn(expected_location, finder.locations)
|
2015-04-17 04:19:30 +08:00
|
|
|
|
|
|
|
|
2015-07-27 00:42:21 +08:00
|
|
|
class TestBadSetUpTestData(TestCase):
|
|
|
|
"""
|
|
|
|
An exception in setUpTestData() shouldn't leak a transaction which would
|
|
|
|
cascade across the rest of the test suite.
|
|
|
|
"""
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-07-27 00:42:21 +08:00
|
|
|
class MyException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
try:
|
2017-01-21 21:13:44 +08:00
|
|
|
super().setUpClass()
|
2015-07-27 00:42:21 +08:00
|
|
|
except cls.MyException:
|
|
|
|
cls._in_atomic_block = connection.in_atomic_block
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(Cls):
|
|
|
|
# override to avoid a second cls._rollback_atomics() which would fail.
|
|
|
|
# Normal setUpClass() methods won't have exception handling so this
|
|
|
|
# method wouldn't typically be run.
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
|
|
|
# Simulate a broken setUpTestData() method.
|
|
|
|
raise cls.MyException()
|
|
|
|
|
|
|
|
def test_failure_in_setUpTestData_should_rollback_transaction(self):
|
|
|
|
# setUpTestData() should call _rollback_atomics() so that the
|
|
|
|
# transaction doesn't leak.
|
|
|
|
self.assertFalse(self._in_atomic_block)
|
|
|
|
|
|
|
|
|
2020-05-20 18:04:36 +08:00
|
|
|
class CaptureOnCommitCallbacksTests(TestCase):
|
|
|
|
databases = {"default", "other"}
|
|
|
|
callback_called = False
|
|
|
|
|
|
|
|
def enqueue_callback(self, using="default"):
|
|
|
|
def hook():
|
|
|
|
self.callback_called = True
|
|
|
|
|
|
|
|
transaction.on_commit(hook, using=using)
|
|
|
|
|
|
|
|
def test_no_arguments(self):
|
|
|
|
with self.captureOnCommitCallbacks() as callbacks:
|
|
|
|
self.enqueue_callback()
|
|
|
|
|
|
|
|
self.assertEqual(len(callbacks), 1)
|
|
|
|
self.assertIs(self.callback_called, False)
|
|
|
|
callbacks[0]()
|
|
|
|
self.assertIs(self.callback_called, True)
|
|
|
|
|
|
|
|
def test_using(self):
|
|
|
|
with self.captureOnCommitCallbacks(using="other") as callbacks:
|
|
|
|
self.enqueue_callback(using="other")
|
|
|
|
|
|
|
|
self.assertEqual(len(callbacks), 1)
|
|
|
|
self.assertIs(self.callback_called, False)
|
|
|
|
callbacks[0]()
|
|
|
|
self.assertIs(self.callback_called, True)
|
|
|
|
|
|
|
|
def test_different_using(self):
|
|
|
|
with self.captureOnCommitCallbacks(using="default") as callbacks:
|
|
|
|
self.enqueue_callback(using="other")
|
|
|
|
|
|
|
|
self.assertEqual(callbacks, [])
|
|
|
|
|
|
|
|
def test_execute(self):
|
|
|
|
with self.captureOnCommitCallbacks(execute=True) as callbacks:
|
|
|
|
self.enqueue_callback()
|
|
|
|
|
|
|
|
self.assertEqual(len(callbacks), 1)
|
|
|
|
self.assertIs(self.callback_called, True)
|
|
|
|
|
|
|
|
def test_pre_callback(self):
|
|
|
|
def pre_hook():
|
|
|
|
pass
|
|
|
|
|
|
|
|
transaction.on_commit(pre_hook, using="default")
|
|
|
|
with self.captureOnCommitCallbacks() as callbacks:
|
|
|
|
self.enqueue_callback()
|
|
|
|
|
|
|
|
self.assertEqual(len(callbacks), 1)
|
|
|
|
self.assertNotEqual(callbacks[0], pre_hook)
|
|
|
|
|
|
|
|
def test_with_rolled_back_savepoint(self):
|
|
|
|
with self.captureOnCommitCallbacks() as callbacks:
|
|
|
|
try:
|
|
|
|
with transaction.atomic():
|
|
|
|
self.enqueue_callback()
|
|
|
|
raise IntegrityError
|
|
|
|
except IntegrityError:
|
|
|
|
# Inner transaction.atomic() has been rolled back.
|
|
|
|
pass
|
|
|
|
|
|
|
|
self.assertEqual(callbacks, [])
|
|
|
|
|
2021-08-25 04:29:55 +08:00
|
|
|
def test_execute_recursive(self):
|
|
|
|
with self.captureOnCommitCallbacks(execute=True) as callbacks:
|
|
|
|
transaction.on_commit(self.enqueue_callback)
|
|
|
|
|
|
|
|
self.assertEqual(len(callbacks), 2)
|
|
|
|
self.assertIs(self.callback_called, True)
|
|
|
|
|
2022-01-05 06:06:46 +08:00
|
|
|
def test_execute_tree(self):
|
|
|
|
"""
|
|
|
|
A visualisation of the callback tree tested. Each node is expected to
|
|
|
|
be visited only once:
|
|
|
|
|
|
|
|
└─branch_1
|
|
|
|
├─branch_2
|
|
|
|
│ ├─leaf_1
|
|
|
|
│ └─leaf_2
|
|
|
|
└─leaf_3
|
|
|
|
"""
|
|
|
|
branch_1_call_counter = 0
|
|
|
|
branch_2_call_counter = 0
|
|
|
|
leaf_1_call_counter = 0
|
|
|
|
leaf_2_call_counter = 0
|
|
|
|
leaf_3_call_counter = 0
|
|
|
|
|
|
|
|
def leaf_1():
|
|
|
|
nonlocal leaf_1_call_counter
|
|
|
|
leaf_1_call_counter += 1
|
|
|
|
|
|
|
|
def leaf_2():
|
|
|
|
nonlocal leaf_2_call_counter
|
|
|
|
leaf_2_call_counter += 1
|
|
|
|
|
|
|
|
def leaf_3():
|
|
|
|
nonlocal leaf_3_call_counter
|
|
|
|
leaf_3_call_counter += 1
|
|
|
|
|
|
|
|
def branch_1():
|
|
|
|
nonlocal branch_1_call_counter
|
|
|
|
branch_1_call_counter += 1
|
|
|
|
transaction.on_commit(branch_2)
|
|
|
|
transaction.on_commit(leaf_3)
|
|
|
|
|
|
|
|
def branch_2():
|
|
|
|
nonlocal branch_2_call_counter
|
|
|
|
branch_2_call_counter += 1
|
|
|
|
transaction.on_commit(leaf_1)
|
|
|
|
transaction.on_commit(leaf_2)
|
|
|
|
|
|
|
|
with self.captureOnCommitCallbacks(execute=True) as callbacks:
|
|
|
|
transaction.on_commit(branch_1)
|
|
|
|
|
|
|
|
self.assertEqual(branch_1_call_counter, 1)
|
|
|
|
self.assertEqual(branch_2_call_counter, 1)
|
|
|
|
self.assertEqual(leaf_1_call_counter, 1)
|
|
|
|
self.assertEqual(leaf_2_call_counter, 1)
|
|
|
|
self.assertEqual(leaf_3_call_counter, 1)
|
|
|
|
|
|
|
|
self.assertEqual(callbacks, [branch_1, branch_2, leaf_3, leaf_1, leaf_2])
|
|
|
|
|
2020-05-20 18:04:36 +08:00
|
|
|
|
2015-04-17 04:19:30 +08:00
|
|
|
class DisallowedDatabaseQueriesTests(SimpleTestCase):
|
2019-01-13 03:33:50 +08:00
|
|
|
def test_disallowed_database_connections(self):
|
|
|
|
expected_message = (
|
|
|
|
"Database connections to 'default' are not allowed in SimpleTestCase "
|
|
|
|
"subclasses. Either subclass TestCase or TransactionTestCase to "
|
|
|
|
"ensure proper test isolation or add 'default' to "
|
|
|
|
"test_utils.tests.DisallowedDatabaseQueriesTests.databases to "
|
|
|
|
"silence this failure."
|
|
|
|
)
|
2021-11-13 01:36:13 +08:00
|
|
|
with self.assertRaisesMessage(DatabaseOperationForbidden, expected_message):
|
2019-01-13 03:33:50 +08:00
|
|
|
connection.connect()
|
2021-11-13 01:36:13 +08:00
|
|
|
with self.assertRaisesMessage(DatabaseOperationForbidden, expected_message):
|
2019-01-13 03:33:50 +08:00
|
|
|
connection.temporary_connection()
|
|
|
|
|
2015-04-17 04:19:30 +08:00
|
|
|
def test_disallowed_database_queries(self):
|
|
|
|
expected_message = (
|
2019-01-13 03:33:50 +08:00
|
|
|
"Database queries to 'default' are not allowed in SimpleTestCase "
|
|
|
|
"subclasses. Either subclass TestCase or TransactionTestCase to "
|
|
|
|
"ensure proper test isolation or add 'default' to "
|
2018-07-12 12:12:20 +08:00
|
|
|
"test_utils.tests.DisallowedDatabaseQueriesTests.databases to "
|
|
|
|
"silence this failure."
|
2015-04-17 04:19:30 +08:00
|
|
|
)
|
2021-11-13 01:36:13 +08:00
|
|
|
with self.assertRaisesMessage(DatabaseOperationForbidden, expected_message):
|
2015-04-17 04:19:30 +08:00
|
|
|
Car.objects.first()
|
|
|
|
|
2018-07-12 12:12:20 +08:00
|
|
|
def test_disallowed_database_chunked_cursor_queries(self):
|
2016-06-04 06:31:21 +08:00
|
|
|
expected_message = (
|
2019-01-13 03:33:50 +08:00
|
|
|
"Database queries to 'default' are not allowed in SimpleTestCase "
|
|
|
|
"subclasses. Either subclass TestCase or TransactionTestCase to "
|
|
|
|
"ensure proper test isolation or add 'default' to "
|
2018-07-12 12:12:20 +08:00
|
|
|
"test_utils.tests.DisallowedDatabaseQueriesTests.databases to "
|
|
|
|
"silence this failure."
|
2016-06-04 06:31:21 +08:00
|
|
|
)
|
2021-11-13 01:36:13 +08:00
|
|
|
with self.assertRaisesMessage(DatabaseOperationForbidden, expected_message):
|
2016-06-04 06:31:21 +08:00
|
|
|
next(Car.objects.iterator())
|
|
|
|
|
|
|
|
|
2015-04-17 04:19:30 +08:00
|
|
|
class AllowedDatabaseQueriesTests(SimpleTestCase):
|
2018-07-12 12:12:20 +08:00
|
|
|
databases = {"default"}
|
2015-04-17 04:19:30 +08:00
|
|
|
|
|
|
|
def test_allowed_database_queries(self):
|
|
|
|
Car.objects.first()
|
2015-11-17 13:33:18 +08:00
|
|
|
|
2018-07-12 12:12:20 +08:00
|
|
|
def test_allowed_database_chunked_cursor_queries(self):
|
|
|
|
next(Car.objects.iterator(), None)
|
|
|
|
|
|
|
|
|
|
|
|
class DatabaseAliasTests(SimpleTestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.addCleanup(setattr, self.__class__, "databases", self.databases)
|
|
|
|
|
|
|
|
def test_no_close_match(self):
|
|
|
|
self.__class__.databases = {"void"}
|
|
|
|
message = (
|
|
|
|
"test_utils.tests.DatabaseAliasTests.databases refers to 'void' which is "
|
|
|
|
"not defined in settings.DATABASES."
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(ImproperlyConfigured, message):
|
|
|
|
self._validate_databases()
|
|
|
|
|
|
|
|
def test_close_match(self):
|
|
|
|
self.__class__.databases = {"defualt"}
|
|
|
|
message = (
|
|
|
|
"test_utils.tests.DatabaseAliasTests.databases refers to 'defualt' which "
|
|
|
|
"is not defined in settings.DATABASES. Did you mean 'default'?"
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(ImproperlyConfigured, message):
|
|
|
|
self._validate_databases()
|
|
|
|
|
|
|
|
def test_match(self):
|
|
|
|
self.__class__.databases = {"default", "other"}
|
|
|
|
self.assertEqual(self._validate_databases(), frozenset({"default", "other"}))
|
|
|
|
|
|
|
|
def test_all(self):
|
|
|
|
self.__class__.databases = "__all__"
|
|
|
|
self.assertEqual(self._validate_databases(), frozenset(connections))
|
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
|
|
|
|
@isolate_apps("test_utils", attr_name="class_apps")
|
|
|
|
class IsolatedAppsTests(SimpleTestCase):
|
|
|
|
def test_installed_apps(self):
|
|
|
|
self.assertEqual(
|
|
|
|
[app_config.label for app_config in self.class_apps.get_app_configs()],
|
|
|
|
["test_utils"],
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_class_decoration(self):
|
|
|
|
class ClassDecoration(models.Model):
|
|
|
|
pass
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
self.assertEqual(ClassDecoration._meta.apps, self.class_apps)
|
|
|
|
|
|
|
|
@isolate_apps("test_utils", kwarg_name="method_apps")
|
|
|
|
def test_method_decoration(self, method_apps):
|
|
|
|
class MethodDecoration(models.Model):
|
|
|
|
pass
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
self.assertEqual(MethodDecoration._meta.apps, method_apps)
|
|
|
|
|
|
|
|
def test_context_manager(self):
|
|
|
|
with isolate_apps("test_utils") as context_apps:
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
class ContextManager(models.Model):
|
|
|
|
pass
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
self.assertEqual(ContextManager._meta.apps, context_apps)
|
|
|
|
|
|
|
|
@isolate_apps("test_utils", kwarg_name="method_apps")
|
|
|
|
def test_nested(self, method_apps):
|
|
|
|
class MethodDecoration(models.Model):
|
|
|
|
pass
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
with isolate_apps("test_utils") as context_apps:
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
class ContextManager(models.Model):
|
|
|
|
pass
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
with isolate_apps("test_utils") as nested_context_apps:
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
class NestedContextManager(models.Model):
|
|
|
|
pass
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2015-11-17 13:33:18 +08:00
|
|
|
self.assertEqual(MethodDecoration._meta.apps, method_apps)
|
|
|
|
self.assertEqual(ContextManager._meta.apps, context_apps)
|
|
|
|
self.assertEqual(NestedContextManager._meta.apps, nested_context_apps)
|
2018-08-18 04:30:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
class DoNothingDecorator(TestContextDecorator):
|
|
|
|
def enable(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def disable(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class TestContextDecoratorTests(SimpleTestCase):
|
|
|
|
@mock.patch.object(DoNothingDecorator, "disable")
|
|
|
|
def test_exception_in_setup(self, mock_disable):
|
|
|
|
"""An exception is setUp() is reraised after disable() is called."""
|
2022-02-04 03:24:19 +08:00
|
|
|
|
2018-08-18 04:30:27 +08:00
|
|
|
class ExceptionInSetUp(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
raise NotImplementedError("reraised")
|
|
|
|
|
|
|
|
decorator = DoNothingDecorator()
|
|
|
|
decorated_test_class = decorator.__call__(ExceptionInSetUp)()
|
|
|
|
self.assertFalse(mock_disable.called)
|
|
|
|
with self.assertRaisesMessage(NotImplementedError, "reraised"):
|
|
|
|
decorated_test_class.setUp()
|
2020-09-06 20:36:20 +08:00
|
|
|
decorated_test_class.doCleanups()
|
2018-08-18 04:30:27 +08:00
|
|
|
self.assertTrue(mock_disable.called)
|
2020-09-06 20:36:20 +08:00
|
|
|
|
|
|
|
def test_cleanups_run_after_tearDown(self):
|
|
|
|
calls = []
|
|
|
|
|
|
|
|
class SaveCallsDecorator(TestContextDecorator):
|
|
|
|
def enable(self):
|
|
|
|
calls.append("enable")
|
|
|
|
|
|
|
|
def disable(self):
|
|
|
|
calls.append("disable")
|
|
|
|
|
|
|
|
class AddCleanupInSetUp(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
calls.append("setUp")
|
|
|
|
self.addCleanup(lambda: calls.append("cleanup"))
|
|
|
|
|
|
|
|
decorator = SaveCallsDecorator()
|
|
|
|
decorated_test_class = decorator.__call__(AddCleanupInSetUp)()
|
|
|
|
decorated_test_class.setUp()
|
|
|
|
decorated_test_class.tearDown()
|
|
|
|
decorated_test_class.doCleanups()
|
|
|
|
self.assertEqual(calls, ["enable", "setUp", "cleanup", "disable"])
|