123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- from __future__ import with_statement
- from django.test import SimpleTestCase, TestCase, skipUnlessDBFeature
- from django.utils.unittest import skip
- from models import Person
- class SkippingTestCase(TestCase):
- def test_skip_unless_db_feature(self):
- "A test that might be skipped is actually called."
- # Total hack, but it works, just want an attribute that's always true.
- @skipUnlessDBFeature("__class__")
- def test_func():
- raise ValueError
- self.assertRaises(ValueError, test_func)
- class AssertNumQueriesTests(TestCase):
- urls = 'regressiontests.test_utils.urls'
- def test_assert_num_queries(self):
- def test_func():
- raise ValueError
- self.assertRaises(ValueError,
- self.assertNumQueries, 2, test_func
- )
- def test_assert_num_queries_with_client(self):
- person = Person.objects.create(name='test')
- self.assertNumQueries(
- 1,
- self.client.get,
- "/test_utils/get_person/%s/" % person.pk
- )
- self.assertNumQueries(
- 1,
- self.client.get,
- "/test_utils/get_person/%s/" % person.pk
- )
- 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)
- class AssertNumQueriesContextManagerTests(TestCase):
- urls = 'regressiontests.test_utils.urls'
- 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):
- with self.assertRaises(AssertionError) as exc_info:
- with self.assertNumQueries(2):
- Person.objects.count()
- self.assertIn("1 queries executed, 2 expected", str(exc_info.exception))
- with self.assertRaises(TypeError):
- with self.assertNumQueries(4000):
- raise TypeError
- 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)
- class SaveRestoreWarningState(TestCase):
- def test_save_restore_warnings_state(self):
- """
- Ensure save_warnings_state/restore_warnings_state work correctly.
- """
- # In reality this test could be satisfied by many broken implementations
- # of save_warnings_state/restore_warnings_state (e.g. just
- # warnings.resetwarnings()) , but it is difficult to test more.
- import warnings
- self.save_warnings_state()
- class MyWarning(Warning):
- pass
- # Add a filter that causes an exception to be thrown, so we can catch it
- warnings.simplefilter("error", MyWarning)
- self.assertRaises(Warning, lambda: warnings.warn("warn", MyWarning))
- # Now restore.
- self.restore_warnings_state()
- # After restoring, we shouldn't get an exception. But we don't want a
- # warning printed either, so we have to silence the warning.
- warnings.simplefilter("ignore", MyWarning)
- warnings.warn("warn", MyWarning)
- # Remove the filter we just added.
- self.restore_warnings_state()
- 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)
- @skip("Fixture loading should not be performed for skipped tests.")
- def test_fixtures_are_skipped(self):
- pass
- class AssertRaisesMsgTest(SimpleTestCase):
- def test_special_re_chars(self):
- """assertRaisesMessage shouldn't interpret RE special chars."""
- def func1():
- raise ValueError("[.*x+]y?")
- self.assertRaisesMessage(ValueError, "[.*x+]y?", func1)
- __test__ = {"API_TEST": r"""
- # Some checks of the doctest output normalizer.
- # Standard doctests do fairly
- >>> from django.utils import simplejson
- >>> from django.utils.xmlutils import SimplerXMLGenerator
- >>> from StringIO import StringIO
- >>> def produce_long():
- ... return 42L
- >>> def produce_int():
- ... return 42
- >>> def produce_json():
- ... return simplejson.dumps(['foo', {'bar': ('baz', None, 1.0, 2), 'whiz': 42}])
- >>> def produce_xml():
- ... stream = StringIO()
- ... xml = SimplerXMLGenerator(stream, encoding='utf-8')
- ... xml.startDocument()
- ... xml.startElement("foo", {"aaa" : "1.0", "bbb": "2.0"})
- ... xml.startElement("bar", {"ccc" : "3.0"})
- ... xml.characters("Hello")
- ... xml.endElement("bar")
- ... xml.startElement("whiz", {})
- ... xml.characters("Goodbye")
- ... xml.endElement("whiz")
- ... xml.endElement("foo")
- ... xml.endDocument()
- ... return stream.getvalue()
- >>> def produce_xml_fragment():
- ... stream = StringIO()
- ... xml = SimplerXMLGenerator(stream, encoding='utf-8')
- ... xml.startElement("foo", {"aaa": "1.0", "bbb": "2.0"})
- ... xml.characters("Hello")
- ... xml.endElement("foo")
- ... xml.startElement("bar", {"ccc": "3.0", "ddd": "4.0"})
- ... xml.endElement("bar")
- ... return stream.getvalue()
- # Long values are normalized and are comparable to normal integers ...
- >>> produce_long()
- 42
- # ... and vice versa
- >>> produce_int()
- 42L
- # JSON output is normalized for field order, so it doesn't matter
- # which order json dictionary attributes are listed in output
- >>> produce_json()
- '["foo", {"bar": ["baz", null, 1.0, 2], "whiz": 42}]'
- >>> produce_json()
- '["foo", {"whiz": 42, "bar": ["baz", null, 1.0, 2]}]'
- # XML output is normalized for attribute order, so it doesn't matter
- # which order XML element attributes are listed in output
- >>> produce_xml()
- '<?xml version="1.0" encoding="UTF-8"?>\n<foo aaa="1.0" bbb="2.0"><bar ccc="3.0">Hello</bar><whiz>Goodbye</whiz></foo>'
- >>> produce_xml()
- '<?xml version="1.0" encoding="UTF-8"?>\n<foo bbb="2.0" aaa="1.0"><bar ccc="3.0">Hello</bar><whiz>Goodbye</whiz></foo>'
- >>> produce_xml_fragment()
- '<foo aaa="1.0" bbb="2.0">Hello</foo><bar ccc="3.0" ddd="4.0"></bar>'
- >>> produce_xml_fragment()
- '<foo bbb="2.0" aaa="1.0">Hello</foo><bar ddd="4.0" ccc="3.0"></bar>'
- """}
|