Skip to content

Commit

Permalink
Log keyring tracebacks (#890)
Browse files Browse the repository at this point in the history
* Use logger.exception instead of logger.warning to handle keyring failures
Add related test

* Revert logging back to warning
Update tests

* Add changelog entry

* Parameterize test

* Use re.search for caplog

* Group similar tests

* Rework missing HOME setup

* Refactor fixtures

* Normalize prompt tests

* Fix incorrect non-interactive test

* Reload keyring to reproduce test failure

* Patch pwd instead of os

* Make assertions more specific

* Move monkeypatch to keyring

* Test attributes instead of methods

* Use more specific log messages

* Normalize keyring monkeypatch

Co-authored-by: Federico D'Ambrosio <federico.dambrosio@generali.com>
Co-authored-by: Brian Rutledge <brian@bhrutledge.com>
  • Loading branch information
3 people committed May 30, 2022
1 parent d30df70 commit 62f3c67
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 35 deletions.
1 change: 1 addition & 0 deletions changelog/890.bugfix.rst
@@ -0,0 +1 @@
Improve logging when keyring fails.
111 changes: 78 additions & 33 deletions tests/test_auth.py
@@ -1,5 +1,6 @@
import getpass
import logging
import re

import pytest

Expand All @@ -13,23 +14,23 @@ def config() -> utils.RepositoryConfig:
return dict(repository="system")


def test_get_password_keyring_overrides_prompt(monkeypatch, config):
def test_get_username_keyring_defers_to_prompt(monkeypatch, entered_username, config):
class MockKeyring:
@staticmethod
def get_password(system, user):
return f"{user}@{system} sekure pa55word"
def get_credential(system, user):
return None

monkeypatch.setattr(auth, "keyring", MockKeyring)

pw = auth.Resolver(config, auth.CredentialInput("user")).password
assert pw == "user@system sekure pa55word"
username = auth.Resolver(config, auth.CredentialInput()).username
assert username == "entered user"


def test_get_password_keyring_defers_to_prompt(monkeypatch, entered_password, config):
class MockKeyring:
@staticmethod
def get_password(system, user):
return
return None

monkeypatch.setattr(auth, "keyring", MockKeyring)

Expand All @@ -51,7 +52,7 @@ def test_empty_password_bypasses_prompt(monkeypatch, entered_password, config):

def test_no_username_non_interactive_aborts(config):
with pytest.raises(exceptions.NonInteractive):
auth.Private(config, auth.CredentialInput("user")).password
auth.Private(config, auth.CredentialInput()).username


def test_no_password_non_interactive_aborts(config):
Expand Down Expand Up @@ -124,55 +125,99 @@ def test_get_password_keyring_missing_non_interactive_aborts(
auth.Private(config, auth.CredentialInput("user")).password


@pytest.fixture
def keyring_no_backends(monkeypatch):
"""Simulate missing keyring backend raising RuntimeError on get_password."""

def test_get_username_keyring_runtime_error_logged(
entered_username, monkeypatch, config, caplog
):
class FailKeyring:
"""Simulate missing keyring backend raising RuntimeError on get_credential."""

@staticmethod
def get_password(system, username):
def get_credential(system, username):
raise RuntimeError("fail!")

monkeypatch.setattr(auth, "keyring", FailKeyring())
monkeypatch.setattr(auth, "keyring", FailKeyring)

assert auth.Resolver(config, auth.CredentialInput()).username == "entered user"

@pytest.fixture
def keyring_no_backends_get_credential(monkeypatch):
"""Simulate missing keyring backend raising RuntimeError on get_credential."""
assert re.search(
r"Error getting username from keyring.+Traceback.+RuntimeError: fail!",
caplog.text,
re.DOTALL,
)


def test_get_password_keyring_runtime_error_logged(
entered_username, entered_password, monkeypatch, config, caplog
):
class FailKeyring:
"""Simulate missing keyring backend raising RuntimeError on get_password."""

@staticmethod
def get_credential(system, username):
def get_password(system, username):
raise RuntimeError("fail!")

monkeypatch.setattr(auth, "keyring", FailKeyring())
monkeypatch.setattr(auth, "keyring", FailKeyring)

assert auth.Resolver(config, auth.CredentialInput()).password == "entered pw"

def test_get_username_runtime_error_suppressed(
entered_username, keyring_no_backends_get_credential, caplog, config
):
assert auth.Resolver(config, auth.CredentialInput()).username == "entered user"
assert caplog.messages == ["fail!"]
assert re.search(
r"Error getting password from keyring.+Traceback.+RuntimeError: fail!",
caplog.text,
re.DOTALL,
)


def test_get_password_runtime_error_suppressed(
entered_password, keyring_no_backends, caplog, config
):
assert auth.Resolver(config, auth.CredentialInput("user")).password == "entered pw"
assert caplog.messages == ["fail!"]

def _raise_home_key_error():
"""Simulate environment from https://github.com/pypa/twine/issues/889."""
try:
raise KeyError("HOME")
except KeyError:
raise KeyError("uid not found: 999")

def test_get_username_return_none(entered_username, monkeypatch, config):
"""Prompt for username when it's not in keyring."""

def test_get_username_keyring_key_error_logged(
entered_username, monkeypatch, config, caplog
):
class FailKeyring:
@staticmethod
def get_credential(system, username):
return None
_raise_home_key_error()

monkeypatch.setattr(auth, "keyring", FailKeyring)

monkeypatch.setattr(auth, "keyring", FailKeyring())
assert auth.Resolver(config, auth.CredentialInput()).username == "entered user"

assert re.search(
r"Error getting username from keyring"
r".+Traceback"
r".+KeyError: 'HOME'"
r".+KeyError: 'uid not found: 999'",
caplog.text,
re.DOTALL,
)


def test_get_password_keyring_key_error_logged(
entered_username, entered_password, monkeypatch, config, caplog
):
class FailKeyring:
@staticmethod
def get_password(system, username):
_raise_home_key_error()

monkeypatch.setattr(auth, "keyring", FailKeyring)

assert auth.Resolver(config, auth.CredentialInput()).password == "entered pw"

assert re.search(
r"Error getting password from keyring"
r".+Traceback"
r".+KeyError: 'HOME'"
r".+KeyError: 'uid not found: 999'",
caplog.text,
re.DOTALL,
)


def test_logs_cli_values(caplog):
caplog.set_level(logging.INFO, "twine")
Expand Down
4 changes: 2 additions & 2 deletions twine/auth.py
Expand Up @@ -63,7 +63,7 @@ def get_username_from_keyring(self) -> Optional[str]:
# To support keyring prior to 15.2
pass
except Exception as exc:
logger.warning(str(exc))
logger.warning("Error getting username from keyring", exc_info=exc)
return None

def get_password_from_keyring(self) -> Optional[str]:
Expand All @@ -73,7 +73,7 @@ def get_password_from_keyring(self) -> Optional[str]:
logger.info("Querying keyring for password")
return cast(str, keyring.get_password(system, username))
except Exception as exc:
logger.warning(str(exc))
logger.warning("Error getting password from keyring", exc_info=exc)
return None

def username_from_keyring_or_prompt(self) -> str:
Expand Down

0 comments on commit 62f3c67

Please sign in to comment.