2021-10-27 19:53:14 +02:00
|
|
|
"""Provides constants for Wallbox component tests."""
|
2024-03-08 20:38:34 +01:00
|
|
|
|
2022-04-19 08:44:25 +02:00
|
|
|
JWT = "jwt"
|
|
|
|
|
USER_ID = "user_id"
|
|
|
|
|
TTL = "ttl"
|
2024-02-15 15:04:32 +01:00
|
|
|
REFRESH_TOKEN_TTL = "refresh_token_ttl"
|
2022-04-19 08:44:25 +02:00
|
|
|
ERROR = "error"
|
|
|
|
|
STATUS = "status"
|
2021-10-27 19:53:14 +02:00
|
|
|
|
2023-09-26 11:41:40 +02:00
|
|
|
MOCK_NUMBER_ENTITY_ID = "number.wallbox_wallboxname_maximum_charging_current"
|
2023-10-21 17:53:32 +02:00
|
|
|
MOCK_NUMBER_ENTITY_ENERGY_PRICE_ID = "number.wallbox_wallboxname_energy_price"
|
2023-09-26 11:41:40 +02:00
|
|
|
MOCK_LOCK_ENTITY_ID = "lock.wallbox_wallboxname_lock"
|
|
|
|
|
MOCK_SENSOR_CHARGING_SPEED_ID = "sensor.wallbox_wallboxname_charging_speed"
|
|
|
|
|
MOCK_SENSOR_CHARGING_POWER_ID = "sensor.wallbox_wallboxname_charging_power"
|
|
|
|
|
MOCK_SENSOR_MAX_AVAILABLE_POWER = "sensor.wallbox_wallboxname_max_available_power"
|
|
|
|
|
MOCK_SWITCH_ENTITY_ID = "switch.wallbox_wallboxname_pause_resume"
|