mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
make test_mutex more elegant
This commit is contained in:
parent
a2a89a8712
commit
c5393c64b8
1 changed files with 20 additions and 18 deletions
|
@ -5,26 +5,28 @@ mutex = test.test_support.import_module("mutex", deprecated=True)
|
||||||
|
|
||||||
class MutexTest(unittest.TestCase):
|
class MutexTest(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self.mutex = mutex.mutex()
|
|
||||||
|
|
||||||
def called_by_mutex(self, some_data):
|
|
||||||
self.assert_(self.mutex.test(), "mutex not held")
|
|
||||||
# Nested locking
|
|
||||||
self.mutex.lock(self.called_by_mutex2, "eggs")
|
|
||||||
|
|
||||||
def called_by_mutex2(self, some_data):
|
|
||||||
self.assert_(self.ready_for_2,
|
|
||||||
"called_by_mutex2 called too soon")
|
|
||||||
|
|
||||||
def test_lock_and_unlock(self):
|
def test_lock_and_unlock(self):
|
||||||
self.read_for_2 = False
|
|
||||||
self.mutex.lock(self.called_by_mutex, "spam")
|
def called_by_mutex(some_data):
|
||||||
self.ready_for_2 = True
|
self.assertEqual(some_data, "spam")
|
||||||
|
self.assert_(m.test(), "mutex not held")
|
||||||
|
# Nested locking
|
||||||
|
m.lock(called_by_mutex2, "eggs")
|
||||||
|
|
||||||
|
def called_by_mutex2(some_data):
|
||||||
|
self.assertEquals(some_data, "eggs")
|
||||||
|
self.assert_(m.test(), "mutex not held")
|
||||||
|
self.assert_(ready_for_2,
|
||||||
|
"called_by_mutex2 called too soon")
|
||||||
|
|
||||||
|
m = mutex.mutex()
|
||||||
|
read_for_2 = False
|
||||||
|
m.lock(called_by_mutex, "spam")
|
||||||
|
ready_for_2 = True
|
||||||
# unlock both locks
|
# unlock both locks
|
||||||
self.mutex.unlock()
|
m.unlock()
|
||||||
self.mutex.unlock()
|
m.unlock()
|
||||||
self.failIf(self.mutex.test(), "mutex still held")
|
self.failIf(m.test(), "mutex still held")
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
test.test_support.run_unittest(MutexTest)
|
test.test_support.run_unittest(MutexTest)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue