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
48 lines (33 loc) · 1.23 KB
/
test_timestamp.py
File metadata and controls
48 lines (33 loc) · 1.23 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
import datetime
from unittest import TestCase
from piccolo.table import Table
from piccolo.columns.column_types import Timestamp
from piccolo.columns.defaults.timestamp import TimestampNow
class MyTable(Table):
created_on = Timestamp()
class MyTableDefault(Table):
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):
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)
class TestTimestampDefault(TestCase):
def setUp(self):
MyTableDefault.create_table().run_sync()
def tearDown(self):
MyTableDefault.alter().drop_table().run_sync()
def test_timestamp(self):
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)
)