Trivial locking cleanup in test_listener

ListenerSetupMixin.ThreadTracker was reading self._received_msgs
unlocked and sleep/looping until the desired value was reached.
Replaced this pattern with a threading.Condition.

Change-Id: Id4731caee2104bdb231e78e7b460905a0aaf84bf
This commit is contained in:
Matthew Booth 2015-10-16 16:16:23 +01:00
parent a3fa8ffec9
commit a6da2a98c3

View File

@ -53,16 +53,18 @@ class ListenerSetupMixin(object):
def __init__(self):
self._received_msgs = 0
self.threads = []
self.lock = threading.Lock()
self.lock = threading.Condition()
def info(self, ctxt, publisher_id, event_type, payload, metadata):
# NOTE(sileht): this run into an other thread
with self.lock:
self._received_msgs += 1
self.lock.notify_all()
def wait_for_messages(self, expect_messages):
while self._received_msgs < expect_messages:
time.sleep(0.01)
with self.lock:
while self._received_msgs < expect_messages:
self.lock.wait()
def stop(self):
for thread in self.threads: