-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Import quirks in executor * await * tests * coverage and adjust shutdown * adjust
- Loading branch information
Showing
6 changed files
with
602 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
"""Test ZHA executor util.""" | ||
|
||
import concurrent.futures | ||
import time | ||
from unittest.mock import patch | ||
|
||
import pytest | ||
|
||
from zha import async_ | ||
from zha.async_ import InterruptibleThreadPoolExecutor | ||
|
||
|
||
async def test_executor_shutdown_can_interrupt_threads( | ||
caplog: pytest.LogCaptureFixture, | ||
) -> None: | ||
"""Test that the executor shutdown can interrupt threads.""" | ||
|
||
iexecutor = InterruptibleThreadPoolExecutor() | ||
|
||
def _loop_sleep_in_executor(): | ||
while True: | ||
time.sleep(0.1) | ||
|
||
sleep_futures = [iexecutor.submit(_loop_sleep_in_executor) for _ in range(100)] | ||
|
||
iexecutor.shutdown() | ||
|
||
for future in sleep_futures: | ||
with pytest.raises((concurrent.futures.CancelledError, SystemExit)): | ||
future.result() | ||
|
||
assert "is still running at shutdown" in caplog.text | ||
assert "time.sleep(0.1)" in caplog.text | ||
|
||
|
||
async def test_executor_shutdown_only_logs_max_attempts( | ||
caplog: pytest.LogCaptureFixture, | ||
) -> None: | ||
"""Test that the executor shutdown will only log max attempts.""" | ||
|
||
iexecutor = InterruptibleThreadPoolExecutor() | ||
|
||
def _loop_sleep_in_executor(): | ||
time.sleep(0.2) | ||
|
||
iexecutor.submit(_loop_sleep_in_executor) | ||
|
||
with patch.object(async_, "EXECUTOR_SHUTDOWN_TIMEOUT", 0.3): | ||
iexecutor.shutdown() | ||
|
||
assert "time.sleep(0.2)" in caplog.text | ||
assert "is still running at shutdown" in caplog.text | ||
iexecutor.shutdown() | ||
|
||
|
||
async def test_executor_shutdown_does_not_log_shutdown_on_first_attempt( | ||
caplog: pytest.LogCaptureFixture, | ||
) -> None: | ||
"""Test that the executor shutdown does not log on first attempt.""" | ||
|
||
iexecutor = InterruptibleThreadPoolExecutor() | ||
|
||
def _do_nothing(): | ||
return | ||
|
||
for _ in range(5): | ||
iexecutor.submit(_do_nothing) | ||
|
||
iexecutor.shutdown() | ||
|
||
assert "is still running at shutdown" not in caplog.text | ||
|
||
|
||
async def test_overall_timeout_reached() -> None: | ||
"""Test that shutdown moves on when the overall timeout is reached.""" | ||
|
||
def _loop_sleep_in_executor(): | ||
time.sleep(1) | ||
|
||
with patch.object(async_, "EXECUTOR_SHUTDOWN_TIMEOUT", 0.5): | ||
iexecutor = InterruptibleThreadPoolExecutor() | ||
for _ in range(6): | ||
iexecutor.submit(_loop_sleep_in_executor) | ||
start = time.monotonic() | ||
iexecutor.shutdown() | ||
finish = time.monotonic() | ||
|
||
# Idealy execution time (finish - start) should be < 1.2 sec. | ||
# CI tests might not run in an ideal environment and timing might | ||
# not be accurate, so we let this test pass | ||
# if the duration is below 3 seconds. | ||
assert finish - start < 3.0 | ||
|
||
iexecutor.shutdown() |
Oops, something went wrong.