-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_authentication.py
318 lines (276 loc) · 15.5 KB
/
test_authentication.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
import inspect
import os
import shutil
from typing import NamedTuple
from unittest import TestCase
import pyicloud_ipd
import pytest
from click.testing import CliRunner
from foundation.core import constant, identity
from icloudpd.authentication import TwoStepAuthRequiredError, authenticator
from icloudpd.base import dummy_password_writter, lp_filename_concatinator, main
from icloudpd.logger import setup_logger
from icloudpd.mfa_provider import MFAProvider
from icloudpd.status import StatusExchange
from pyicloud_ipd.file_match import FileMatchPolicy
from pyicloud_ipd.raw_policy import RawTreatmentPolicy
from pyicloud_ipd.sms import parse_trusted_phone_numbers_payload
from vcr import VCR
from tests.helpers import path_from_project_root, recreate_path
vcr = VCR(decode_compressed_response=True, record_mode="none")
class AuthenticationTestCase(TestCase):
@pytest.fixture(autouse=True)
def inject_fixtures(self, caplog: pytest.LogCaptureFixture) -> None:
self._caplog = caplog
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",
identity,
lp_filename_concatinator,
RawTreatmentPolicy.AS_IS,
FileMatchPolicy.NAME_SIZE_DEDUP_WITH_SUFFIX,
{"test": (constant("dummy"), dummy_password_writter)},
MFAProvider.CONSOLE,
StatusExchange(),
)(
"bad_username",
cookie_dir,
False,
"EC5646DE-9423-11E8-BF21-14109FE0B321",
)
self.assertTrue("Invalid email/password combination." in str(context.exception))
def test_2sa_required(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, "2sa_flow_valid_code.yml")):
with self.assertRaises(TwoStepAuthRequiredError) as context:
# To re-record this HTTP request,
# delete ./tests/vcr_cassettes/auth_requires_2sa.yml,
# put your actual credentials in here, run the test,
# and then replace with dummy credentials.
authenticator(
setup_logger(),
"com",
identity,
lp_filename_concatinator,
RawTreatmentPolicy.AS_IS,
FileMatchPolicy.NAME_SIZE_DEDUP_WITH_SUFFIX,
{"test": (constant("dummy"), dummy_password_writter)},
MFAProvider.CONSOLE,
StatusExchange(),
)(
"jdoe@gmail.com",
cookie_dir,
True,
"DE309E26-942E-11E8-92F5-14109FE0B321",
)
self.assertTrue("Two-step authentication is required" in str(context.exception))
def test_2fa_required(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_requires_2fa.yml")):
with self.assertRaises(TwoStepAuthRequiredError) as context:
# 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",
identity,
lp_filename_concatinator,
RawTreatmentPolicy.AS_IS,
FileMatchPolicy.NAME_SIZE_DEDUP_WITH_SUFFIX,
{"test": (constant("dummy"), dummy_password_writter)},
MFAProvider.CONSOLE,
StatusExchange(),
)(
"jdoe@gmail.com",
cookie_dir,
True,
"EC5646DE-9423-11E8-BF21-14109FE0B321",
)
self.assertTrue("Two-factor authentication is required" in str(context.exception))
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)
with vcr.use_cassette(os.path.join(self.vcr_path, "successful_auth.yml")):
runner = CliRunner(env={"CLIENT_ID": "DE309E26-942E-11E8-92F5-14109FE0B321"})
result = runner.invoke(
main,
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--cookie-directory",
cookie_dir,
"--auth-only",
],
)
self.assertIn("INFO Authentication completed successfully", self._caplog.text)
assert result.exit_code == 0
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)
with vcr.use_cassette(os.path.join(self.vcr_path, "2sa_flow_valid_code.yml")):
runner = CliRunner(env={"CLIENT_ID": "DE309E26-942E-11E8-92F5-14109FE0B321"})
result = runner.invoke(
main,
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--cookie-directory",
cookie_dir,
"--auth-only",
],
input="0\n654321\n",
)
self.assertIn("DEBUG Authenticating...", self._caplog.text)
self.assertIn(
"INFO Two-step authentication is required",
self._caplog.text,
)
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(
"INFO Great, you're all set up. The script can now be run without "
"user interaction until 2SA expires.",
self._caplog.text,
)
assert result.exit_code == 0
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)
with vcr.use_cassette(os.path.join(self.vcr_path, "2fa_flow_valid_code.yml")):
runner = CliRunner(env={"CLIENT_ID": "DE309E26-942E-11E8-92F5-14109FE0B321"})
result = runner.invoke(
main,
[
"--username",
"jdoe@gmail.com",
"--password",
"password1",
"--no-progress-bar",
"--cookie-directory",
cookie_dir,
"--auth-only",
],
input="654321\n",
)
self.assertIn("DEBUG Authenticating...", self._caplog.text)
self.assertIn(
"INFO Two-factor authentication is required",
self._caplog.text,
)
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(
"INFO Great, you're all set up. The script can now be run without "
"user interaction until 2FA expires.",
self._caplog.text,
)
self.assertNotIn("Failed to parse response with JSON mimetype", self._caplog.text)
assert result.exit_code == 0
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",
identity,
lp_filename_concatinator,
RawTreatmentPolicy.AS_IS,
FileMatchPolicy.NAME_SIZE_DEDUP_WITH_SUFFIX,
{"test": (constant("dummy"), dummy_password_writter)},
MFAProvider.CONSOLE,
StatusExchange(),
)(
"jdoe@gmail.com",
cookie_dir,
True,
"EC5646DE-9423-11E8-BF21-14109FE0B321",
)
self.assertTrue(cass.all_played)
class _TrustedDevice(NamedTuple):
id: int
obfuscated_number: str