forked from piccolo-orm/piccolo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_timestamp.py
More file actions
67 lines (50 loc) · 1.79 KB
/
test_timestamp.py
File metadata and controls
67 lines (50 loc) · 1.79 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import datetime
from unittest import TestCase
from piccolo.columns.column_types import Timestamp
from piccolo.columns.defaults.timestamp import TimestampNow
from piccolo.table import Table
class MyTable(Table):
created_on = Timestamp()
class MyTableDefault(Table):
"""
A table containing all of the possible `default` arguments for
`Timestamp`.
"""
created_on = Timestamp(default=TimestampNow())
class TestTimestamp(TestCase):
def setUp(self):
MyTable.create_table().run_sync()
def tearDown(self):
MyTable.alter().drop_table().run_sync()
def test_timestamp(self):
"""
Make sure a datetime can be stored and retrieved.
"""
created_on = datetime.datetime.now()
row = MyTable(created_on=created_on)
row.save().run_sync()
result = MyTable.objects().first().run_sync()
self.assertEqual(result.created_on, created_on)
def test_timezone_aware(self):
"""
Raise an error if a timezone aware datetime is given as a default.
"""
with self.assertRaises(ValueError):
Timestamp(default=datetime.datetime.now(tz=datetime.timezone.utc))
class TestTimestampDefault(TestCase):
def setUp(self):
MyTableDefault.create_table().run_sync()
def tearDown(self):
MyTableDefault.alter().drop_table().run_sync()
def test_timestamp(self):
"""
Make sure the default values get created correctly.
"""
created_on = datetime.datetime.now()
row = MyTableDefault()
row.save().run_sync()
result = MyTableDefault.objects().first().run_sync()
self.assertTrue(
result.created_on - created_on < datetime.timedelta(seconds=1)
)
self.assertTrue(result.created_on.tzinfo is None)