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 number platform to Husqvarna Automower #115125

Merged
merged 8 commits into from
Apr 23, 2024

Conversation

Thomas55555
Copy link
Contributor

@Thomas55555 Thomas55555 commented Apr 7, 2024

Breaking change

Proposed change

Adds the number platform to this integration, for changing the cutting height. This is a little bit tricky, because the API can't tell about the cutting height capabilities.
There are 4 different types of mowers, regarding the cutting height:
Type 1: Cutting height can only be changed manually and the mower reports no value for the cutting height: Fits perfect, won't be added
Type 2: Cutting height can only be changed manually and the mower reports 1 for the cutting height: entity is disabled by default, and the user hopefully doesn't enable it
Type 3: Cutting height can only be changed manually and there is a sensor for the cutting hieght: entity is disabled by default, and the user can enable it and just use it as a sensor.
Type 4: Cutting height be changed by the API: entity is disabled by default, and the user can enable it, and use the full functionallity.

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.
  • Untested files have been added to .coveragerc.

To help with the load of incoming pull requests:

Comment on lines +68 to +77
entity_entries = er.async_entries_for_config_entry(
entity_registry, mock_config_entry.entry_id
)

assert entity_entries
for entity_entry in entity_entries:
assert hass.states.get(entity_entry.entity_id) == snapshot(
name=f"{entity_entry.entity_id}-state"
)
assert entity_entry == snapshot(name=f"{entity_entry.entity_id}-entry")
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
entity_entries = er.async_entries_for_config_entry(
entity_registry, mock_config_entry.entry_id
)
assert entity_entries
for entity_entry in entity_entries:
assert hass.states.get(entity_entry.entity_id) == snapshot(
name=f"{entity_entry.entity_id}-state"
)
assert entity_entry == snapshot(name=f"{entity_entry.entity_id}-entry")
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)

New helper was added last weekend, if you could find the time to add this to the other paltforms as well, that'd be amazing :)

@joostlek joostlek added the smash Indicator this PR is close to finish for merging or closing label Apr 23, 2024
@joostlek joostlek merged commit b8918d7 into home-assistant:dev Apr 23, 2024
24 checks passed
@Thomas55555 Thomas55555 deleted the add-number-platform branch April 23, 2024 12:19
tr4nt0r pushed a commit to tr4nt0r/ha-core that referenced this pull request Apr 23, 2024
* Add number platform to Husqvarna Automower

* use fixture to enable by default

* replace state test with snapshot test

* make property in entity description

* send value as integer

* give the exists functions something to do
@github-actions github-actions bot locked and limited conversation to collaborators Apr 24, 2024
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.

None yet

2 participants