2012-02-01 04:36:11 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-07-30 01:19:04 +08:00
|
|
|
from __future__ import unicode_literals
|
2011-03-28 13:58:43 +08:00
|
|
|
|
2016-07-20 22:12:13 +08:00
|
|
|
import sys
|
2013-07-01 20:22:27 +08:00
|
|
|
import unittest
|
2015-07-29 23:12:07 +08:00
|
|
|
import warnings
|
2013-07-01 20:22:27 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
from django.conf.urls import url
|
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
|
2014-10-04 19:02:10 +08:00
|
|
|
from django.core.files.storage import default_storage
|
2015-11-17 13:33:18 +08:00
|
|
|
from django.db import connection, models, router
|
2012-01-07 18:26:29 +08:00
|
|
|
from django.forms import EmailField, IntegerField
|
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 (
|
2015-07-29 23:12:07 +08:00
|
|
|
SimpleTestCase, TestCase, ignore_warnings, 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
|
2015-11-17 13:33:18 +08:00
|
|
|
from django.test.utils import (
|
|
|
|
CaptureQueriesContext, isolate_apps, override_settings,
|
2016-08-08 17:38:10 +08:00
|
|
|
setup_test_environment,
|
2015-11-17 13:33:18 +08:00
|
|
|
)
|
2015-12-30 23:51:16 +08:00
|
|
|
from django.urls import NoReverseMatch, reverse
|
2012-08-16 16:26:18 +08:00
|
|
|
from django.utils import six
|
2015-01-25 22:53:40 +08:00
|
|
|
from django.utils._os import abspathu
|
2015-07-29 23:12:07 +08:00
|
|
|
from django.utils.deprecation import RemovedInDjango20Warning
|
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):
|
2014-08-24 00:01:33 +08:00
|
|
|
def _assert_skipping(self, func, expected_exc):
|
|
|
|
# We cannot simply use assertRaises because a SkipTest exception will go unnoticed
|
|
|
|
try:
|
|
|
|
func()
|
|
|
|
except expected_exc:
|
|
|
|
pass
|
|
|
|
except Exception as e:
|
|
|
|
self.fail("No %s exception should have been raised for %s." % (
|
|
|
|
e.__class__.__name__, func.__name__))
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
def test_skip_if_db_feature(self):
|
|
|
|
"""
|
|
|
|
Testing the django.test.skipIfDBFeature decorator.
|
|
|
|
"""
|
|
|
|
@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
|
|
|
|
|
|
|
|
2015-04-18 05:38:20 +08:00
|
|
|
class SkippingClassTestCase(SimpleTestCase):
|
2013-07-20 02:30:14 +08:00
|
|
|
def test_skip_class_unless_db_feature(self):
|
|
|
|
@skipUnlessDBFeature("__class__")
|
|
|
|
class NotSkippedTests(unittest.TestCase):
|
|
|
|
def test_dummy(self):
|
|
|
|
return
|
|
|
|
|
|
|
|
@skipIfDBFeature("__class__")
|
|
|
|
class SkippedTests(unittest.TestCase):
|
|
|
|
def test_will_be_skipped(self):
|
|
|
|
self.fail("We should never arrive here.")
|
|
|
|
|
|
|
|
test_suite = unittest.TestSuite()
|
|
|
|
test_suite.addTest(NotSkippedTests('test_dummy'))
|
|
|
|
try:
|
|
|
|
test_suite.addTest(SkippedTests('test_will_be_skipped'))
|
|
|
|
except unittest.SkipTest:
|
|
|
|
self.fail("SkipTest should not be raised at this stage")
|
|
|
|
result = unittest.TextTestRunner(stream=six.StringIO()).run(test_suite)
|
|
|
|
self.assertEqual(result.testsRun, 2)
|
|
|
|
self.assertEqual(len(result.skipped), 1)
|
|
|
|
|
|
|
|
|
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):
|
2011-04-02 21:27:17 +08:00
|
|
|
|
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)
|
|
|
|
self.assertNumQueries(2, test_func)
|
2010-11-11 23:06:20 +08:00
|
|
|
|
2011-08-13 08:42:08 +08:00
|
|
|
|
2012-12-13 19:33:11 +08:00
|
|
|
class AssertQuerysetEqualTests(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.p1 = Person.objects.create(name='p1')
|
|
|
|
self.p2 = Person.objects.create(name='p2')
|
|
|
|
|
|
|
|
def test_ordered(self):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all().order_by('name'),
|
|
|
|
[repr(self.p1), repr(self.p2)]
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_unordered(self):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all().order_by('name'),
|
|
|
|
[repr(self.p2), repr(self.p1)],
|
|
|
|
ordered=False
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_transform(self):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all().order_by('name'),
|
|
|
|
[self.p1.pk, self.p2.pk],
|
|
|
|
transform=lambda x: x.pk
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_undefined_order(self):
|
|
|
|
# Using an unordered queryset with more than one ordered value
|
|
|
|
# is an error.
|
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.all(),
|
|
|
|
[repr(self.p1), repr(self.p2)]
|
|
|
|
)
|
|
|
|
# No error for one value.
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
Person.objects.filter(name='p1'),
|
|
|
|
[repr(self.p1)]
|
|
|
|
)
|
|
|
|
|
2014-09-29 23:17:44 +08:00
|
|
|
def test_repeated_values(self):
|
|
|
|
"""
|
|
|
|
Test that assertQuerysetEqual checks the number of appearance of each item
|
|
|
|
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(
|
|
|
|
self.p1.cars.all(),
|
|
|
|
[repr(batmobile), repr(k2000)],
|
|
|
|
ordered=False
|
|
|
|
)
|
|
|
|
self.assertQuerysetEqual(
|
|
|
|
self.p1.cars.all(),
|
|
|
|
[repr(batmobile)] * 2 + [repr(k2000)] * 4,
|
|
|
|
ordered=False
|
|
|
|
)
|
|
|
|
|
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):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.person_pk = six.text_type(Person.objects.create(name='test').pk)
|
|
|
|
|
|
|
|
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):
|
2011-04-02 21:27:17 +08:00
|
|
|
|
2011-03-28 13:58:43 +08:00
|
|
|
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):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertRaises(AssertionError) as exc_info:
|
|
|
|
with self.assertNumQueries(2):
|
|
|
|
Person.objects.count()
|
2011-03-28 13:58:43 +08:00
|
|
|
self.assertIn("1 queries executed, 2 expected", str(exc_info.exception))
|
2013-12-09 07:07:04 +08:00
|
|
|
self.assertIn("Captured queries were", str(exc_info.exception))
|
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):
|
2013-11-04 23:50:14 +08:00
|
|
|
|
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):
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, AssertionError, r'^template_used/base\.html'):
|
|
|
|
with self.assertTemplateUsed('template_used/base.html'):
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, AssertionError, r'^template_used/base\.html'):
|
|
|
|
with self.assertTemplateUsed(template_name='template_used/base.html'):
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2015-09-12 07:33:12 +08:00
|
|
|
with six.assertRaisesRegex(
|
|
|
|
self, AssertionError, r'^template_used/base\.html.*template_used/alternative\.html$'):
|
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
|
|
|
|
2013-11-04 23:50:14 +08:00
|
|
|
with self.assertRaises(AssertionError) as cm:
|
|
|
|
response = self.client.get('/test_utils/no_template_used/')
|
|
|
|
self.assertTemplateUsed(response, 'template_used/base.html')
|
|
|
|
self.assertEqual(cm.exception.args[0], "No templates used to render the response")
|
|
|
|
|
2012-02-01 03:23:09 +08:00
|
|
|
def test_failure(self):
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
with self.assertTemplateUsed():
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
with self.assertTemplateUsed(''):
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
with self.assertTemplateUsed(''):
|
|
|
|
render_to_string('template_used/base.html')
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
with self.assertTemplateUsed(template_name=''):
|
|
|
|
pass
|
2012-02-01 03:23:09 +08:00
|
|
|
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertRaises(AssertionError):
|
|
|
|
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()
|
|
|
|
error_msg = (
|
|
|
|
'assertTemplateUsed() and assertTemplateNotUsed() are only '
|
|
|
|
'usable on responses fetched using the Django test Client.'
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(ValueError, error_msg):
|
|
|
|
self.assertTemplateUsed(response, 'template.html')
|
|
|
|
|
|
|
|
with self.assertRaisesMessage(ValueError, error_msg):
|
|
|
|
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('''
|
|
|
|
<script>
|
|
|
|
var js_sha_link='<p>***</p>';
|
|
|
|
</script>
|
|
|
|
''')
|
|
|
|
|
|
|
|
# script content will be parsed to text
|
|
|
|
dom = parse_html('''
|
|
|
|
<script><p>foo</p> '</scr'+'ipt>' <span>bar</span></script>
|
|
|
|
''')
|
|
|
|
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):
|
2016-04-08 10:04:45 +08:00
|
|
|
self_closing_tags = (
|
|
|
|
'br', 'hr', 'input', 'img', 'meta', 'spacer', 'link', 'frame',
|
|
|
|
'base', 'col',
|
|
|
|
)
|
2012-02-01 04:36:11 +08:00
|
|
|
for tag in self_closing_tags:
|
|
|
|
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')
|
|
|
|
|
|
|
|
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>')
|
|
|
|
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" />')
|
|
|
|
|
|
|
|
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>""",
|
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)
|
|
|
|
|
2016-09-01 08:41:34 +08:00
|
|
|
# html with a root element contains the same html with no root element
|
|
|
|
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)
|
|
|
|
|
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))"
|
|
|
|
) if sys.version_info >= (3, 5) else (
|
|
|
|
"First argument is not valid HTML:\n"
|
|
|
|
"Unexpected end tag `div` (Line 1, Column 6), at line 1, column 7"
|
|
|
|
)
|
|
|
|
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>')
|
|
|
|
|
|
|
|
def test_contains_html(self):
|
|
|
|
response = HttpResponse('''<body>
|
|
|
|
This is a form: <form action="" method="get">
|
|
|
|
<input type="text" name="Hello" />
|
|
|
|
</form></body>''')
|
|
|
|
|
|
|
|
self.assertNotContains(response, "<input name='Hello' type='text'>")
|
|
|
|
self.assertContains(response, '<form action="" method="get">')
|
|
|
|
|
|
|
|
self.assertContains(response, "<input name='Hello' type='text'>", html=True)
|
|
|
|
self.assertNotContains(response, '<form action="" method="get">', html=True)
|
|
|
|
|
|
|
|
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):
|
|
|
|
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,
|
|
|
|
'<p class="help">Some help text for the title (with unicode ŠĐĆŽćžšđ)</p>',
|
|
|
|
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))
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
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):
|
|
|
|
super(SkippingExtraTests, self).__call__(result)
|
|
|
|
|
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."""
|
|
|
|
def func1():
|
|
|
|
raise ValueError("[.*x+]y?")
|
2016-01-04 16:50:08 +08:00
|
|
|
with self.assertRaisesMessage(ValueError, "[.*x+]y?"):
|
|
|
|
func1()
|
2011-08-13 08:42:08 +08:00
|
|
|
|
2015-07-29 23:12:07 +08:00
|
|
|
@ignore_warnings(category=RemovedInDjango20Warning)
|
2015-05-18 07:09:30 +08:00
|
|
|
def test_callable_obj_param(self):
|
|
|
|
# callable_obj was a documented kwarg in Django 1.8 and older.
|
|
|
|
def func1():
|
|
|
|
raise ValueError("[.*x+]y?")
|
2015-07-29 23:12:07 +08:00
|
|
|
|
|
|
|
with warnings.catch_warnings(record=True) as warns:
|
|
|
|
warnings.simplefilter('always')
|
|
|
|
self.assertRaisesMessage(ValueError, "[.*x+]y?", callable_obj=func1)
|
|
|
|
|
|
|
|
self.assertEqual(len(warns), 1)
|
|
|
|
self.assertEqual(
|
|
|
|
str(warns[0].message),
|
|
|
|
'The callable_obj kwarg is deprecated. Pass the callable '
|
|
|
|
'as a positional argument instead.'
|
|
|
|
)
|
2015-05-18 07:09:30 +08:00
|
|
|
|
2011-08-13 08:42:08 +08:00
|
|
|
|
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
|
|
|
}
|
|
|
|
self.assertFieldOutput(MyCustomField, {}, {}, empty_value=None)
|
2011-08-23 10:32:37 +08:00
|
|
|
|
2013-04-07 01:09:44 +08:00
|
|
|
|
2013-11-28 03:45:20 +08:00
|
|
|
class FirstUrls:
|
2014-05-04 22:29:49 +08:00
|
|
|
urlpatterns = [url(r'first/$', empty_response, name='first')]
|
2013-11-28 03:45:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
class SecondUrls:
|
2014-05-04 22:29:49 +08:00
|
|
|
urlpatterns = [url(r'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()
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
self.assertIsNone(default_storage.file_permissions_mode)
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
test_routers = (object(),)
|
|
|
|
with self.settings(DATABASE_ROUTERS=test_routers):
|
|
|
|
self.assertSequenceEqual(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'):
|
|
|
|
self.assertEqual(staticfiles_storage.location, abspathu('/tmp/test'))
|
|
|
|
|
|
|
|
def test_override_staticfiles_storage(self):
|
|
|
|
"""
|
|
|
|
Overriding the STATICFILES_STORAGE setting should be reflected in
|
|
|
|
the value of django.contrib.staticfiles.storage.staticfiles_storage.
|
|
|
|
"""
|
|
|
|
new_class = 'CachedStaticFilesStorage'
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
class MyException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
try:
|
2015-08-01 19:39:16 +08:00
|
|
|
super(TestBadSetUpTestData, cls).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)
|
|
|
|
|
|
|
|
|
2015-04-17 04:19:30 +08:00
|
|
|
class DisallowedDatabaseQueriesTests(SimpleTestCase):
|
|
|
|
def test_disallowed_database_queries(self):
|
|
|
|
expected_message = (
|
|
|
|
"Database queries aren't allowed in SimpleTestCase. "
|
|
|
|
"Either use TestCase or TransactionTestCase to ensure proper test isolation or "
|
|
|
|
"set DisallowedDatabaseQueriesTests.allow_database_queries to True to silence this failure."
|
|
|
|
)
|
|
|
|
with self.assertRaisesMessage(AssertionError, expected_message):
|
|
|
|
Car.objects.first()
|
|
|
|
|
|
|
|
|
|
|
|
class AllowedDatabaseQueriesTests(SimpleTestCase):
|
|
|
|
allow_database_queries = True
|
|
|
|
|
|
|
|
def test_allowed_database_queries(self):
|
|
|
|
Car.objects.first()
|
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
|
|
|
|
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
|
|
|
|
self.assertEqual(MethodDecoration._meta.apps, method_apps)
|
|
|
|
|
|
|
|
def test_context_manager(self):
|
|
|
|
with isolate_apps('test_utils') as context_apps:
|
|
|
|
class ContextManager(models.Model):
|
|
|
|
pass
|
|
|
|
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
|
|
|
|
with isolate_apps('test_utils') as context_apps:
|
|
|
|
class ContextManager(models.Model):
|
|
|
|
pass
|
|
|
|
with isolate_apps('test_utils') as nested_context_apps:
|
|
|
|
class NestedContextManager(models.Model):
|
|
|
|
pass
|
|
|
|
self.assertEqual(MethodDecoration._meta.apps, method_apps)
|
|
|
|
self.assertEqual(ContextManager._meta.apps, context_apps)
|
|
|
|
self.assertEqual(NestedContextManager._meta.apps, nested_context_apps)
|