2011-10-14 02:04:12 +08:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2011-04-21 04:42:07 +08:00
|
|
|
import sys
|
|
|
|
import time
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2011-04-21 04:42:07 +08:00
|
|
|
from django.conf import settings
|
|
|
|
from django.db import transaction, connection
|
|
|
|
from django.db.utils import ConnectionHandler, DEFAULT_DB_ALIAS, DatabaseError
|
|
|
|
from django.test import (TransactionTestCase, skipIfDBFeature,
|
|
|
|
skipUnlessDBFeature)
|
|
|
|
from django.utils import unittest
|
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
from .models import Person
|
2011-04-21 04:42:07 +08:00
|
|
|
|
2011-04-21 05:00:29 +08:00
|
|
|
# Some tests require threading, which might not be available. So create a
|
|
|
|
# skip-test decorator for those test functions.
|
2011-04-21 04:42:07 +08:00
|
|
|
try:
|
|
|
|
import threading
|
|
|
|
except ImportError:
|
2011-04-21 05:00:29 +08:00
|
|
|
threading = None
|
|
|
|
requires_threading = unittest.skipUnless(threading, 'requires threading')
|
2011-04-21 04:42:07 +08:00
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2011-04-21 04:42:07 +08:00
|
|
|
class SelectForUpdateTests(TransactionTestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
2013-02-20 09:11:54 +08:00
|
|
|
transaction.enter_transaction_management()
|
2011-04-21 04:42:07 +08:00
|
|
|
self.person = Person.objects.create(name='Reinhardt')
|
|
|
|
|
|
|
|
# We have to commit here so that code in run_select_for_update can
|
|
|
|
# see this data.
|
|
|
|
transaction.commit()
|
|
|
|
|
|
|
|
# We need another database connection to test that one connection
|
|
|
|
# issuing a SELECT ... FOR UPDATE will block.
|
|
|
|
new_connections = ConnectionHandler(settings.DATABASES)
|
|
|
|
self.new_connection = new_connections[DEFAULT_DB_ALIAS]
|
2012-05-27 07:24:57 +08:00
|
|
|
self.new_connection.enter_transaction_management()
|
2011-04-21 04:42:07 +08:00
|
|
|
|
|
|
|
# We need to set settings.DEBUG to True so we can capture
|
|
|
|
# the output SQL to examine.
|
|
|
|
self._old_debug = settings.DEBUG
|
|
|
|
settings.DEBUG = True
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
try:
|
|
|
|
# We don't really care if this fails - some of the tests will set
|
|
|
|
# this in the course of their run.
|
2013-02-20 09:11:54 +08:00
|
|
|
transaction.abort()
|
|
|
|
self.new_connection.abort()
|
2011-04-21 04:42:07 +08:00
|
|
|
except transaction.TransactionManagementError:
|
|
|
|
pass
|
|
|
|
self.new_connection.close()
|
|
|
|
settings.DEBUG = self._old_debug
|
|
|
|
try:
|
|
|
|
self.end_blocking_transaction()
|
|
|
|
except (DatabaseError, AttributeError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def start_blocking_transaction(self):
|
|
|
|
# Start a blocking transaction. At some point,
|
|
|
|
# end_blocking_transaction() should be called.
|
|
|
|
self.cursor = self.new_connection.cursor()
|
|
|
|
sql = 'SELECT * FROM %(db_table)s %(for_update)s;' % {
|
|
|
|
'db_table': Person._meta.db_table,
|
|
|
|
'for_update': self.new_connection.ops.for_update_sql(),
|
|
|
|
}
|
|
|
|
self.cursor.execute(sql, ())
|
2012-05-27 07:24:57 +08:00
|
|
|
self.cursor.fetchone()
|
2011-04-21 04:42:07 +08:00
|
|
|
|
|
|
|
def end_blocking_transaction(self):
|
|
|
|
# Roll back the blocking transaction.
|
2013-02-20 09:11:54 +08:00
|
|
|
self.new_connection.rollback()
|
2011-04-21 04:42:07 +08:00
|
|
|
|
|
|
|
def has_for_update_sql(self, tested_connection, nowait=False):
|
|
|
|
# Examine the SQL that was executed to determine whether it
|
|
|
|
# contains the 'SELECT..FOR UPDATE' stanza.
|
|
|
|
for_update_sql = tested_connection.ops.for_update_sql(nowait)
|
|
|
|
sql = tested_connection.queries[-1]['sql']
|
|
|
|
return bool(sql.find(for_update_sql) > -1)
|
|
|
|
|
|
|
|
@skipUnlessDBFeature('has_select_for_update')
|
|
|
|
def test_for_update_sql_generated(self):
|
|
|
|
"""
|
|
|
|
Test that the backend's FOR UPDATE variant appears in
|
|
|
|
generated SQL when select_for_update is invoked.
|
|
|
|
"""
|
|
|
|
list(Person.objects.all().select_for_update())
|
|
|
|
self.assertTrue(self.has_for_update_sql(connection))
|
|
|
|
|
|
|
|
@skipUnlessDBFeature('has_select_for_update_nowait')
|
|
|
|
def test_for_update_sql_generated_nowait(self):
|
|
|
|
"""
|
|
|
|
Test that the backend's FOR UPDATE NOWAIT variant appears in
|
|
|
|
generated SQL when select_for_update is invoked.
|
|
|
|
"""
|
|
|
|
list(Person.objects.all().select_for_update(nowait=True))
|
|
|
|
self.assertTrue(self.has_for_update_sql(connection, nowait=True))
|
|
|
|
|
|
|
|
# In Python 2.6 beta and some final releases, exceptions raised in __len__
|
|
|
|
# are swallowed (Python issue 1242657), so these cases return an empty
|
|
|
|
# list, rather than raising an exception. Not a lot we can do about that,
|
|
|
|
# unfortunately, due to the way Python handles list() calls internally.
|
2011-09-11 02:44:33 +08:00
|
|
|
# Python 2.6.1 is the "in the wild" version affected by this, so we skip
|
|
|
|
# the test for that version.
|
2011-04-21 04:42:07 +08:00
|
|
|
@requires_threading
|
|
|
|
@skipUnlessDBFeature('has_select_for_update_nowait')
|
2011-09-11 02:44:33 +08:00
|
|
|
@unittest.skipIf(sys.version_info[:3] == (2, 6, 1), "Python version is 2.6.1")
|
2011-04-21 04:42:07 +08:00
|
|
|
def test_nowait_raises_error_on_block(self):
|
|
|
|
"""
|
|
|
|
If nowait is specified, we expect an error to be raised rather
|
|
|
|
than blocking.
|
|
|
|
"""
|
|
|
|
self.start_blocking_transaction()
|
|
|
|
status = []
|
2013-02-20 09:11:54 +08:00
|
|
|
|
2011-04-21 04:42:07 +08:00
|
|
|
thread = threading.Thread(
|
|
|
|
target=self.run_select_for_update,
|
|
|
|
args=(status,),
|
|
|
|
kwargs={'nowait': True},
|
|
|
|
)
|
|
|
|
|
|
|
|
thread.start()
|
|
|
|
time.sleep(1)
|
|
|
|
thread.join()
|
|
|
|
self.end_blocking_transaction()
|
2013-03-06 22:33:35 +08:00
|
|
|
self.assertIsInstance(status[-1], DatabaseError)
|
2011-04-21 04:42:07 +08:00
|
|
|
|
2011-09-11 02:44:33 +08:00
|
|
|
# In Python 2.6 beta and some final releases, exceptions raised in __len__
|
|
|
|
# are swallowed (Python issue 1242657), so these cases return an empty
|
|
|
|
# list, rather than raising an exception. Not a lot we can do about that,
|
|
|
|
# unfortunately, due to the way Python handles list() calls internally.
|
|
|
|
# Python 2.6.1 is the "in the wild" version affected by this, so we skip
|
|
|
|
# the test for that version.
|
2011-04-21 04:42:07 +08:00
|
|
|
@skipIfDBFeature('has_select_for_update_nowait')
|
|
|
|
@skipUnlessDBFeature('has_select_for_update')
|
2011-09-11 02:44:33 +08:00
|
|
|
@unittest.skipIf(sys.version_info[:3] == (2, 6, 1), "Python version is 2.6.1")
|
2011-04-21 04:42:07 +08:00
|
|
|
def test_unsupported_nowait_raises_error(self):
|
|
|
|
"""
|
|
|
|
If a SELECT...FOR UPDATE NOWAIT is run on a database backend
|
|
|
|
that supports FOR UPDATE but not NOWAIT, then we should find
|
|
|
|
that a DatabaseError is raised.
|
|
|
|
"""
|
|
|
|
self.assertRaises(
|
|
|
|
DatabaseError,
|
|
|
|
list,
|
|
|
|
Person.objects.all().select_for_update(nowait=True)
|
|
|
|
)
|
|
|
|
|
|
|
|
def run_select_for_update(self, status, nowait=False):
|
|
|
|
"""
|
|
|
|
Utility method that runs a SELECT FOR UPDATE against all
|
|
|
|
Person instances. After the select_for_update, it attempts
|
|
|
|
to update the name of the only record, save, and commit.
|
|
|
|
|
2011-12-11 16:43:01 +08:00
|
|
|
This function expects to run in a separate thread.
|
2011-04-21 04:42:07 +08:00
|
|
|
"""
|
|
|
|
status.append('started')
|
|
|
|
try:
|
|
|
|
# We need to enter transaction management again, as this is done on
|
|
|
|
# per-thread basis
|
2013-02-20 09:11:54 +08:00
|
|
|
transaction.enter_transaction_management()
|
2011-04-21 04:42:07 +08:00
|
|
|
people = list(
|
|
|
|
Person.objects.all().select_for_update(nowait=nowait)
|
|
|
|
)
|
|
|
|
people[0].name = 'Fred'
|
|
|
|
people[0].save()
|
|
|
|
transaction.commit()
|
2012-04-29 00:09:37 +08:00
|
|
|
except DatabaseError as e:
|
2011-04-21 04:42:07 +08:00
|
|
|
status.append(e)
|
2011-12-11 16:43:01 +08:00
|
|
|
finally:
|
|
|
|
# This method is run in a separate thread. It uses its own
|
|
|
|
# database connection. Close it without waiting for the GC.
|
2013-02-20 09:11:54 +08:00
|
|
|
transaction.abort()
|
2011-12-11 16:43:01 +08:00
|
|
|
connection.close()
|
2011-04-21 04:42:07 +08:00
|
|
|
|
|
|
|
@requires_threading
|
|
|
|
@skipUnlessDBFeature('has_select_for_update')
|
|
|
|
@skipUnlessDBFeature('supports_transactions')
|
|
|
|
def test_block(self):
|
|
|
|
"""
|
|
|
|
Check that a thread running a select_for_update that
|
|
|
|
accesses rows being touched by a similar operation
|
|
|
|
on another connection blocks correctly.
|
|
|
|
"""
|
|
|
|
# First, let's start the transaction in our thread.
|
|
|
|
self.start_blocking_transaction()
|
|
|
|
|
|
|
|
# Now, try it again using the ORM's select_for_update
|
|
|
|
# facility. Do this in a separate thread.
|
|
|
|
status = []
|
|
|
|
thread = threading.Thread(
|
|
|
|
target=self.run_select_for_update, args=(status,)
|
|
|
|
)
|
|
|
|
|
|
|
|
# The thread should immediately block, but we'll sleep
|
|
|
|
# for a bit to make sure.
|
|
|
|
thread.start()
|
|
|
|
sanity_count = 0
|
|
|
|
while len(status) != 1 and sanity_count < 10:
|
|
|
|
sanity_count += 1
|
|
|
|
time.sleep(1)
|
|
|
|
if sanity_count >= 10:
|
2012-07-20 19:52:16 +08:00
|
|
|
raise ValueError('Thread did not run and block')
|
2011-04-21 04:42:07 +08:00
|
|
|
|
|
|
|
# Check the person hasn't been updated. Since this isn't
|
|
|
|
# using FOR UPDATE, it won't block.
|
|
|
|
p = Person.objects.get(pk=self.person.pk)
|
|
|
|
self.assertEqual('Reinhardt', p.name)
|
|
|
|
|
|
|
|
# When we end our blocking transaction, our thread should
|
|
|
|
# be able to continue.
|
|
|
|
self.end_blocking_transaction()
|
|
|
|
thread.join(5.0)
|
|
|
|
|
|
|
|
# Check the thread has finished. Assuming it has, we should
|
|
|
|
# find that it has updated the person's name.
|
2012-05-03 22:39:16 +08:00
|
|
|
self.assertFalse(thread.isAlive())
|
2011-09-11 01:29:33 +08:00
|
|
|
|
|
|
|
# We must commit the transaction to ensure that MySQL gets a fresh read,
|
|
|
|
# since by default it runs in REPEATABLE READ mode
|
|
|
|
transaction.commit()
|
|
|
|
|
2011-04-21 04:42:07 +08:00
|
|
|
p = Person.objects.get(pk=self.person.pk)
|
|
|
|
self.assertEqual('Fred', p.name)
|
|
|
|
|
|
|
|
@requires_threading
|
|
|
|
@skipUnlessDBFeature('has_select_for_update')
|
|
|
|
def test_raw_lock_not_available(self):
|
|
|
|
"""
|
|
|
|
Check that running a raw query which can't obtain a FOR UPDATE lock
|
|
|
|
raises the correct exception
|
|
|
|
"""
|
|
|
|
self.start_blocking_transaction()
|
|
|
|
def raw(status):
|
|
|
|
try:
|
|
|
|
list(
|
|
|
|
Person.objects.raw(
|
|
|
|
'SELECT * FROM %s %s' % (
|
|
|
|
Person._meta.db_table,
|
|
|
|
connection.ops.for_update_sql(nowait=True)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2012-04-29 00:09:37 +08:00
|
|
|
except DatabaseError as e:
|
2011-04-21 04:42:07 +08:00
|
|
|
status.append(e)
|
2011-12-11 16:43:01 +08:00
|
|
|
finally:
|
|
|
|
# This method is run in a separate thread. It uses its own
|
|
|
|
# database connection. Close it without waiting for the GC.
|
|
|
|
connection.close()
|
|
|
|
|
2011-04-21 04:42:07 +08:00
|
|
|
status = []
|
|
|
|
thread = threading.Thread(target=raw, kwargs={'status': status})
|
|
|
|
thread.start()
|
|
|
|
time.sleep(1)
|
|
|
|
thread.join()
|
|
|
|
self.end_blocking_transaction()
|
2013-03-06 22:33:35 +08:00
|
|
|
self.assertIsInstance(status[-1], DatabaseError)
|
2011-04-21 04:42:07 +08:00
|
|
|
|
|
|
|
@skipUnlessDBFeature('has_select_for_update')
|
|
|
|
def test_transaction_dirty_managed(self):
|
|
|
|
""" Check that a select_for_update sets the transaction to be
|
|
|
|
dirty when executed under txn management. Setting the txn dirty
|
|
|
|
means that it will be either committed or rolled back by Django,
|
|
|
|
which will release any locks held by the SELECT FOR UPDATE.
|
|
|
|
"""
|
|
|
|
people = list(Person.objects.select_for_update())
|
|
|
|
self.assertTrue(transaction.is_dirty())
|