A simple time freezing tool for python tests. It mocks:
datetime.date.today()datetime.datetime.now()datetime.datetime.utcnow()datetime.datetime.fromtimestamp()time.time()time.gmtime()time.localtime()time.strftime()time.mktime()
You must import immobilus before datetime or time, or any other module which imports them in turn, to allow it to intercept those modules.
>>> from immobilus import immobilus
>>> from datetime import datetime, timedeltaFor example, if you use pytest, you could add import immobilus into your root conftest.py file.
You can use immobilus as a context manager. When the context manager is active, time is frozen to the specified value. Outside of the context manager, the original standard library functions are used and time behaves normally.
>>> # It is unlikely that you are living in the past
>>> datetime.utcnow() == datetime(2017, 10, 20)
False
>>> # But with immobilus, you can pretend that you are
>>> with immobilus('2017-10-20'):
... datetime.utcnow() == datetime(2017, 10, 20)
...
True
>>> # Once the context manager exits, immobilus deactivates.
>>> # We are back in the present.
>>> datetime.utcnow() == datetime(2017, 10, 20)
FalseAs shown above, you can use a string to describe the time to be frozen (e.g. '2017-10-20'). Any values understood by the dateutil.parser can be used.
You can also use a datetime.datetime object for the freeze time:
>>> naive_freeze_time = datetime(2017, 10, 20)
>>> with immobilus(naive_freeze_time):
... print('now: %s' % datetime.now())
... print('utcnow: %s' % datetime.utcnow())
...
now: 2017-10-20 00:00:00
utcnow: 2017-10-20 00:00:00immobilus will use the given datetime object to set the frozen UTC time and local time to the same value that you provide. If the datetime you provide for the freeze time is aware, then it is adjusted to UTC like so:
>>> import pytz
>>>
>>> # Freeze to 12:00 noon in Moscow (UTC+3)
>>> timezone = pytz.timezone('Europe/Moscow')
>>> aware_freeze_time = timezone.localize(datetime(2017, 10, 20, 12))
>>> with immobilus(aware_freeze_time):
... # 9:00am local time which is same as UTC
... print('now: %s' % datetime.now())
... print('utcnow: %s' % datetime.utcnow())
...
now: 2017-10-20 09:00:00
utcnow: 2017-10-20 09:00:00If you want local time to differ from UTC, read on.
To have a different timezone in effect when time is frozen, use the second argument to the immobilus context manager: tz_offset. This is the number of hours ahead of the frozen UTC time that the frozen local time should be.
>>> with immobilus('2017-10-20 09:00', tz_offset=3):
... print('now: %s' % datetime.now())
... print('utcnow: %s' % datetime.utcnow())
...
now: 2017-10-20 12:00:00
utcnow: 2017-10-20 09:00:00Of course, you can be behind UTC if you wish, by using a negative number:
>>> with immobilus('2017-10-20 09:00', tz_offset=-7):
... print('now: %s' % datetime.now())
... print('utcnow: %s' % datetime.utcnow())
...
now: 2017-10-20 02:00:00
utcnow: 2017-10-20 09:00:00You can move the frozen time point by calling the tick method:
>>> with immobilus('2019-08-21 12:00:00') as dt:
... print(datetime.now())
... dt.tick()
... print(datetime.now())
... dt.tick(timedelta(seconds=10))
... print(datetime.now())
...
2019-08-21 12:00:00
2019-08-21 12:00:01
2019-08-21 12:00:11As well as being a context manager, immobilus is also a decorator:
>>> @immobilus('2017-10-20')
... def test():
... print(datetime.now())
...
>>> test()
2017-10-20 00:00:00It works even with classes
>>> @immobilus('2017-10-20')
... class Decorated(object):
... now = datetime.utcnow()
...
... def first(self):
... return datetime.utcnow()
...
... def second(self):
... return self.now
...
>>> d = Decorated()
>>> assert d.first().strftime('%Y-%m-%d %H:%M:%S') == '2017-10-20 00:00:00'
>>> assert d.second().strftime('%Y-%m-%d %H:%M:%S') != '2017-10-20 00:00:00'and coroutines
>>> import asyncio
>>>
>>> @immobilus('2017-10-20')
... async def test():
... return datetime.now()
...
>>> loop = asyncio.new_event_loop()
>>> result = loop.run_until_complete(test())
>>>
>>> assert result.strftime('%Y-%m-%d %H:%M:%S') == '2017-10-20 00:00:00'Or you can activate and deactivate immobilus manually.
>>> freeze_time = datetime(2017, 10, 20)
>>> spell = immobilus(freeze_time)
>>> datetime.utcnow() == freeze_time
False
>>> spell.start()
FakeDatetime(2017, 10, 20, 0, 0)
>>> datetime.utcnow() == freeze_time
True
>>> datetime.utcnow()
FakeDatetime(2017, 10, 20, 0, 0)
>>> spell.stop()
>>> datetime.utcnow() == freeze_time
FalseThis can be quite useful for those using the standard library unittest.TestCase e.g.
import unittest
class SomeTests(unittest.TestCase):
def setUp(self):
spell = immobilus('2017-10-20')
spell.start()
self.addCleanup(spell.stop)You can also nest context managers (or decorators, or direct invocations, or any combination) if you want to freeze different times.
>>> with immobilus('2017-10-20 12:00'):
... print('outer now: %s' % datetime.now())
... print('outer utcnow: %s' % datetime.utcnow())
... with immobilus('2017-10-21 12:00', tz_offset=5):
... print('inner now: %s' % datetime.now())
... print('inner utcnow: %s' % datetime.utcnow())
... print('outer now: %s' % datetime.now())
... print('outer utcnow: %s' % datetime.utcnow())
...
outer now: 2017-10-20 12:00:00
outer utcnow: 2017-10-20 12:00:00
inner now: 2017-10-21 17:00:00
inner utcnow: 2017-10-21 12:00:00
outer now: 2017-10-20 12:00:00
outer utcnow: 2017-10-20 12:00:00- Eloi Rivard (https://github.com/azmeuk)
- Day Barr (https://github.com/daybarr)