-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_auth.py
403 lines (340 loc) · 14.9 KB
/
test_auth.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
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import pytest
import pathlib
from datetime import datetime, timedelta
from carto_auth import CartoAuth, CredentialsError
HERE = pathlib.Path(__file__).parent
def test_from_oauth__not_use_cache(mocker):
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
load_mock = mocker.patch("carto_auth.auth.load_cache_file")
save_mock = mocker.patch("carto_auth.auth.save_cache_file")
get_oauth = mocker.patch(
"carto_auth.auth.get_oauth_token_info",
return_value={
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": expiration,
},
)
get_api_base_url = mocker.patch(
"carto_auth.auth.get_api_base_url",
return_value="https://gcp-us-east1.api.carto.com",
)
carto_auth = CartoAuth.from_oauth(open_browser=False, use_cache=False)
assert carto_auth._mode == "oauth"
assert carto_auth._api_base_url == "https://gcp-us-east1.api.carto.com"
assert str(carto_auth._cache_filepath).endswith(".carto-auth/token_oauth.json")
assert carto_auth._use_cache is False
assert carto_auth._access_token == "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
assert carto_auth._expiration == expiration
assert carto_auth._open_browser is False
assert carto_auth._org is None
load_mock.assert_not_called()
save_mock.assert_not_called()
get_oauth.assert_called_once()
get_api_base_url.assert_called_once()
def test_from_oauth__use_cache(mocker):
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
load_mock = mocker.patch(
"carto_auth.auth.load_cache_file",
return_value={
"api_base_url": "https://gcp-us-east1.api.carto.com",
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": expiration,
},
)
save_mock = mocker.patch("carto_auth.auth.save_cache_file")
get_oauth = mocker.patch("carto_auth.auth.get_oauth_token_info")
get_api_base_url = mocker.patch("carto_auth.auth.get_api_base_url")
carto_auth = CartoAuth.from_oauth(open_browser=False, use_cache=True)
assert carto_auth._mode == "oauth"
assert carto_auth._api_base_url == "https://gcp-us-east1.api.carto.com"
assert str(carto_auth._cache_filepath).endswith(".carto-auth/token_oauth.json")
assert carto_auth._use_cache is True
assert carto_auth._access_token == "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
assert carto_auth._expiration == expiration
assert carto_auth._open_browser is False
assert carto_auth._org is None
load_mock.assert_called_once()
save_mock.assert_called_once()
get_oauth.assert_not_called()
get_api_base_url.assert_not_called()
def test_from_oauth__use_cache_expired(mocker):
expiration = int((datetime.utcnow() - timedelta(seconds=10)).timestamp())
load_mock = mocker.patch(
"carto_auth.auth.load_cache_file",
return_value={
"api_base_url": "https://gcp-us-east1.api.carto.com",
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": expiration, # token expired
},
)
save_mock = mocker.patch("carto_auth.auth.save_cache_file")
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
get_oauth = mocker.patch(
"carto_auth.auth.get_oauth_token_info",
return_value={
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": expiration, # new token expiration
},
)
get_api_base_url = mocker.patch(
"carto_auth.auth.get_api_base_url",
return_value="https://gcp-us-east1.api.carto.com",
)
carto_auth = CartoAuth.from_oauth(open_browser=False, use_cache=True)
assert carto_auth._mode == "oauth"
assert carto_auth._api_base_url == "https://gcp-us-east1.api.carto.com"
assert str(carto_auth._cache_filepath).endswith(".carto-auth/token_oauth.json")
assert carto_auth._use_cache is True
assert carto_auth._access_token == "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
assert carto_auth._expiration == expiration
assert carto_auth._open_browser is False
assert carto_auth._org is None
load_mock.assert_called_once()
save_mock.assert_called_once()
get_oauth.assert_called_once()
get_api_base_url.assert_called_once()
def test_from_oauth__org(mocker):
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
load_mock = mocker.patch(
"carto_auth.auth.load_cache_file",
return_value={
"api_base_url": "https://gcp-us-east1.api.carto.com",
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": expiration,
},
)
save_mock = mocker.patch("carto_auth.auth.save_cache_file")
get_oauth = mocker.patch("carto_auth.auth.get_oauth_token_info")
get_api_base_url = mocker.patch("carto_auth.auth.get_api_base_url")
carto_auth = CartoAuth.from_oauth(open_browser=False, org="org_1234")
assert carto_auth._mode == "oauth"
assert carto_auth._api_base_url == "https://gcp-us-east1.api.carto.com"
assert str(carto_auth._cache_filepath).endswith(".carto-auth/token_oauth.json")
assert carto_auth._use_cache is True
assert carto_auth._access_token == "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
assert carto_auth._expiration == expiration
assert carto_auth._open_browser is False
assert carto_auth._org == "org_1234"
load_mock.assert_called_once()
save_mock.assert_called_once()
get_oauth.assert_not_called()
get_api_base_url.assert_not_called()
def test_from_m2m__not_use_cache(mocker):
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
load_mock = mocker.patch("carto_auth.auth.load_cache_file")
save_mock = mocker.patch("carto_auth.auth.save_cache_file")
get_m2m = mocker.patch(
"carto_auth.auth.get_m2m_token_info",
return_value={
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": expiration,
},
)
filepath = HERE / "fixtures/carto_credentials_ok.json"
carto_auth = CartoAuth.from_m2m(filepath, use_cache=False)
assert carto_auth._mode == "m2m"
assert carto_auth._api_base_url == "https://gcp-us-east1.api.carto.com"
assert str(carto_auth._cache_filepath).endswith(".carto-auth/token_m2m.json")
assert carto_auth._use_cache is False
assert carto_auth._access_token == "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
assert carto_auth._expiration == expiration
assert carto_auth._client_id == "1234"
assert carto_auth._client_secret == "1234567890"
load_mock.assert_not_called()
save_mock.assert_not_called()
get_m2m.assert_called_once()
def test_from_m2m__use_cache(mocker):
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
load_mock = mocker.patch(
"carto_auth.auth.load_cache_file",
return_value={
"api_base_url": "https://gcp-us-east1.api.carto.com",
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": expiration,
},
)
save_mock = mocker.patch("carto_auth.auth.save_cache_file")
get_m2m = mocker.patch("carto_auth.auth.get_m2m_token_info")
filepath = HERE / "fixtures/carto_credentials_ok.json"
carto_auth = CartoAuth.from_m2m(filepath, use_cache=True)
assert carto_auth._mode == "m2m"
assert carto_auth._api_base_url == "https://gcp-us-east1.api.carto.com"
assert str(carto_auth._cache_filepath).endswith(".carto-auth/token_m2m.json")
assert carto_auth._use_cache is True
assert carto_auth._access_token == "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
assert carto_auth._expiration == expiration
assert carto_auth._client_id == "1234"
assert carto_auth._client_secret == "1234567890"
load_mock.assert_called_once()
save_mock.assert_called_once()
get_m2m.assert_not_called()
def test_from_m2m__use_cache_expired(mocker):
expiration = int((datetime.utcnow() - timedelta(seconds=10)).timestamp())
load_mock = mocker.patch(
"carto_auth.auth.load_cache_file",
return_value={
"api_base_url": "https://gcp-us-east1.api.carto.com",
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": expiration, # token expired
},
)
save_mock = mocker.patch("carto_auth.auth.save_cache_file")
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
get_m2m = mocker.patch(
"carto_auth.auth.get_m2m_token_info",
return_value={
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": expiration, # new token expiration
},
)
filepath = HERE / "fixtures/carto_credentials_ok.json"
carto_auth = CartoAuth.from_m2m(filepath, use_cache=True)
assert carto_auth._mode == "m2m"
assert carto_auth._api_base_url == "https://gcp-us-east1.api.carto.com"
assert str(carto_auth._cache_filepath).endswith(".carto-auth/token_m2m.json")
assert carto_auth._use_cache is True
assert carto_auth._access_token == "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
assert carto_auth._expiration == expiration
assert carto_auth._client_id == "1234"
assert carto_auth._client_secret == "1234567890"
load_mock.assert_called_once()
save_mock.assert_called_once()
get_m2m.assert_called_once()
def test_from_m2m_error():
filepath = HERE / "fixtures/carto_credentials_no_attr.json"
with pytest.raises(AttributeError):
CartoAuth.from_m2m(filepath)
filepath = HERE / "fixtures/carto_credentials_no_value.json"
with pytest.raises(ValueError):
CartoAuth.from_m2m(filepath)
def test_get_api_base_url(mocker):
save_mock = mocker.patch("carto_auth.auth.save_cache_file")
carto_auth = CartoAuth("oauth", api_base_url="https://gcp-us-east1.api.carto.com")
api_base_url = carto_auth.get_api_base_url()
assert api_base_url == "https://gcp-us-east1.api.carto.com"
save_mock.assert_not_called()
def test_get_access_token(mocker):
save_mock = mocker.patch("carto_auth.auth.save_cache_file")
access_token = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
carto_auth = CartoAuth("oauth", access_token=access_token, expiration=expiration)
access_token = carto_auth.get_access_token()
assert access_token == access_token
assert carto_auth._access_token == access_token
assert carto_auth._expiration == expiration
save_mock.assert_not_called()
def test_get_access_token_oauth_expired(mocker):
new_expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
get_oauth = mocker.patch(
"carto_auth.auth.get_oauth_token_info",
return_value={
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": new_expiration,
},
)
access_token = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
expiration = int((datetime.utcnow() - timedelta(seconds=10)).timestamp())
carto_auth = CartoAuth("oauth", access_token=access_token, expiration=expiration)
access_token = carto_auth.get_access_token()
assert access_token == access_token
assert carto_auth._access_token == access_token
assert carto_auth._expiration == new_expiration
get_oauth.assert_called_once()
def test_get_access_token_m2m_expired(mocker):
new_expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
get_m2m = mocker.patch(
"carto_auth.auth.get_m2m_token_info",
return_value={
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
"expiration": new_expiration,
},
)
access_token = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
expiration = int((datetime.utcnow() - timedelta(seconds=10)).timestamp())
carto_auth = CartoAuth("m2m", access_token=access_token, expiration=expiration)
access_token = carto_auth.get_access_token()
assert access_token == access_token
assert carto_auth._access_token == access_token
assert carto_auth._expiration == new_expiration
get_m2m.assert_called_once()
def test_carto_dw_credentials(mocker, requests_mock):
mocker.patch(
"carto_auth.auth.CartoAuth.get_access_token",
return_value="eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
)
requests_mock.get(
"https://gcp-us-east1.api.carto.com/v3/connections/carto-dw/token",
json={
"projectId": "project-id-mock",
"token": "token-mock",
},
)
api_base_url = "https://gcp-us-east1.api.carto.com"
access_token = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
carto_auth = CartoAuth(
"oauth",
api_base_url=api_base_url,
access_token=access_token,
expiration=expiration,
)
carto_dw_project_id, carto_dw_token = carto_auth.get_carto_dw_credentials()
assert carto_dw_project_id == "project-id-mock"
assert carto_dw_token == "token-mock"
def test_carto_dw_credentials_error(mocker, requests_mock):
mocker.patch(
"carto_auth.auth.CartoAuth.get_access_token",
return_value="eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX",
)
requests_mock.get(
"https://gcp-us-east1.api.carto.com/v3/connections/carto-dw/token",
text="wrong json",
)
api_base_url = "https://gcp-us-east1.api.carto.com"
access_token = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
carto_auth = CartoAuth(
"oauth",
api_base_url=api_base_url,
access_token=access_token,
expiration=expiration,
)
with pytest.raises(CredentialsError):
carto_auth.get_carto_dw_credentials()
requests_mock.get(
"https://gcp-us-east1.api.carto.com/v3/connections/carto-dw/token",
json={
"token": "token-mock",
},
)
with pytest.raises(CredentialsError):
carto_auth.get_carto_dw_credentials()
requests_mock.get(
"https://gcp-us-east1.api.carto.com/v3/connections/carto-dw/token",
json={
"projectId": "project-id-mock",
"token": "token-mock",
},
)
carto_auth = CartoAuth("oauth", access_token=access_token, expiration=expiration)
with pytest.raises(CredentialsError):
carto_auth.get_carto_dw_credentials()
def test_carto_dw_client(mocker):
from google.cloud.bigquery import Client
get_creds = mocker.patch(
"carto_auth.auth.CartoAuth.get_carto_dw_credentials",
return_value=("project-id-mock", "token-mock"),
)
api_base_url = "https://gcp-us-east1.api.carto.com"
access_token = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpX"
expiration = int((datetime.utcnow() + timedelta(seconds=10)).timestamp())
carto_auth = CartoAuth(
"oauth",
api_base_url=api_base_url,
access_token=access_token,
expiration=expiration,
)
bq_client = carto_auth.get_carto_dw_client()
assert isinstance(bq_client, Client)
assert bq_client.project == "project-id-mock"
get_creds.assert_called_once()