Files
bot-bottle/tests/unit/test_print_util.py
T
didericis-codex 9399626ba6
test / unit (pull_request) Successful in 31s
test / integration (pull_request) Successful in 55s
fix(agent): hide auth placeholder env in preflight
2026-05-28 19:00:39 -04:00

32 lines
835 B
Python

"""Unit: shared preflight print helpers."""
from __future__ import annotations
import unittest
from bot_bottle.backend.print_util import visible_agent_env_names
class TestVisibleAgentEnvNames(unittest.TestCase):
def test_hides_codex_auth_placeholder(self):
self.assertEqual(
["CUSTOM"],
visible_agent_env_names(
["OPENAI_API_KEY", "CUSTOM"],
agent_provider_template="codex",
),
)
def test_hides_only_active_provider_placeholder(self):
self.assertEqual(
["CUSTOM", "OPENAI_API_KEY"],
visible_agent_env_names(
["CLAUDE_CODE_OAUTH_TOKEN", "OPENAI_API_KEY", "CUSTOM"],
agent_provider_template="claude",
),
)
if __name__ == "__main__":
unittest.main()