Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 659fc426531517e09eb53cccc8ab4e861d8e0c22 authored by Barry Warsaw on 01 March 2008, 17:45:23 UTC
Copyright and version tweaks for 3.0a3.
Tip revision: 659fc42
test_mutex.py
import mutex

import unittest
import test.test_support

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):
        self.read_for_2 = False
        self.mutex.lock(self.called_by_mutex, "spam")
        self.ready_for_2 = True
        # unlock both locks
        self.mutex.unlock()
        self.mutex.unlock()
        self.failIf(self.mutex.test(), "mutex still held")

def test_main():
    test.test_support.run_unittest(MutexTest)

if __name__ == "__main__":
    test_main()
back to top