-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathtest_calendar_grid.py
119 lines (99 loc) · 3.6 KB
/
test_calendar_grid.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
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
import datetime
import app.routers.calendar_grid as cg
DATE = datetime.date(1988, 5, 3)
DAY = cg.Day(datetime.date(1988, 5, 3))
WEEKEND = cg.DayWeekend(datetime.date(2021, 1, 23))
N_DAYS = 3
N_DAYS_BEFORE = datetime.date(1988, 4, 30)
NEXT_N_DAYS = [
cg.Day(datetime.date(1988, 5, 4)),
cg.Day(datetime.date(1988, 5, 5)),
cg.Day(datetime.date(1988, 5, 6))
]
DAY_TYPES = [cg.Day, cg.DayWeekend, cg.Today, cg.FirstDayMonth]
WEEK_DAYS = cg.Week.WEEK_DAYS
class TestCalendarGrid:
@staticmethod
def test_get_calendar(client):
response = client.get("/calendar/month")
assert response.ok
assert b"SUNDAY" in response.content
@staticmethod
def test_get_calendar_extends(client):
days = 42
response = client.get(
f"/calendar/month/add/{DAY.set_id()}?days={days}"
)
assert response.ok
assert b"08-May" in response.content
@staticmethod
def test_create_day():
dates_to_check = {
'normal_day': datetime.date(2021, 1, 20),
'weekend': datetime.date(2021, 1, 23),
'today': datetime.date.today(),
'first_month': datetime.date(2021, 1, 1)
}
for i, value in enumerate(dates_to_check.values()):
assert isinstance(cg.create_day(value), DAY_TYPES[i])
@staticmethod
def test_get_next_date():
next_day_generator = cg.get_next_date(DATE)
next_day = next(next_day_generator, None)
next_day_check = cg.Day(DATE + datetime.timedelta(days=1))
assert next_day
assert isinstance(next_day, cg.Day)
assert next_day.date == next_day_check.date
@staticmethod
def test_get_date_before_n_days():
assert cg.get_date_before_n_days(DATE, N_DAYS) == N_DAYS_BEFORE
@staticmethod
def test_get_first_day_month_block(Calendar):
assert (
cg.get_first_day_month_block(DATE)
== next(Calendar.itermonthdates(DATE.year, DATE.month))
)
@staticmethod
def test_get_n_days():
next_n_dates = cg.get_n_days(DATE, N_DAYS)
for i in range(N_DAYS):
assert next(next_n_dates).date == NEXT_N_DAYS[i].date
@staticmethod
def test_create_weeks():
week = cg.create_weeks(NEXT_N_DAYS, cg.Week.WEEK_DAYS)
assert week
assert isinstance(week[0], cg.Week)
assert isinstance(week[0].days[0], cg.Day)
assert len(week) == 1 and len(week[0].days) == 3
@staticmethod
def test_get_month_block(Calendar):
month_weeks = cg.create_weeks(
Calendar.itermonthdates(1988, 5), WEEK_DAYS)
get_block = cg.get_month_block(cg.Day(DATE), n=len(month_weeks))
for i in range(len(month_weeks)):
for j in range(cg.Week.WEEK_DAYS):
assert get_block[i].days[j].date == month_weeks[i].days[j]
@staticmethod
def test_get_user_local_time():
time_string = "%b%w%Y"
server_time = cg.Day.get_user_local_time()
server_time_check = datetime.datetime.today()
assert server_time
assert server_time.strftime(
time_string) == server_time_check.strftime(time_string)
@staticmethod
def test_is_weekend():
assert not cg.Day.is_weekend(DATE)
assert cg.Day.is_weekend(WEEKEND.date)
@staticmethod
def test_display_day():
assert DAY.display() == '03 MAY 88'
@staticmethod
def test_set_id():
assert DAY.set_id() == '03-May-1988'
@staticmethod
def test_display_str():
assert str(DAY) == '03'
@staticmethod
def test_create_week_object():
assert cg.Week(NEXT_N_DAYS)