Skip to content
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

Merged
merged 3 commits into from
Mar 25, 2025

Conversation

MaestroOnICe
Copy link
Contributor

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 to setup_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

  • Dependency upgrade
  • Bugfix (non-breaking change which fixes an issue)
  • New integration (thank you!)
  • New feature (which adds functionality to an existing integration)
  • Deprecation (breaking change to happen in the future)
  • Breaking change (fix/feature causing existing functionality to break)
  • Code quality improvements to existing code or addition of tests

Additional information

Checklist

  • The code change is tested and works locally.
  • Local tests pass. Your PR cannot be merged unless tests pass
  • There is no commented out code in this PR.
  • I have followed the development checklist
  • I have followed the perfect PR recommendations
  • The code has been formatted using Ruff (ruff format homeassistant tests)
  • Tests have been added to verify that the new code works.

If user exposed functionality or configuration variables are added/changed:

If the code communicates with devices, web services, or third-party tools:

  • The manifest file has all fields filled out correctly.
    Updated and included derived files by running: python3 -m script.hassfest.
  • New or updated dependencies have been added to requirements_all.txt.
    Updated by running python3 -m script.gen_requirements_all.
  • For the updated dependencies - a link to the changelog, or at minimum a diff between library versions is added to the PR description.

To help with the load of incoming pull requests:

Comment on lines 81 to 87
if value is None:
return None

if self.entity_description.key == "connection_status":
return value == "connected"

return value == "attached"
Copy link
Member

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

Copy link
Contributor Author

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.

Comment on lines 30 to 42
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
)
Copy link
Member

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.

Copy link
Contributor Author

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"
Copy link
Member

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

@home-assistant home-assistant bot marked this pull request as draft March 23, 2025 14:03
@home-assistant
Copy link

Please take a look at the requested changes, and use the Ready for review button when you are done, thanks 👍

Learn more about our pull request process.

@MaestroOnICe MaestroOnICe marked this pull request as ready for review March 25, 2025 12:14
@home-assistant home-assistant bot requested a review from zweckj March 25, 2025 12:14
Copy link
Member

@zweckj zweckj left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks 👍

@zweckj zweckj merged commit 0ddf3c7 into home-assistant:dev Mar 25, 2025
34 checks passed
@MaestroOnICe MaestroOnICe deleted the iometer_binary_sensor branch March 25, 2025 12:35
@github-actions github-actions bot locked and limited conversation to collaborators Mar 26, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants