-
-
Notifications
You must be signed in to change notification settings - Fork 33.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add attachment and connection status for IOmeter #140998
Add attachment and connection status for IOmeter #140998
Conversation
if value is None: | ||
return None | ||
|
||
if self.entity_description.key == "connection_status": | ||
return value == "connected" | ||
|
||
return value == "attached" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather move that inside the value_fn
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, I have made a suggestion.
assert ( | ||
hass.states.get( | ||
"binary_sensor.iometer_1isk0000000000_core_bridge_connection_status" | ||
).state | ||
== STATE_ON | ||
) | ||
|
||
assert ( | ||
hass.states.get( | ||
"binary_sensor.iometer_1isk0000000000_core_attachment_status" | ||
).state | ||
== STATE_ON | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of doing that, use the snapshot_platform
helper, this allows us to test all aspects of the sensor.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
== STATE_ON | ||
) | ||
|
||
mock_iometer_client.get_current_status.return_value.device.core.attachment_status = "detached" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
split those to a separate test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Please take a look at the requested changes, and use the Ready for review button when you are done, thanks 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks 👍
Breaking change
Proposed change
This PR adds two binary sensors. Connection status and Attachment status. The data for both is already collected by the coordinator. Both entities were removed from the initial PR because they should be binary sensors.
Connection status can be "connected" (on) and "disconnected" (off)
Attachment status can be "attached" (on), "detached" (off) and None (unknown) in a case were the core is not connected to the bridge. If so, we cant make a judgement about that status and it is set to unknown.
Test are also added for the binary sensor. While doing so I updated the the function
setup_integration
tosetup_platform
to be more flexible when testing.I have chosen to disable both sensors by default, as the information is not needed at all times but I can imagine that users might build alerts or other things in cases where for example the device is not attached to the electricity meter anymore.
Type of change
Additional information
Checklist
ruff format homeassistant tests
)If user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
Updated and included derived files by running:
python3 -m script.hassfest
.requirements_all.txt
.Updated by running
python3 -m script.gen_requirements_all
.To help with the load of incoming pull requests: