Skip to main content

Asyncio Time Travel Loop

Project description

Asyncio Time Travel Loop

Intro

Asyncio Time Travel Loop allows you to test asyncio code that waits or sleeps, without actually waiting or sleeping.

At the same time, you don't have to bother thinking about how the time advances. Your code should work exactly the same with TimeTravelLoop as it works with a normal asyncio events loop.

Example: Assume that you have a code that waits 1000 seconds, and you want to tests that code. Instead of actually waiting 1000 seconds, you could use TimeTravelLoop:

import asyncio
from asyncio_time_travel import TimeTravelLoop

SLEEP_TIME = 1000

tloop = TimeTravelLoop()

async def inner_coro():
    # Sleep for a long time:
    await asyncio.sleep(SLEEP_TIME, loop=tloop)

tloop.run_until_complete(inner_coro())

This code completes immediately.

See some of the tests for more advanced examples of what TimeTravelLoop can do.

Installation

Run:

pip install asyncio-time-travel

You can also find the package at https://pypi.python.org/pypi/asyncio-time-travel .

Tests

Run (Inside asyncio_time_travel dir):

pytest

If you haven't yet heard of pytest, it's your lucky day :)

How does this work?

TimeTravelLoop source is based on the source code of asyncio.test_utils.TestLoop.

For each _run_once iteration of the loop, the following is done:

  • Loop events are executed.
  • Time is advanced to the closest scheduled event.

Using this method your code never waits, and at the same time the events execute in the correct order.

Limitations

TimeTravelLoop is meant to be used with your tests, not for production code. In particular, if your loop interacts with external events, bending time is not a good idea (Time will advance differently outside of your loop).

Further work

  • The code might have bugs. If you find any issues, don't hesitate to fork or open an issue.

  • It might be possible to integrate this code into asyncio.test_utils in some way.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asyncio_time_travel-0.3.0.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

asyncio_time_travel-0.3.0-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file asyncio_time_travel-0.3.0.tar.gz.

File metadata

  • Download URL: asyncio_time_travel-0.3.0.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for asyncio_time_travel-0.3.0.tar.gz
Algorithm Hash digest
SHA256 5989b38b34046e872acf960698295b0b50530d55af861aaf25fce296496f9e23
MD5 32d24142efca218e84e0f518588de3d5
BLAKE2b-256 6472facd0556495b46c5f4e05a629de0db5c9340d0dca882294ef23fb68fab79

See more details on using hashes here.

File details

Details for the file asyncio_time_travel-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for asyncio_time_travel-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2837e001f23ae0c6106794e0c21ea7e29e2d014143af66fd8376b97fc7d14a22
MD5 7019c9999a3ae479e883513c04e6cd3c
BLAKE2b-256 d51d06a394b82bae2b8e16b7d4b62d440a515e9dfce4f34899efb8fd57894a76

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page