-
Notifications
You must be signed in to change notification settings - Fork 572
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fallback to old raw password auth if srp auth fails (#1018)
- Loading branch information
Showing
5 changed files
with
431 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,8 +58,41 @@ def test_failed_auth(self) -> None: | |
"EC5646DE-9423-11E8-BF21-14109FE0B321", | ||
) | ||
|
||
self.assertIn( | ||
"ERROR Failed to login with srp, falling back to old raw password authentication.", | ||
self._caplog.text, | ||
) | ||
self.assertTrue("Invalid email/password combination." in str(context.exception)) | ||
|
||
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) | ||
|
||
with vcr.use_cassette(os.path.join(self.vcr_path, "fallback_raw_password.yml")): # noqa: SIM117 | ||
runner = CliRunner(env={"CLIENT_ID": "EC5646DE-9423-11E8-BF21-14109FE0B321"}) | ||
result = runner.invoke( | ||
main, | ||
[ | ||
"--username", | ||
"[email protected]", | ||
"--password", | ||
"password1", | ||
"--no-progress-bar", | ||
"--cookie-directory", | ||
cookie_dir, | ||
"--auth-only", | ||
], | ||
) | ||
self.assertIn( | ||
"ERROR Failed to login with srp, falling back to old raw password authentication.", | ||
self._caplog.text, | ||
) | ||
self.assertIn("INFO Authentication completed successfully", self._caplog.text) | ||
assert result.exit_code == 0 | ||
|
||
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") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.