2024-08-03 08:41:30 +00:00
|
|
|
"""Constants for the evohome tests."""
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from typing import Final
|
|
|
|
|
|
|
|
ACCESS_TOKEN: Final = "at_1dc7z657UKzbhKA..."
|
|
|
|
REFRESH_TOKEN: Final = "rf_jg68ZCKYdxEI3fF..."
|
|
|
|
SESSION_ID: Final = "F7181186..."
|
|
|
|
USERNAME: Final = "test_user@gmail.com"
|
2024-08-28 20:40:57 +00:00
|
|
|
|
|
|
|
# The h-numbers refer to issues in HA's core repo
|
|
|
|
TEST_INSTALLS: Final = (
|
2024-09-27 07:40:52 +00:00
|
|
|
"minimal", # evohome: single zone, no DHW
|
|
|
|
"default", # evohome: multi-zone, with DHW
|
|
|
|
"h032585", # VisionProWifi: no preset modes for TCS, zoneId=systemId
|
2024-08-28 20:40:57 +00:00
|
|
|
"h099625", # RoundThermostat
|
2024-09-24 19:07:22 +00:00
|
|
|
"sys_004", # RoundModulation
|
2024-08-28 20:40:57 +00:00
|
|
|
)
|
2024-09-27 07:40:52 +00:00
|
|
|
# "botched", # as default: but with activeFaults, ghost zones & unknown types
|
2024-10-05 21:34:06 +00:00
|
|
|
|
|
|
|
TEST_INSTALLS_WITH_DHW: Final = ("default",)
|