summaryrefslogtreecommitdiffstats
path: root/tests/date/test_start_end_of.py
blob: f1b44121dd483fd4eb95ae02985b7fe9e78bb779 (plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
from __future__ import annotations

import pytest

import pendulum

from pendulum import Date
from tests.conftest import assert_date


def test_start_of_day():
    d = Date.today()
    new = d.start_of("day")
    assert isinstance(new, Date)
    assert_date(new, d.year, d.month, d.day)


def test_end_of_day():
    d = Date.today()
    new = d.end_of("day")
    assert isinstance(new, Date)
    assert_date(new, d.year, d.month, d.day)


def test_start_of_week():
    d = Date(2016, 10, 20)
    new = d.start_of("week")
    assert isinstance(new, Date)
    assert_date(new, d.year, d.month, 17)


def test_end_of_week():
    d = Date(2016, 10, 20)
    new = d.end_of("week")
    assert isinstance(new, Date)
    assert_date(new, d.year, d.month, 23)


def test_start_of_month_is_fluid():
    d = Date.today()
    assert isinstance(d.start_of("month"), Date)


def test_start_of_month_from_now():
    d = Date.today()
    new = d.start_of("month")
    assert_date(new, d.year, d.month, 1)


def test_start_of_month_from_last_day():
    d = Date(2000, 1, 31)
    new = d.start_of("month")
    assert_date(new, 2000, 1, 1)


def test_start_of_year_is_fluid():
    d = Date.today()
    new = d.start_of("year")
    assert isinstance(new, Date)


def test_start_of_year_from_now():
    d = Date.today()
    new = d.start_of("year")
    assert_date(new, d.year, 1, 1)


def test_start_of_year_from_first_day():
    d = Date(2000, 1, 1)
    new = d.start_of("year")
    assert_date(new, 2000, 1, 1)


def test_start_of_year_from_last_day():
    d = Date(2000, 12, 31)
    new = d.start_of("year")
    assert_date(new, 2000, 1, 1)


def test_end_of_month_is_fluid():
    d = Date.today()
    assert isinstance(d.end_of("month"), Date)


def test_end_of_month_from_now():
    d = Date.today().start_of("month")
    new = d.start_of("month")
    assert_date(new, d.year, d.month, 1)


def test_end_of_month():
    d = Date(2000, 1, 1).end_of("month")
    new = d.end_of("month")
    assert_date(new, 2000, 1, 31)


def test_end_of_month_from_last_day():
    d = Date(2000, 1, 31)
    new = d.end_of("month")
    assert_date(new, 2000, 1, 31)


def test_end_of_year_is_fluid():
    d = Date.today()
    assert isinstance(d.end_of("year"), Date)


def test_end_of_year_from_now():
    d = Date.today().end_of("year")
    new = d.end_of("year")
    assert_date(new, d.year, 12, 31)


def test_end_of_year_from_first_day():
    d = Date(2000, 1, 1)
    new = d.end_of("year")
    assert_date(new, 2000, 12, 31)


def test_end_of_year_from_last_day():
    d = Date(2000, 12, 31)
    new = d.end_of("year")
    assert_date(new, 2000, 12, 31)


def test_start_of_decade_is_fluid():
    d = Date.today()
    assert isinstance(d.start_of("decade"), Date)


def test_start_of_decade_from_now():
    d = Date.today()
    new = d.start_of("decade")
    assert_date(new, d.year - d.year % 10, 1, 1)


def test_start_of_decade_from_first_day():
    d = Date(2000, 1, 1)
    new = d.start_of("decade")
    assert_date(new, 2000, 1, 1)


def test_start_of_decade_from_last_day():
    d = Date(2009, 12, 31)
    new = d.start_of("decade")
    assert_date(new, 2000, 1, 1)


def test_end_of_decade_is_fluid():
    d = Date.today()
    assert isinstance(d.end_of("decade"), Date)


def test_end_of_decade_from_now():
    d = Date.today()
    new = d.end_of("decade")
    assert_date(new, d.year - d.year % 10 + 9, 12, 31)


def test_end_of_decade_from_first_day():
    d = Date(2000, 1, 1)
    new = d.end_of("decade")
    assert_date(new, 2009, 12, 31)


def test_end_of_decade_from_last_day():
    d = Date(2009, 12, 31)
    new = d.end_of("decade")
    assert_date(new, 2009, 12, 31)


def test_start_of_century_is_fluid():
    d = Date.today()
    assert isinstance(d.start_of("century"), Date)


def test_start_of_century_from_now():
    d = Date.today()
    new = d.start_of("century")
    assert_date(new, d.year - d.year % 100 + 1, 1, 1)


def test_start_of_century_from_first_day():
    d = Date(2001, 1, 1)
    new = d.start_of("century")
    assert_date(new, 2001, 1, 1)


def test_start_of_century_from_last_day():
    d = Date(2100, 12, 31)
    new = d.start_of("century")
    assert_date(new, 2001, 1, 1)


def test_end_of_century_is_fluid():
    d = Date.today()
    assert isinstance(d.end_of("century"), Date)


def test_end_of_century_from_now():
    now = Date.today()
    d = now.end_of("century")
    assert_date(d, now.year - now.year % 100 + 100, 12, 31)


def test_end_of_century_from_first_day():
    d = Date(2001, 1, 1)
    new = d.end_of("century")
    assert_date(new, 2100, 12, 31)


def test_end_of_century_from_last_day():
    d = Date(2100, 12, 31)
    new = d.end_of("century")
    assert_date(new, 2100, 12, 31)


def test_average_is_fluid():
    d = Date.today().average()
    assert isinstance(d, Date)


def test_average_from_same():
    d1 = pendulum.date(2000, 1, 31)
    d2 = pendulum.date(2000, 1, 31).average(d1)
    assert_date(d2, 2000, 1, 31)


def test_average_from_greater():
    d1 = pendulum.date(2000, 1, 1)
    d2 = pendulum.date(2009, 12, 31).average(d1)
    assert_date(d2, 2004, 12, 31)


def test_average_from_lower():
    d1 = pendulum.date(2009, 12, 31)
    d2 = pendulum.date(2000, 1, 1).average(d1)
    assert_date(d2, 2004, 12, 31)


def test_start_of():
    d = pendulum.date(2013, 3, 31)

    with pytest.raises(ValueError):
        d.start_of("invalid")


def test_end_of_invalid_unit():
    d = pendulum.date(2013, 3, 31)

    with pytest.raises(ValueError):
        d.end_of("invalid")