Skip to main content

Patched versions of loop.time, loop.call_later, loop.call_at, and asyncio.sleep

Project description

aiofastfoward

Gives the ability to fast-forward time by providing patched versions of loop.call_later, loop.call_at, loop.time, and asyncio.sleep. This allows you to test asynchronous code synchronously.

Usage

loop.call_later

# Production code
async def schedule_callback(loop, callback):
    loop.call_later(1, callback, 0)
    loop.call_later(2, callback, 1)

# Test code
from unittest.mock import Mock, call
loop = asyncio.get_running_loop()

with aiofastfoward.FastForward(loop) as forward:
    callback = Mock()
    await schedule_callback(loop, callback)

    await forward(1)
    self.assertEqual(callback.mock_calls, [call(0)])
    await forward(1)
    self.assertEqual(callback.mock_calls, [call(0), call(1)])

asyncio.sleep

# Production code
async def sleeper(callback):
    await asyncio.sleep(1)
    await asyncio.sleep(2)
    callback(0)

# Test code
loop = asyncio.get_running_loop()
callback = Mock()

with aiofastforward.FastForward(loop) as forward:
    asyncio.create_task(sleeper())

    await forward(3)
    self.assertEqual(callback.mock_calls, [call(0)])

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

aiofastforward-0.0.1.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

aiofastforward-0.0.1-py3-none-any.whl (3.3 kB view hashes)

Uploaded Python 3

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