webexmemebot/tests/test_config.py

24 lines
603 B
Python
Raw Normal View History

2024-04-21 18:20:58 +02:00
"""Provides test cases for app/config.py."""
import os
vars: dict = {
"APP_VERSION": "dev",
"WEBEX_API_KEY": "testing",
"SENTRY_ENABLED": "false",
2024-08-04 20:02:10 +02:00
"SENTRY_DSN": "http://localhost",
2024-04-21 18:20:58 +02:00
}
for var, value in vars.items():
os.environ[var] = value
# needs to be imported AFTER environment variables are set
2024-08-04 20:02:10 +02:00
from app.config import config # pragma: no cover # noqa: E402
2024-04-21 18:20:58 +02:00
def test_config() -> None:
assert config.webex_token == vars["WEBEX_API_KEY"]
assert config.version == vars["APP_VERSION"]
assert config.sentry_enabled == bool(vars["SENTRY_ENABLED"].lower() == "true")