Skip to content

Commit

Permalink
Address request from #10771 - add timeouts to thread join in test (#1…
Browse files Browse the repository at this point in the history
…1297)

* Address request from #10771

There was a request to add a timeout to the join in #10771.
The thread itself is unlikely to hang - more likely situation here
is the subscription failing to cause updates, causing the main
thread to hang forever on the condition variable. Added time outs
to both so we can have a bit more information about what actually
happened when the test completes.

* Restyled by autopep8

Co-authored-by: Restyled.io <commits@restyled.io>
  • Loading branch information
2 people authored and pull[bot] committed Nov 5, 2021
1 parent 073a944 commit 1125984
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions src/controller/python/test/test_scripts/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,22 @@ def run(self):
changeThread.start()
with handler.cv:
while handler.subscriptionReceived < 5:
# We should observe 10 attribute changes
handler.cv.wait()
changeThread.join()
return True
# We should observe 5 attribute changes
# The changing thread will change the value after 3 seconds. If we're waiting more than 10, assume something
# is really wrong and bail out here with some information.
if not handler.cv.wait(10.0):
self.logger.error(
f"Failed to receive subscription update")
break

# thread changes 5 times, and sleeps for 3 seconds in between. Add an additional 3 seconds of slack. Timeout is in seconds.
changeThread.join(18.0)
if changeThread.is_alive():
# Thread join timed out
self.logger.error(f"Failed to join change thread")
return False
return True if handler.subscriptionReceived == 5 else False

except Exception as ex:
self.logger.exception(f"Failed to finish API test: {ex}")
return False
Expand Down

0 comments on commit 1125984

Please sign in to comment.