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
|
import datetime
import pytest
from django.db import IntegrityError
from ctrack.register.models import (
MeetingEvent,
EventType,
SingleDateTimeEvent,
CAFSingleDateEvent,
)
pytestmark = pytest.mark.django_db
def test_caf_initial_caf_received(user, caf):
now = datetime.datetime.now()
e = CAFSingleDateEvent.objects.create(
type_descriptor="CAF_INITIAL_CAF_RECEIVED",
related_caf=caf,
short_description="CAF received for X Company",
date="2020-10-10",
comments="Nice comments for this event",
user=user,
)
assert e.created_date.day == now.day
def test_cannot_add_two_caf_initial_caf_received_events_on_same_date(user, caf):
CAFSingleDateEvent.objects.create(
type_descriptor="CAF_INITIAL_CAF_RECEIVED",
related_caf=caf,
short_description="CAF received for X Company",
date="2020-10-10",
comments="Nice comments for this event",
user=user,
)
with pytest.raises(IntegrityError):
CAFSingleDateEvent.objects.create(
type_descriptor="CAF_INITIAL_CAF_RECEIVED",
related_caf=caf,
short_description="CAF received for X Company",
date="2020-10-10",
comments="Nice comments for this event",
user=user,
)
def test_caf_initial_caf_emailed_rosa(user, caf):
now = datetime.datetime.now()
e = CAFSingleDateEvent.objects.create(
type_descriptor="CAF_EMAILED_ROSA",
related_caf=caf,
short_description="CAF sent to Rosa for X Company",
date="2020-10-10",
comments="Nice comments for this event",
user=user,
)
assert e.created_date.day == now.day
def test_can_email_two_caf_on_same_date(user, caf):
now = datetime.datetime.now()
e1 = CAFSingleDateEvent.objects.create(
type_descriptor="CAF_EMAILED_ROSA",
related_caf=caf,
short_description="CAF sent to Rosa for X Company",
date="2020-10-10",
comments="Nice comments for this event",
user=user,
)
e2 = CAFSingleDateEvent.objects.create(
type_descriptor="CAF_INITIAL_CAF_EMAILED_ROSA",
related_caf=caf,
short_description="CAF sent to Rosa for X Company",
date="2020-10-10",
comments="Nice comments for this event",
user=user,
)
assert e1.created_date.day == now.day
assert e2.created_date.day == now.day
def test_event_type_enum():
assert EventType.MEETING.name == "MEETING"
assert EventType.PHONE_CALL.name == "PHONE_CALL"
assert EventType.VIDEO_CALL.name == "VIDEO_CALL"
assert EventType.CAF_INITIAL_CAF_RECEIVED.name == "CAF_INITIAL_CAF_RECEIVED"
assert EventType.CAF_FEEDBACK_EMAILED_OES.name == "CAF_FEEDBACK_EMAILED_OES"
assert EventType.CAF_RECEIVED.name == "CAF_RECEIVED"
assert EventType.CAF_EMAILED_ROSA.name == "CAF_EMAILED_ROSA"
assert EventType.CAF_PEER_REVIEW_PERIOD.name == "CAF_PEER_REVIEW_PERIOD"
assert EventType.CAF_VALIDATION_PERIOD.name == "CAF_VALIDATION_PERIOD"
assert EventType.CAF_VALIDATION_SIGN_OFF.name == "CAF_VALIDATION_SIGN_OFF"
assert (
EventType.CAF_VALIDATION_RECORD_EMAILED_TO_OES.name
== "CAF_VALIDATION_RECORD_EMAILED_TO_OES"
)
def test_meeting_event(person, user):
uname = user.name
now = datetime.datetime.now()
e = MeetingEvent.objects.create(
type_descriptor="Meeting",
short_description="Big Important Meeting",
datetime="2020-10-10T15:00",
comments="Nice comments",
location="Harvey's House",
user=user,
)
e.participants.add(person)
assert len(e.participants.all()) == 1
assert e.type_descriptor == "Meeting"
assert person in e.participants.all()
assert e.user.name == uname
assert e.created_date.day == now.day
assert e.modified_date.day == now.day
def test_single_date_event(person, user):
"""This tests for phone call, video call and email events"""
now = datetime.datetime.now()
phone_event = SingleDateTimeEvent.objects.create(
type_descriptor="Phone Call",
short_description="Important Phone Call",
datetime="2020-10-10T15:00",
comments="Comments on phone call",
# location is optional
user=user,
)
phone_event.participants.add(person)
assert phone_event.type_descriptor == "Phone Call"
assert person in phone_event.participants.all()
assert phone_event.created_date.day == now.day
email = SingleDateTimeEvent.objects.create(
type_descriptor="Video Call",
short_description="Important Video Call",
datetime="2020-10-10T15:00",
comments="Comments on video call",
# location is optional
user=user,
)
email.participants.add(person)
assert email.type_descriptor == "Video Call"
assert person in email.participants.all()
assert email.created_date.day == now.day
email = SingleDateTimeEvent.objects.create(
type_descriptor="Email",
short_description="Important Email",
datetime="2020-10-10T15:00",
comments="Comments on email",
# location is optional
user=user,
)
email.participants.add(person)
assert email.type_descriptor == "Email"
assert person in email.participants.all()
assert email.created_date.day == now.day
|