-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_authentication.py
More file actions
453 lines (398 loc) · 19.1 KB
/
test_authentication.py
File metadata and controls
453 lines (398 loc) · 19.1 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
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
import inspect
import os
import shutil
from typing import NamedTuple, NoReturn
from unittest import TestCase, mock
import pytest
from requests import Timeout
from requests.exceptions import ConnectionError
from vcr import VCR
import pyicloud_ipd
from foundation.core import constant
from icloudpd.authentication import authenticator
from icloudpd.base import dummy_password_writter
from icloudpd.logger import setup_logger
from icloudpd.mfa_provider import MFAProvider
from icloudpd.status import StatusExchange
from pyicloud_ipd.sms import parse_trusted_phone_numbers_payload
from tests.helpers import path_from_project_root, recreate_path, run_cassette
vcr = VCR(decode_compressed_response=True, record_mode="none")
class AuthenticationTestCase(TestCase):
@pytest.fixture(autouse=True)
def inject_fixtures(self) -> None:
self.root_path = path_from_project_root(__file__)
self.fixtures_path = os.path.join(self.root_path, "fixtures")
self.vcr_path = os.path.join(self.root_path, "vcr_cassettes")
self.data_path = os.path.join(self.root_path, "data")
def test_failed_auth(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
with vcr.use_cassette(os.path.join(self.vcr_path, "failed_auth.yml")): # noqa: SIM117
with self.assertRaises(pyicloud_ipd.exceptions.PyiCloudFailedLoginException) as context:
authenticator(
setup_logger(),
"com",
{"test": (constant("dummy"), dummy_password_writter)},
MFAProvider.CONSOLE,
StatusExchange(),
"bad_username",
lambda: None,
None,
cookie_dir,
"EC5646DE-9423-11E8-BF21-14109FE0B321",
)
# self.assertIn(
# "Failed to login with srp, falling back to old raw password authentication.",
# result.output,
# )
self.assertTrue("Invalid email/password combination." in str(context.exception))
@pytest.mark.skip(reason="No longer support fallback to raw")
def test_fallback_raw_password(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
result = run_cassette(
os.path.join(self.vcr_path, "fallback_raw_password.yml"),
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--cookie-directory",
cookie_dir,
"--auth-only",
],
)
self.assertIn(
"Failed to login with srp, falling back to old raw password authentication.",
result.output,
)
self.assertIn("Authentication completed successfully", result.output)
self.assertEqual(result.exit_code, 0, "exit code")
def test_successful_token_validation(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
cookie_master_path = os.path.join(self.root_path, "cookie")
recreate_path(base_dir)
shutil.copytree(cookie_master_path, cookie_dir)
result = run_cassette(
os.path.join(self.vcr_path, "successful_auth.yml"),
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--cookie-directory",
cookie_dir,
"--auth-only",
],
)
self.assertIn("Authentication completed successfully", result.output)
self.assertEqual(result.exit_code, 0, "exit code")
def test_password_prompt_2sa(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
result = run_cassette(
os.path.join(self.vcr_path, "2sa_flow_valid_code.yml"),
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--cookie-directory",
cookie_dir,
"--auth-only",
],
input="0\n654321\n",
)
self.assertIn("Authenticating...", result.output)
self.assertIn(
"Two-step authentication is required",
result.output,
)
self.assertIn(" 0: SMS to *******03", result.output)
self.assertIn("Please choose an option: [0]: 0", result.output)
self.assertIn("Please enter two-step authentication code: 654321", result.output)
self.assertIn(
"Great, you're all set up. The script can now be run without "
"user interaction until 2SA expires.",
result.output,
)
self.assertEqual(result.exit_code, 0, "exit code")
def test_password_prompt_2fa(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
result = run_cassette(
os.path.join(self.vcr_path, "2fa_flow_valid_code.yml"),
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--cookie-directory",
cookie_dir,
"--auth-only",
],
input="654321\n",
)
self.assertIn("Authenticating...", result.output)
self.assertIn(
"Two-factor authentication is required",
result.output,
)
self.assertIn(" a: (***) ***-**81", result.output)
self.assertIn(
"Please enter two-factor authentication code or device index (a) to send SMS with a code: 654321",
result.output,
)
self.assertIn(
"Great, you're all set up. The script can now be run without "
"user interaction until 2FA expires.",
result.output,
)
self.assertNotIn("Failed to parse response with JSON mimetype", result.output)
self.assertEqual(result.exit_code, 0, "exit code")
def test_parse_trusted_phone_numbers_payload_valid(self) -> None:
html_path = os.path.join(self.data_path, "parse_trusted_phone_numbers_payload_valid.html")
with open(html_path, encoding="UTF-8") as file:
html = file.read()
expected = _TrustedDevice(id=1, obfuscated_number="(***) ***-**81")
result = parse_trusted_phone_numbers_payload(html)
self.assertEqual(1, len(result), "number of numbers parsed")
self.assertEqual(expected, result[0], "parsed number")
def test_parse_trusted_phone_numbers_payload_minimal(self) -> None:
html = '<script type="application/json" class="boot_args">{"direct":{"twoSV":{"phoneNumberVerification":{"trustedPhoneNumbers":[{"numberWithDialCode":"+1 (•••) •••-••81","pushMode":"sms","obfuscatedNumber":"(•••) •••-••81","lastTwoDigits":"81","id":1}]},"authInitialRoute":"auth/verify/phone"}}}</script>' # noqa: E501
expected = _TrustedDevice(id=1, obfuscated_number="(***) ***-**81")
result = parse_trusted_phone_numbers_payload(html)
self.assertEqual(1, len(result), "number of numbers parsed")
self.assertEqual(expected, result[0], "parsed number")
def test_parse_trusted_phone_numbers_payload_missing_node0(self) -> None:
html = '<script type="application/json" class="boot_args">{"MISSINGdirect":{"twoSV":{"phoneNumberVerification":{"trustedPhoneNumbers":[{"numberWithDialCode":"+1 (•••) •••-••81","pushMode":"sms","obfuscatedNumber":"(•••) •••-••81","lastTwoDigits":"81","id":1}]},"authInitialRoute":"auth/verify/phone"}}}</script>' # noqa: E501
result = parse_trusted_phone_numbers_payload(html)
self.assertEqual(0, len(result), "number of numbers parsed")
def test_parse_trusted_phone_numbers_payload_missing_node1(self) -> None:
html = '<script type="application/json" class="boot_args">{"direct":{"MISSINGtwoSV":{"phoneNumberVerification":{"trustedPhoneNumbers":[{"numberWithDialCode":"+1 (•••) •••-••81","pushMode":"sms","obfuscatedNumber":"(•••) •••-••81","lastTwoDigits":"81","id":1}]},"authInitialRoute":"auth/verify/phone"}}}</script>' # noqa: E501
result = parse_trusted_phone_numbers_payload(html)
self.assertEqual(0, len(result), "number of numbers parsed")
def test_parse_trusted_phone_numbers_payload_missing_node2(self) -> None:
html = '<script type="application/json" class="boot_args">{"direct":{"twoSV":{"MISSINGphoneNumberVerification":{"trustedPhoneNumbers":[{"numberWithDialCode":"+1 (•••) •••-••81","pushMode":"sms","obfuscatedNumber":"(•••) •••-••81","lastTwoDigits":"81","id":1}]},"authInitialRoute":"auth/verify/phone"}}}</script>' # noqa: E501
result = parse_trusted_phone_numbers_payload(html)
self.assertEqual(0, len(result), "number of numbers parsed")
def test_parse_trusted_phone_numbers_payload_missing_node3(self) -> None:
html = '<script type="application/json" class="boot_args">{"direct":{"twoSV":{"phoneNumberVerification":{"MISSINGtrustedPhoneNumbers":[{"numberWithDialCode":"+1 (•••) •••-••81","pushMode":"sms","obfuscatedNumber":"(•••) •••-••81","lastTwoDigits":"81","id":1}]},"authInitialRoute":"auth/verify/phone"}}}</script>' # noqa: E501
result = parse_trusted_phone_numbers_payload(html)
self.assertEqual(0, len(result), "number of numbers parsed")
def test_parse_trusted_phone_numbers_payload_empty_list(self) -> None:
html = '<script type="application/json" class="boot_args">{"direct":{"twoSV":{"phoneNumberVerification":{"trustedPhoneNumbers":[]},"authInitialRoute":"auth/verify/phone"}}}</script>' # noqa: E501
result = parse_trusted_phone_numbers_payload(html)
self.assertEqual(0, len(result), "number of numbers parsed")
def test_parse_trusted_phone_numbers_payload_invalid_missing_id(self) -> None:
html = '<script type="application/json" class="boot_args">{"direct":{"twoSV":{"phoneNumberVerification":{"trustedPhoneNumbers":[{"numberWithDialCode":"+1 (•••) •••-••81","pushMode":"sms","obfuscatedNumber":"(•••) •••-••81","lastTwoDigits":"81","MISSINGid":1}]},"authInitialRoute":"auth/verify/phone"}}}</script>' # noqa: E501
result = parse_trusted_phone_numbers_payload(html)
self.assertEqual(0, len(result), "number of numbers parsed")
def test_parse_trusted_phone_numbers_payload_invalid_missing_number(self) -> None:
html = '<script type="application/json" class="boot_args">{"direct":{"twoSV":{"phoneNumberVerification":{"trustedPhoneNumbers":[{"numberWithDialCode":"+1 (•••) •••-••81","pushMode":"sms","MISSINGobfuscatedNumber":"(•••) •••-••81","lastTwoDigits":"81","id":1}]},"authInitialRoute":"auth/verify/phone"}}}</script>' # noqa: E501
result = parse_trusted_phone_numbers_payload(html)
self.assertEqual(0, len(result), "number of numbers parsed")
def test_non_2fa(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
with vcr.use_cassette(os.path.join(self.vcr_path, "auth_non_2fa.yml")) as cass:
# To re-record this HTTP request,
# delete ./tests/vcr_cassettes/auth_requires_2fa.yml,
# put your actual credentials in here, run the test,
# and then replace with dummy credentials.
authenticator(
setup_logger(),
"com",
{"test": (constant("dummy"), dummy_password_writter)},
MFAProvider.CONSOLE,
StatusExchange(),
"jdoe@gmail.com",
lambda: None,
None,
cookie_dir,
"EC5646DE-9423-11E8-BF21-14109FE0B321",
)
self.assertTrue(cass.all_played)
def test_failed_auth_503(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
result = run_cassette(
os.path.join(self.vcr_path, "failed_auth_503.yml"),
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--cookie-directory",
cookie_dir,
"--auth-only",
],
)
self.assertNotIn(
"Failed to login with srp, falling back to old raw password authentication.",
result.output,
)
self.assertIn("Apple iCloud is temporary refusing to serve icloudpd", result.output)
self.assertEqual(result.exit_code, 1, "exit code")
def test_failed_auth_503_watch(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
result = run_cassette(
os.path.join(self.vcr_path, "failed_auth_503.yml"),
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--directory",
base_dir,
"--cookie-directory",
cookie_dir,
"--watch-with-interval",
"1",
],
)
self.assertNotIn(
"Failed to login with srp, falling back to old raw password authentication.",
result.output,
)
self.assertEqual(
2,
result.output.count("Apple iCloud is temporary refusing to serve icloudpd"),
"refusing message",
)
self.assertEqual(2, result.output.count("Waiting for 1 sec..."))
self.assertTrue("Can't overwrite existing cassette" in str(result.exception))
self.assertEqual(result.exit_code, 1, "exit code")
def test_connection_error(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
def mock_raise_response_error(*args, **kwargs) -> NoReturn: # type: ignore [no-untyped-def]
raise ConnectionError("Simulated Connection Error")
with mock.patch(
"requests.Session.request", side_effect=mock_raise_response_error
) as pa_request:
result = run_cassette(
os.path.join(self.vcr_path, "failed_auth_503.yml"),
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--directory",
base_dir,
"--cookie-directory",
cookie_dir,
# "--watch-with-interval",
# "1",
],
)
pa_request.assert_called_once()
self.assertIn(
"Authenticating...",
result.output,
)
self.assertIn(
"Cannot connect to Apple iCloud service",
result.output,
)
self.assertEqual(result.exit_code, 1, "exit code")
def test_timeout_error(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
def mock_raise_response_error(*args, **kwargs) -> NoReturn: # type: ignore [no-untyped-def]
raise TimeoutError("Simulated TimeoutError")
with mock.patch(
"requests.Session.request", side_effect=mock_raise_response_error
) as pa_request:
result = run_cassette(
os.path.join(self.vcr_path, "failed_auth_503.yml"),
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--directory",
base_dir,
"--cookie-directory",
cookie_dir,
# "--watch-with-interval",
# "1",
],
)
pa_request.assert_called_once()
self.assertIn(
"Authenticating...",
result.output,
)
self.assertIn(
"Cannot connect to Apple iCloud service",
result.output,
)
self.assertEqual(result.exit_code, 1, "exit code")
def test_timeout(self) -> None:
base_dir = os.path.join(self.fixtures_path, inspect.stack()[0][3])
cookie_dir = os.path.join(base_dir, "cookie")
for dir in [base_dir, cookie_dir]:
recreate_path(dir)
def mock_raise_response_error(*args, **kwargs) -> NoReturn: # type: ignore [no-untyped-def]
raise Timeout("Simulated Timeout")
with mock.patch(
"requests.Session.request", side_effect=mock_raise_response_error
) as pa_request:
result = run_cassette(
os.path.join(self.vcr_path, "failed_auth_503.yml"),
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--directory",
base_dir,
"--cookie-directory",
cookie_dir,
# "--watch-with-interval",
# "1",
],
)
pa_request.assert_called_once()
self.assertIn(
"Authenticating...",
result.output,
)
self.assertIn(
"Cannot connect to Apple iCloud service",
result.output,
)
self.assertEqual(result.exit_code, 1, "exit code")
class _TrustedDevice(NamedTuple):
id: int
obfuscated_number: str