-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatetime.py
50 lines (40 loc) · 1.33 KB
/
datetime.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import datetime
class MockDatetimeGenerator:
"""
Mock django `timezone.now()` with generic time stamps in tests.
Note: Set a lower offset if you use the Django test client!
By default every timezone.now() will increase by 1 Year,
so a session is practically always expired ;)
e.g.:
class FooBar(TestCase):
@mock.patch.object(timezone, 'now', MockDatetimeGenerator())
def test_something_without_test_client(self):
...
or:
def test_foobar():
offset = datetime.timedelta(minutes=1)
with mock.patch.object(timezone, 'now', MockDatetimeGenerator(offset=offset)):
...
"""
def __init__(self, offset=None):
if offset is not None:
assert isinstance(offset, datetime.timedelta)
self.now = datetime.datetime(
2000, 1, 1, 0, 0, 0,
tzinfo=datetime.timezone.utc
)
else:
self.now = None
self.offset = offset
self.num = 0
def __call__(self):
if self.offset is None:
self.num += 1
dt = datetime.datetime(
2000 + self.num, 1, 1, 0, 0, 0,
tzinfo=datetime.timezone.utc
)
return dt
else:
self.now += self.offset
return self.now