-
- Downloads
Implement config and option flow for rfxtrx integration (#39117)
* Create option flow for Rfxtrx integration (#37982) * Implement config flow for rfxtrx integration (#39299) * Add config flow * Add strings * Add first series of tests * Add tests * Adjust tests according review comments * Adjust strings * Add executor for testing connection * Change ports to dict * Fix pylint issue * Adjust tests * Migrate config entry for rfxtrx integration (#39528) * Add rfxtrx device connection validation when importing (#39582) * Implement import connection validation * Fix binary sensor tests * Move rfxtrx data * Fix cover tests * Fix test init * Fix light tests * Fix sensor tests * Fix switch tests * Refactor rfxtrx test data * Fix strings * Fix check * Rework device string in test code * Add option to delete multiple rfxtrx devices (#39625) * Opt to remove multiple devices * Fix devices key * Add tests (phase 1) * Add tests (phase 2) * Tweak remove devices test * Implement device migration function in rfxtrx option flow (#39694) * Prompt option to replace device * Revert unwanted changes * Add replace device function * WIP replace entities * Remove device/entities and update config entry * Fix styling * Add info * Add test * Fix strings * Refactor building migration map * Allow migration for all device types * Add test to migrate control device * Fixup some names * Fixup entry names in test code * Bump pyRFXtrx to 0.26 and deprecate debug config key (#40679) * Create option flow for Rfxtrx integration (#37982) * Implement config flow for rfxtrx integration (#39299) * Add config flow * Add strings * Add first series of tests * Add tests * Adjust tests according review comments * Adjust strings * Add executor for testing connection * Change ports to dict * Fix pylint issue * Adjust tests * Migrate config entry for rfxtrx integration (#39528) * Add rfxtrx device connection validation when importing (#39582) * Implement import connection validation * Fix binary sensor tests * Move rfxtrx data * Fix cover tests * Fix test init * Fix light tests * Fix sensor tests * Fix switch tests * Refactor rfxtrx test data * Fix strings * Fix check * Rework device string in test code * Add option to delete multiple rfxtrx devices (#39625) * Opt to remove multiple devices * Fix devices key * Add tests (phase 1) * Add tests (phase 2) * Tweak remove devices test * Implement device migration function in rfxtrx option flow (#39694) * Prompt option to replace device * Revert unwanted changes * Add replace device function * WIP replace entities * Remove device/entities and update config entry * Fix styling * Add info * Add test * Fix strings * Refactor building migration map * Allow migration for all device types * Add test to migrate control device * Fixup some names * Fixup entry names in test code * Bump version number * Remove debug key from connect * Remove debug option from config flow * Remove debug from tests * Fix event test * Add cv.deprecated * Fix test * Fix config schema * Add timeout on connection * Rework config schema * Fix schema...again * Prevent creation of duplicate device in rfxtrx option flow (#40656)
Showing
- CODEOWNERS 1 addition, 1 deletionCODEOWNERS
- homeassistant/components/rfxtrx/__init__.py 25 additions, 13 deletionshomeassistant/components/rfxtrx/__init__.py
- homeassistant/components/rfxtrx/binary_sensor.py 12 additions, 10 deletionshomeassistant/components/rfxtrx/binary_sensor.py
- homeassistant/components/rfxtrx/config_flow.py 577 additions, 6 deletionshomeassistant/components/rfxtrx/config_flow.py
- homeassistant/components/rfxtrx/const.py 9 additions, 0 deletionshomeassistant/components/rfxtrx/const.py
- homeassistant/components/rfxtrx/cover.py 5 additions, 3 deletionshomeassistant/components/rfxtrx/cover.py
- homeassistant/components/rfxtrx/light.py 8 additions, 6 deletionshomeassistant/components/rfxtrx/light.py
- homeassistant/components/rfxtrx/manifest.json 4 additions, 4 deletionshomeassistant/components/rfxtrx/manifest.json
- homeassistant/components/rfxtrx/strings.json 71 additions, 6 deletionshomeassistant/components/rfxtrx/strings.json
- homeassistant/components/rfxtrx/switch.py 10 additions, 8 deletionshomeassistant/components/rfxtrx/switch.py
- homeassistant/components/rfxtrx/translations/en.json 70 additions, 3 deletionshomeassistant/components/rfxtrx/translations/en.json
- homeassistant/generated/config_flows.py 1 addition, 0 deletionshomeassistant/generated/config_flows.py
- requirements_all.txt 1 addition, 1 deletionrequirements_all.txt
- requirements_test_all.txt 1 addition, 1 deletionrequirements_test_all.txt
- tests/components/rfxtrx/conftest.py 19 additions, 7 deletionstests/components/rfxtrx/conftest.py
- tests/components/rfxtrx/test_binary_sensor.py 76 additions, 90 deletionstests/components/rfxtrx/test_binary_sensor.py
- tests/components/rfxtrx/test_config_flow.py 1114 additions, 11 deletionstests/components/rfxtrx/test_config_flow.py
- tests/components/rfxtrx/test_cover.py 38 additions, 35 deletionstests/components/rfxtrx/test_cover.py
- tests/components/rfxtrx/test_init.py 21 additions, 17 deletionstests/components/rfxtrx/test_init.py
- tests/components/rfxtrx/test_light.py 35 additions, 34 deletionstests/components/rfxtrx/test_light.py
Loading
Please register or sign in to comment