-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtest_contact.py
More file actions
222 lines (190 loc) · 8.04 KB
/
test_contact.py
File metadata and controls
222 lines (190 loc) · 8.04 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
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
import unittest
from chartmogul import Contact, Config
import requests_mock
from pprint import pprint
contact = {
"uuid": "con_00000000-0000-0000-0000-000000000000",
"customer_uuid": "cus_00000000-0000-0000-0000-000000000000",
"data_source_uuid": "ds_00000000-0000-0000-0000-000000000000",
"customer_external_id": "external_001",
"external_id": "contact_external_id_001",
"first_name": "First name",
"last_name": "Last name",
"position": 9,
"title": "Title",
"email": "test@example.com",
"phone": "+1234567890",
"linked_in": "https://linkedin.com/not_found",
"twitter": "https://twitter.com/not_found",
"notes": "Heading\nBody\nFooter",
"custom": {"MyStringAttribute": "Test", "MyIntegerAttribute": 123},
}
createContact = {
"uuid": "con_00000000-0000-0000-0000-000000000000",
"customer_uuid": "cus_00000000-0000-0000-0000-000000000000",
"data_source_uuid": "ds_00000000-0000-0000-0000-000000000000",
"external_id": "contact_external_id_001",
"first_name": "First name",
"last_name": "Last name",
"position": 9,
"title": "Title",
"email": "test@example.com",
"phone": "+1234567890",
"linked_in": "https://linkedin.com/not_found",
"twitter": "https://twitter.com/not_found",
"notes": "Heading\nBody\nFooter",
"custom": [
{"key": "MyStringAttribute", "value": "Test"},
{"key": "MyIntegerAttribute", "value": 123},
],
}
allContacts = {"entries": [contact], "cursor": "cursor==", "has_more": False}
contactWithoutExternalId = {k: v for k, v in contact.items() if k != "external_id"}
contactWithNullExternalId = {
**contact,
"external_id": None,
}
createContactWithNullExternalId = {
**createContact,
"external_id": None,
}
class ContactTestCase(unittest.TestCase):
"""
Tests complex nested structure & assymetric create/retrieve schema.
"""
@requests_mock.mock()
def test_all(self, mock_requests):
mock_requests.register_uri(
"GET",
"https://api.chartmogul.com/v1/contacts?cursor=Ym9veWFo&per_page=1&data_source_uuid=ds_00000000-0000-0000-0000-000000000000",
status_code=200,
json=allContacts,
)
config = Config("token")
contacts = Contact.all(
config,
data_source_uuid="ds_00000000-0000-0000-0000-000000000000",
cursor="Ym9veWFo",
per_page=1,
).get()
expected = Contact._many(**allContacts)
self.assertEqual(mock_requests.call_count, 1, "expected call")
self.assertEqual(
mock_requests.last_request.qs,
{
"cursor": ["ym9vewfo"],
"per_page": ["1"],
"data_source_uuid": ["ds_00000000-0000-0000-0000-000000000000"],
},
)
self.assertEqual(mock_requests.last_request.text, None)
self.assertEqual(dir(contacts), dir(expected))
self.assertTrue(isinstance(contacts.entries[0], Contact))
self.assertFalse(contacts.has_more)
self.assertEqual(contacts.cursor, "cursor==")
@requests_mock.mock()
def test_create(self, mock_requests):
mock_requests.register_uri(
"POST", "https://api.chartmogul.com/v1/contacts", status_code=200, json=contact
)
config = Config("token")
Contact.create(config, data=createContact).get()
self.assertEqual(mock_requests.call_count, 1, "expected call")
self.assertEqual(mock_requests.last_request.qs, {})
self.assertEqual(mock_requests.last_request.json(), createContact)
@requests_mock.mock()
def test_create_with_null_external_id(self, mock_requests):
mock_requests.register_uri(
"POST", "https://api.chartmogul.com/v1/contacts", status_code=200, json=contactWithNullExternalId
)
config = Config("token")
result = Contact.create(config, data=createContactWithNullExternalId).get()
self.assertEqual(mock_requests.call_count, 1, "expected call")
self.assertEqual(mock_requests.last_request.json(), createContactWithNullExternalId)
self.assertIsNone(result.external_id)
@requests_mock.mock()
def test_create_without_external_id(self, mock_requests):
mock_requests.register_uri(
"POST", "https://api.chartmogul.com/v1/contacts", status_code=200, json=contactWithoutExternalId
)
config = Config("token")
result = Contact.create(config, data=createContactWithNullExternalId).get()
self.assertEqual(mock_requests.call_count, 1, "expected call")
self.assertEqual(mock_requests.last_request.json(), createContactWithNullExternalId)
self.assertIsNone(result.external_id)
@requests_mock.mock()
def test_merge(self, mock_requests):
mock_requests.register_uri(
"POST",
"https://api.chartmogul.com/v1/contacts/con_00000000-0000-0000-0000-000000000000/merge/con_00000000-0000-0000-0000-000000000001",
status_code=200,
json=contact,
)
config = Config("token")
expected = Contact.merge(
config,
into_uuid="con_00000000-0000-0000-0000-000000000000",
from_uuid="con_00000000-0000-0000-0000-000000000001",
).get()
self.assertEqual(mock_requests.call_count, 1, "expected call")
self.assertEqual(mock_requests.last_request.qs, {})
self.assertTrue(isinstance(expected, Contact))
@requests_mock.mock()
def test_modify(self, mock_requests):
mock_requests.register_uri(
"PATCH",
"https://api.chartmogul.com/v1/contacts/con_00000000-0000-0000-0000-000000000000",
status_code=200,
json=contact,
)
jsonRequest = {"email": "test2@example.com"}
config = Config("token")
expected = Contact.modify(
config, uuid="con_00000000-0000-0000-0000-000000000000", data=jsonRequest
).get()
self.assertEqual(mock_requests.call_count, 1, "expected call")
self.assertEqual(mock_requests.last_request.qs, {})
self.assertEqual(mock_requests.last_request.json(), jsonRequest)
self.assertTrue(isinstance(expected, Contact))
@requests_mock.mock()
def test_modify_with_null_external_id(self, mock_requests):
mock_requests.register_uri(
"PATCH",
"https://api.chartmogul.com/v1/contacts/con_00000000-0000-0000-0000-000000000000",
status_code=200,
json=contactWithNullExternalId,
)
jsonRequest = {"external_id": None}
config = Config("token")
result = Contact.modify(
config, uuid="con_00000000-0000-0000-0000-000000000000", data=jsonRequest
).get()
self.assertEqual(mock_requests.call_count, 1, "expected call")
self.assertEqual(mock_requests.last_request.json(), jsonRequest)
self.assertIsNone(result.external_id)
@requests_mock.mock()
def test_retrieve(self, mock_requests):
mock_requests.register_uri(
"GET",
"https://api.chartmogul.com/v1/contacts/con_00000000-0000-0000-0000-000000000000",
status_code=200,
json=contact,
)
config = Config("token")
expected = Contact.retrieve(config, uuid="con_00000000-0000-0000-0000-000000000000").get()
self.assertEqual(mock_requests.call_count, 1, "expected call")
self.assertEqual(mock_requests.last_request.qs, {})
self.assertTrue(isinstance(expected, Contact))
@requests_mock.mock()
def test_destroy(self, mock_requests):
mock_requests.register_uri(
"DELETE",
"https://api.chartmogul.com/v1/contacts/con_00000000-0000-0000-0000-000000000000",
status_code=200,
json={},
)
config = Config("token")
expected = Contact.destroy(config, uuid="con_00000000-0000-0000-0000-000000000000").get()
self.assertEqual(mock_requests.call_count, 1, "expected call")
self.assertEqual(mock_requests.last_request.qs, {})
self.assertTrue(expected, {})