22 lines
801 B
Python
22 lines
801 B
Python
"""Regression tests for /sethome env-var resolution.
|
|
|
|
The `/sethome` command writes to a platform's home-target env var. Two platforms
|
|
don't follow the `{PLATFORM}_HOME_CHANNEL` convention: matrix uses
|
|
`MATRIX_HOME_ROOM` and email uses `EMAIL_HOME_ADDRESS`. Before PR #12698
|
|
`/sethome` hardcoded the `_HOME_CHANNEL` suffix, so Matrix and Email saves went
|
|
to env vars nothing read on startup — the home channel appeared to set
|
|
successfully but was lost on every new gateway session.
|
|
"""
|
|
|
|
from gateway.run import _home_target_env_var, _home_thread_env_var
|
|
|
|
|
|
def test_matrix_home_target_env_var_uses_home_room():
|
|
assert _home_target_env_var("matrix") == "MATRIX_HOME_ROOM"
|
|
|
|
|
|
def test_email_home_target_env_var_uses_home_address():
|
|
assert _home_target_env_var("email") == "EMAIL_HOME_ADDRESS"
|
|
|
|
|