2013-07-30 01:19:04 +08:00
|
|
|
from __future__ import unicode_literals
|
2011-03-28 13:58:43 +08:00
|
|
|
|
2013-03-05 05:17:35 +08:00
|
|
|
import sys
|
2013-07-01 20:22:27 +08:00
|
|
|
from unittest import skipIf, skipUnless
|
2013-03-05 05:17:35 +08:00
|
|
|
|
2013-06-28 04:19:54 +08:00
|
|
|
from django.db import connection, transaction, DatabaseError, IntegrityError
|
2014-03-21 21:21:43 +08:00
|
|
|
from django.test import TransactionTestCase, skipIfDBFeature
|
2013-03-05 05:17:35 +08:00
|
|
|
from django.utils import six
|
2010-09-13 13:28:29 +08:00
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
from .models import Reporter
|
2010-09-13 13:28:29 +08:00
|
|
|
|
|
|
|
|
2013-03-05 05:17:35 +08:00
|
|
|
@skipUnless(connection.features.uses_savepoints,
|
|
|
|
"'atomic' requires transactions and savepoints.")
|
|
|
|
class AtomicTests(TransactionTestCase):
|
|
|
|
"""
|
|
|
|
Tests for the atomic decorator and context manager.
|
|
|
|
|
|
|
|
The tests make assertions on internal attributes because there isn't a
|
|
|
|
robust way to ask the database for its current transaction state.
|
|
|
|
|
|
|
|
Since the decorator syntax is converted into a context manager (see the
|
|
|
|
implementation), there are only a few basic tests with the decorator
|
|
|
|
syntax and the bulk of the tests use the context manager syntax.
|
|
|
|
"""
|
|
|
|
|
2013-06-04 14:09:29 +08:00
|
|
|
available_apps = ['transactions']
|
|
|
|
|
2013-03-05 05:17:35 +08:00
|
|
|
def test_decorator_syntax_commit(self):
|
|
|
|
@transaction.atomic
|
|
|
|
def make_reporter():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
make_reporter()
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), ['<Reporter: Tintin>'])
|
|
|
|
|
|
|
|
def test_decorator_syntax_rollback(self):
|
|
|
|
@transaction.atomic
|
|
|
|
def make_reporter():
|
|
|
|
Reporter.objects.create(first_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his last name")
|
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
make_reporter()
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
|
|
|
def test_alternate_decorator_syntax_commit(self):
|
|
|
|
@transaction.atomic()
|
|
|
|
def make_reporter():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
make_reporter()
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), ['<Reporter: Tintin>'])
|
|
|
|
|
|
|
|
def test_alternate_decorator_syntax_rollback(self):
|
|
|
|
@transaction.atomic()
|
|
|
|
def make_reporter():
|
|
|
|
Reporter.objects.create(first_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his last name")
|
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
make_reporter()
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
|
|
|
def test_commit(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), ['<Reporter: Tintin>'])
|
|
|
|
|
|
|
|
def test_rollback(self):
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his last name")
|
2013-03-05 05:17:35 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
|
|
|
def test_nested_commit_commit(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Archibald", last_name="Haddock")
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(),
|
|
|
|
['<Reporter: Archibald Haddock>', '<Reporter: Tintin>'])
|
|
|
|
|
|
|
|
def test_nested_commit_rollback(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his last name")
|
2013-03-05 05:17:35 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), ['<Reporter: Tintin>'])
|
|
|
|
|
|
|
|
def test_nested_rollback_commit(self):
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
2013-03-05 05:17:35 +08:00
|
|
|
with transaction.atomic():
|
2013-09-22 19:49:46 +08:00
|
|
|
Reporter.objects.create(last_name="Tintin")
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(last_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his first name")
|
2013-03-05 05:17:35 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
|
|
|
def test_nested_rollback_rollback(self):
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(last_name="Tintin")
|
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his last name")
|
|
|
|
raise Exception("Oops, that's his first name")
|
2013-03-05 05:17:35 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
2013-03-08 22:44:41 +08:00
|
|
|
def test_merged_commit_commit(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
with transaction.atomic(savepoint=False):
|
|
|
|
Reporter.objects.create(first_name="Archibald", last_name="Haddock")
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(),
|
|
|
|
['<Reporter: Archibald Haddock>', '<Reporter: Tintin>'])
|
|
|
|
|
|
|
|
def test_merged_commit_rollback(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic(savepoint=False):
|
|
|
|
Reporter.objects.create(first_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his last name")
|
2013-03-08 22:44:41 +08:00
|
|
|
# Writes in the outer block are rolled back too.
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
|
|
|
def test_merged_rollback_commit(self):
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(last_name="Tintin")
|
|
|
|
with transaction.atomic(savepoint=False):
|
|
|
|
Reporter.objects.create(last_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his first name")
|
2013-03-08 22:44:41 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
|
|
|
def test_merged_rollback_rollback(self):
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(last_name="Tintin")
|
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic(savepoint=False):
|
|
|
|
Reporter.objects.create(first_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his last name")
|
|
|
|
raise Exception("Oops, that's his first name")
|
2013-03-08 22:44:41 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
2013-03-05 05:17:35 +08:00
|
|
|
def test_reuse_commit_commit(self):
|
|
|
|
atomic = transaction.atomic()
|
|
|
|
with atomic:
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
with atomic:
|
|
|
|
Reporter.objects.create(first_name="Archibald", last_name="Haddock")
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(),
|
|
|
|
['<Reporter: Archibald Haddock>', '<Reporter: Tintin>'])
|
|
|
|
|
|
|
|
def test_reuse_commit_rollback(self):
|
|
|
|
atomic = transaction.atomic()
|
|
|
|
with atomic:
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with atomic:
|
|
|
|
Reporter.objects.create(first_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his last name")
|
2013-03-05 05:17:35 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), ['<Reporter: Tintin>'])
|
|
|
|
|
|
|
|
def test_reuse_rollback_commit(self):
|
|
|
|
atomic = transaction.atomic()
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
2013-03-05 05:17:35 +08:00
|
|
|
with atomic:
|
2013-09-22 19:49:46 +08:00
|
|
|
Reporter.objects.create(last_name="Tintin")
|
|
|
|
with atomic:
|
|
|
|
Reporter.objects.create(last_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his first name")
|
2013-03-05 05:17:35 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
|
|
|
def test_reuse_rollback_rollback(self):
|
|
|
|
atomic = transaction.atomic()
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with atomic:
|
|
|
|
Reporter.objects.create(last_name="Tintin")
|
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with atomic:
|
|
|
|
Reporter.objects.create(first_name="Haddock")
|
|
|
|
raise Exception("Oops, that's his last name")
|
|
|
|
raise Exception("Oops, that's his first name")
|
2013-03-05 05:17:35 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
2013-06-28 04:19:54 +08:00
|
|
|
def test_force_rollback(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
# atomic block shouldn't rollback, but force it.
|
|
|
|
self.assertFalse(transaction.get_rollback())
|
|
|
|
transaction.set_rollback(True)
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
|
|
|
def test_prevent_rollback(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
sid = transaction.savepoint()
|
|
|
|
# trigger a database error inside an inner atomic without savepoint
|
2013-09-22 19:49:46 +08:00
|
|
|
with self.assertRaises(DatabaseError):
|
|
|
|
with transaction.atomic(savepoint=False):
|
2014-01-09 23:05:15 +08:00
|
|
|
with connection.cursor() as cursor:
|
|
|
|
cursor.execute(
|
|
|
|
"SELECT no_such_col FROM transactions_reporter")
|
2013-09-23 04:14:17 +08:00
|
|
|
# prevent atomic from rolling back since we're recovering manually
|
2013-06-28 04:19:54 +08:00
|
|
|
self.assertTrue(transaction.get_rollback())
|
|
|
|
transaction.set_rollback(False)
|
2013-09-23 04:14:17 +08:00
|
|
|
transaction.savepoint_rollback(sid)
|
2013-06-28 04:19:54 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), ['<Reporter: Tintin>'])
|
|
|
|
|
2013-03-05 05:17:35 +08:00
|
|
|
|
|
|
|
class AtomicInsideTransactionTests(AtomicTests):
|
|
|
|
"""All basic tests for atomic should also pass within an existing transaction."""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.atomic = transaction.atomic()
|
|
|
|
self.atomic.__enter__()
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.atomic.__exit__(*sys.exc_info())
|
|
|
|
|
|
|
|
|
2013-03-13 21:08:32 +08:00
|
|
|
@skipIf(connection.features.autocommits_when_autocommit_is_off,
|
|
|
|
"This test requires a non-autocommit mode that doesn't autocommit.")
|
|
|
|
class AtomicWithoutAutocommitTests(AtomicTests):
|
|
|
|
"""All basic tests for atomic should also pass when autocommit is turned off."""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
transaction.set_autocommit(False)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
# The tests access the database after exercising 'atomic', initiating
|
|
|
|
# a transaction ; a rollback is required before restoring autocommit.
|
|
|
|
transaction.rollback()
|
|
|
|
transaction.set_autocommit(True)
|
|
|
|
|
|
|
|
|
2013-03-08 22:44:41 +08:00
|
|
|
@skipUnless(connection.features.uses_savepoints,
|
|
|
|
"'atomic' requires transactions and savepoints.")
|
|
|
|
class AtomicMergeTests(TransactionTestCase):
|
|
|
|
"""Test merging transactions with savepoint=False."""
|
|
|
|
|
2013-06-04 14:09:29 +08:00
|
|
|
available_apps = ['transactions']
|
|
|
|
|
2013-03-08 22:44:41 +08:00
|
|
|
def test_merged_outer_rollback(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
with transaction.atomic(savepoint=False):
|
|
|
|
Reporter.objects.create(first_name="Archibald", last_name="Haddock")
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic(savepoint=False):
|
2013-09-23 03:20:22 +08:00
|
|
|
Reporter.objects.create(first_name="Calculus")
|
2013-09-22 19:49:46 +08:00
|
|
|
raise Exception("Oops, that's his last name")
|
2013-09-23 04:14:17 +08:00
|
|
|
# The third insert couldn't be roll back. Temporarily mark the
|
|
|
|
# connection as not needing rollback to check it.
|
|
|
|
self.assertTrue(transaction.get_rollback())
|
|
|
|
transaction.set_rollback(False)
|
2013-03-08 22:44:41 +08:00
|
|
|
self.assertEqual(Reporter.objects.count(), 3)
|
2013-09-23 04:14:17 +08:00
|
|
|
transaction.set_rollback(True)
|
|
|
|
# The second insert couldn't be roll back. Temporarily mark the
|
|
|
|
# connection as not needing rollback to check it.
|
|
|
|
self.assertTrue(transaction.get_rollback())
|
|
|
|
transaction.set_rollback(False)
|
2013-03-08 22:44:41 +08:00
|
|
|
self.assertEqual(Reporter.objects.count(), 3)
|
2013-09-23 04:14:17 +08:00
|
|
|
transaction.set_rollback(True)
|
|
|
|
# The first block has a savepoint and must roll back.
|
2013-03-08 22:44:41 +08:00
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), [])
|
|
|
|
|
|
|
|
def test_merged_inner_savepoint_rollback(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Tintin")
|
|
|
|
with transaction.atomic():
|
|
|
|
Reporter.objects.create(first_name="Archibald", last_name="Haddock")
|
2013-09-22 19:49:46 +08:00
|
|
|
with six.assertRaisesRegex(self, Exception, "Oops"):
|
|
|
|
with transaction.atomic(savepoint=False):
|
2013-09-23 03:20:22 +08:00
|
|
|
Reporter.objects.create(first_name="Calculus")
|
2013-09-22 19:49:46 +08:00
|
|
|
raise Exception("Oops, that's his last name")
|
2013-09-23 04:14:17 +08:00
|
|
|
# The third insert couldn't be roll back. Temporarily mark the
|
|
|
|
# connection as not needing rollback to check it.
|
|
|
|
self.assertTrue(transaction.get_rollback())
|
|
|
|
transaction.set_rollback(False)
|
2013-03-08 22:44:41 +08:00
|
|
|
self.assertEqual(Reporter.objects.count(), 3)
|
2013-09-23 04:14:17 +08:00
|
|
|
transaction.set_rollback(True)
|
|
|
|
# The second block has a savepoint and must roll back.
|
2013-03-08 22:44:41 +08:00
|
|
|
self.assertEqual(Reporter.objects.count(), 1)
|
|
|
|
self.assertQuerysetEqual(Reporter.objects.all(), ['<Reporter: Tintin>'])
|
|
|
|
|
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
@skipUnless(connection.features.uses_savepoints,
|
|
|
|
"'atomic' requires transactions and savepoints.")
|
|
|
|
class AtomicErrorsTests(TransactionTestCase):
|
|
|
|
|
2013-09-23 04:14:17 +08:00
|
|
|
available_apps = ['transactions']
|
2013-06-04 14:09:29 +08:00
|
|
|
|
2013-03-13 21:08:32 +08:00
|
|
|
def test_atomic_prevents_setting_autocommit(self):
|
2013-03-05 06:26:31 +08:00
|
|
|
autocommit = transaction.get_autocommit()
|
2013-09-22 19:49:46 +08:00
|
|
|
with transaction.atomic():
|
|
|
|
with self.assertRaises(transaction.TransactionManagementError):
|
|
|
|
transaction.set_autocommit(not autocommit)
|
2013-03-05 06:26:31 +08:00
|
|
|
# Make sure autocommit wasn't changed.
|
|
|
|
self.assertEqual(connection.autocommit, autocommit)
|
|
|
|
|
|
|
|
def test_atomic_prevents_calling_transaction_methods(self):
|
|
|
|
with transaction.atomic():
|
|
|
|
with self.assertRaises(transaction.TransactionManagementError):
|
|
|
|
transaction.commit()
|
|
|
|
with self.assertRaises(transaction.TransactionManagementError):
|
|
|
|
transaction.rollback()
|
|
|
|
|
2013-09-23 04:14:17 +08:00
|
|
|
def test_atomic_prevents_queries_in_broken_transaction(self):
|
|
|
|
r1 = Reporter.objects.create(first_name="Archibald", last_name="Haddock")
|
|
|
|
with transaction.atomic():
|
|
|
|
r2 = Reporter(first_name="Cuthbert", last_name="Calculus", id=r1.id)
|
|
|
|
with self.assertRaises(IntegrityError):
|
|
|
|
r2.save(force_insert=True)
|
|
|
|
# The transaction is marked as needing rollback.
|
|
|
|
with self.assertRaises(transaction.TransactionManagementError):
|
|
|
|
r2.save(force_update=True)
|
|
|
|
self.assertEqual(Reporter.objects.get(pk=r1.pk).last_name, "Haddock")
|
|
|
|
|
|
|
|
@skipIfDBFeature('atomic_transactions')
|
|
|
|
def test_atomic_allows_queries_after_fixing_transaction(self):
|
|
|
|
r1 = Reporter.objects.create(first_name="Archibald", last_name="Haddock")
|
|
|
|
with transaction.atomic():
|
|
|
|
r2 = Reporter(first_name="Cuthbert", last_name="Calculus", id=r1.id)
|
|
|
|
with self.assertRaises(IntegrityError):
|
|
|
|
r2.save(force_insert=True)
|
|
|
|
# Mark the transaction as no longer needing rollback.
|
|
|
|
transaction.set_rollback(False)
|
|
|
|
r2.save(force_update=True)
|
|
|
|
self.assertEqual(Reporter.objects.get(pk=r1.pk).last_name, "Calculus")
|
|
|
|
|
2013-03-05 06:26:31 +08:00
|
|
|
|
2013-03-12 17:52:16 +08:00
|
|
|
class AtomicMiscTests(TransactionTestCase):
|
|
|
|
|
2013-06-04 14:09:29 +08:00
|
|
|
available_apps = []
|
|
|
|
|
2013-03-12 17:52:16 +08:00
|
|
|
def test_wrap_callable_instance(self):
|
|
|
|
# Regression test for #20028
|
|
|
|
class Callable(object):
|
|
|
|
def __call__(self):
|
|
|
|
pass
|
|
|
|
# Must not raise an exception
|
|
|
|
transaction.atomic(Callable())
|