Files
liqiang b119135836
Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
ai-agent-book 精选快照(<2MB 代码与文档,来自 github.com/bojieli/ai-agent-book)
2026-08-20 13:12:50 +00:00

41 lines
1.4 KiB
Python

"""Authorization: Basic credentials must be redacted like Bearer tokens."""
from regex_sanitizer import sanitize
def test_authorization_basic_redacted():
cred = "dXNlcjpwYXNzd29yZA=="
text, hits = sanitize(f"Authorization: Basic {cred}")
assert cred not in text
assert "[REDACTED_BASIC_AUTH]" in text
assert any(h["category"] == "basic_auth" for h in hits)
def test_authorization_basic_case_insensitive():
cred = "YWRtaW46c2VjcmV0"
text, hits = sanitize(f"authorization: basic {cred}")
assert cred not in text
assert "[REDACTED_BASIC_AUTH]" in text
def test_bearer_still_redacted():
token = "aaaaaaaaaaaaaaaaaaaa"
text, hits = sanitize(f"Authorization: Bearer {token}")
assert token not in text
assert "[REDACTED_BEARER_TOKEN]" in text
assert any(h["category"] == "bearer_token" for h in hits)
def test_english_basic_prose_not_redacted():
prose = "Basic knowledge of Python is required."
text, hits = sanitize(prose)
assert text == prose
assert not any(h["category"] == "basic_auth" for h in hits)
def test_www_authenticate_basic_realm_not_treated_as_credential():
# Challenge header names the scheme; it does not carry the password blob.
line = 'WWW-Authenticate: Basic realm="api"'
text, hits = sanitize(line)
assert text == line
assert not any(h["category"] == "basic_auth" for h in hits)