* Update aioswitcher requirement to 2019.4.26. * Removed unnecessary legacy function call. * Fixed log message capital first letter. * Replaced None argument with empty dict. * Replaced guard. * Added ServiceCallType. * Added set_auto_off and update_device_name services to the component. * Added test cases for service calls. * Conditioned the component services registry with the platform discovery. * Update homeassistant/components/switcher_kis/__init__.py Co-Authored-By: TomerFi <tomer.figenblat@gmail.com> * Update homeassistant/components/switcher_kis/__init__.py Co-Authored-By: TomerFi <tomer.figenblat@gmail.com> * Resolved change requests. * Added ContextType. * Addes permission verification for service calls. * Added test cases for permision verification and more. * Replaced POLICY_CONTROL with the more suited POLICY_EDIT. * More appropriate function name. * Added domain and entity_id validation for calling services. * Removed service for setting the vendor's device name.
29 lines
870 B
Python
29 lines
870 B
Python
"""Constants for the Switcher integration tests."""
|
|
|
|
from homeassistant.components.switcher_kis import (
|
|
CONF_DEVICE_ID, CONF_DEVICE_PASSWORD, CONF_PHONE_ID, DOMAIN)
|
|
|
|
DUMMY_AUTO_OFF_SET = '01:30:00'
|
|
DUMMY_DEVICE_ID = 'a123bc'
|
|
DUMMY_DEVICE_NAME = "Device Name"
|
|
DUMMY_DEVICE_PASSWORD = '12345678'
|
|
DUMMY_DEVICE_STATE = 'on'
|
|
DUMMY_ELECTRIC_CURRENT = 12.8
|
|
DUMMY_ICON = 'mdi:dummy-icon'
|
|
DUMMY_IP_ADDRESS = '192.168.100.157'
|
|
DUMMY_MAC_ADDRESS = 'A1:B2:C3:45:67:D8'
|
|
DUMMY_NAME = 'boiler'
|
|
DUMMY_PHONE_ID = '1234'
|
|
DUMMY_POWER_CONSUMPTION = 2780
|
|
DUMMY_REMAINING_TIME = '01:29:32'
|
|
|
|
# Adjust if any modification were made to DUMMY_DEVICE_NAME
|
|
SWITCH_ENTITY_ID = "switch.switcher_kis_device_name"
|
|
|
|
MANDATORY_CONFIGURATION = {
|
|
DOMAIN: {
|
|
CONF_PHONE_ID: DUMMY_PHONE_ID,
|
|
CONF_DEVICE_ID: DUMMY_DEVICE_ID,
|
|
CONF_DEVICE_PASSWORD: DUMMY_DEVICE_PASSWORD
|
|
}
|
|
}
|