test_chrono.py 2.82 KB
Newer Older
1
2
from pybind11_tests import chrono as m
import datetime
3
4
5
6
7


def test_chrono_system_clock():

    # Get the time from both c++ and datetime
8
    date1 = m.test_chrono1()
9
10
11
12
13
14
15
16
17
18
19
20
    date2 = datetime.datetime.today()

    # The returned value should be a datetime
    assert isinstance(date1, datetime.datetime)

    # The numbers should vary by a very small amount (time it took to execute)
    diff = abs(date1 - date2)

    # There should never be a days/seconds difference
    assert diff.days == 0
    assert diff.seconds == 0

21
22
23
24
    # We test that no more than about 0.5 seconds passes here
    # This makes sure that the dates created are very close to the same
    # but if the testing system is incredibly overloaded this should still pass
    assert diff.microseconds < 500000
25
26
27
28
29
30


def test_chrono_system_clock_roundtrip():
    date1 = datetime.datetime.today()

    # Roundtrip the time
31
    date2 = m.test_chrono2(date1)
32
33
34
35
36
37
38
39
40
41
42
43
44

    # The returned value should be a datetime
    assert isinstance(date2, datetime.datetime)

    # They should be identical (no information lost on roundtrip)
    diff = abs(date1 - date2)
    assert diff.days == 0
    assert diff.seconds == 0
    assert diff.microseconds == 0


def test_chrono_duration_roundtrip():

45
    # Get the difference between two times (a timedelta)
46
47
48
49
50
51
52
    date1 = datetime.datetime.today()
    date2 = datetime.datetime.today()
    diff = date2 - date1

    # Make sure this is a timedelta
    assert isinstance(diff, datetime.timedelta)

53
    cpp_diff = m.test_chrono3(diff)
54
55
56
57
58
59
60
61
62
63
64
65

    assert cpp_diff.days == diff.days
    assert cpp_diff.seconds == diff.seconds
    assert cpp_diff.microseconds == diff.microseconds


def test_chrono_duration_subtraction_equivalence():

    date1 = datetime.datetime.today()
    date2 = datetime.datetime.today()

    diff = date2 - date1
66
    cpp_diff = m.test_chrono4(date2, date1)
67
68
69
70
71
72
73

    assert cpp_diff.days == diff.days
    assert cpp_diff.seconds == diff.seconds
    assert cpp_diff.microseconds == diff.microseconds


def test_chrono_steady_clock():
74
    time1 = m.test_chrono5()
75
    assert isinstance(time1, datetime.timedelta)
76
77
78


def test_chrono_steady_clock_roundtrip():
79
    time1 = datetime.timedelta(days=10, seconds=10, microseconds=100)
80
    time2 = m.test_chrono6(time1)
81

82
    assert isinstance(time2, datetime.timedelta)
83
84

    # They should be identical (no information lost on roundtrip)
85
86
87
88
89
90
    assert time1.days == time2.days
    assert time1.seconds == time2.seconds
    assert time1.microseconds == time2.microseconds


def test_floating_point_duration():
91
92
    # Test using a floating point number in seconds
    time = m.test_chrono7(35.525123)
93
94
95
96

    assert isinstance(time, datetime.timedelta)

    assert time.seconds == 35
97
    assert 525122 <= time.microseconds <= 525123
98

99
    diff = m.test_chrono_float_diff(43.789012, 1.123456)
100
101
    assert diff.seconds == 42
    assert 665556 <= diff.microseconds <= 665557