summaryrefslogtreecommitdiffstatshomepage
path: root/tests/extmod/uasyncio_cancel_task.py
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2023-06-08 16:01:38 +1000
committerDamien George <damien@micropython.org>2023-06-19 17:33:03 +1000
commit6027c41c8f5b8f1a9e7b85b2bb93b3e6f2718e54 (patch)
tree08f41a4d0cd48fa5c0bc49519832ac2faba6923a /tests/extmod/uasyncio_cancel_task.py
parent2fbc08c462e247e7f78460783c9a07c76c5b762e (diff)
downloadmicropython-6027c41c8f5b8f1a9e7b85b2bb93b3e6f2718e54.tar.gz
micropython-6027c41c8f5b8f1a9e7b85b2bb93b3e6f2718e54.zip
tests: Rename uasyncio to asyncio.
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'tests/extmod/uasyncio_cancel_task.py')
-rw-r--r--tests/extmod/uasyncio_cancel_task.py85
1 files changed, 0 insertions, 85 deletions
diff --git a/tests/extmod/uasyncio_cancel_task.py b/tests/extmod/uasyncio_cancel_task.py
deleted file mode 100644
index ec60d85545..0000000000
--- a/tests/extmod/uasyncio_cancel_task.py
+++ /dev/null
@@ -1,85 +0,0 @@
-# Test cancelling a task
-
-try:
- import uasyncio as asyncio
-except ImportError:
- try:
- import asyncio
- except ImportError:
- print("SKIP")
- raise SystemExit
-
-
-async def task(s, allow_cancel):
- try:
- print("task start")
- await asyncio.sleep(s)
- print("task done")
- except asyncio.CancelledError as er:
- print("task cancel")
- if allow_cancel:
- raise er
-
-
-async def task2(allow_cancel):
- print("task 2")
- try:
- await asyncio.create_task(task(0.05, allow_cancel))
- except asyncio.CancelledError as er:
- print("task 2 cancel")
- raise er
- print("task 2 done")
-
-
-async def main():
- # Cancel task immediately
- t = asyncio.create_task(task(2, True))
- print(t.cancel())
-
- # Cancel task after it has started
- t = asyncio.create_task(task(2, True))
- await asyncio.sleep(0.01)
- print(t.cancel())
- print("main sleep")
- await asyncio.sleep(0.01)
-
- # Cancel task multiple times after it has started
- t = asyncio.create_task(task(2, True))
- await asyncio.sleep(0.01)
- for _ in range(4):
- print(t.cancel())
- print("main sleep")
- await asyncio.sleep(0.01)
-
- # Await on a cancelled task
- print("main wait")
- try:
- await t
- except asyncio.CancelledError:
- print("main got CancelledError")
-
- # Cancel task after it has finished
- t = asyncio.create_task(task(0.01, False))
- await asyncio.sleep(0.05)
- print(t.cancel())
-
- # Nested: task2 waits on task, task2 is cancelled (should cancel task then task2)
- print("----")
- t = asyncio.create_task(task2(True))
- await asyncio.sleep(0.01)
- print("main cancel")
- t.cancel()
- print("main sleep")
- await asyncio.sleep(0.1)
-
- # Nested: task2 waits on task, task2 is cancelled but task doesn't allow it (task2 should continue)
- print("----")
- t = asyncio.create_task(task2(False))
- await asyncio.sleep(0.01)
- print("main cancel")
- t.cancel()
- print("main sleep")
- await asyncio.sleep(0.1)
-
-
-asyncio.run(main())