-
-
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 option to LinkPlay to disregard HA hostname and use IP instead #137089
base: dev
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,10 +25,12 @@ | |
MODELS_ARYLIC_A50: Final[str] = "A50" | ||
MODELS_ARYLIC_A50S: Final[str] = "A50+" | ||
MODELS_ARYLIC_UP2STREAM_AMP: Final[str] = "Up2Stream Amp 2.0" | ||
MODELS_ARYLIC_UP2STREAM_AMP_2P1: Final[str] = "Up2Stream Amp 2.1" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you open a preliminary pull request to add these models? Pull requests are as small as possible and should only address one change at a time. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, I've just submitted a separate PR with these. |
||
MODELS_ARYLIC_UP2STREAM_AMP_V3: Final[str] = "Up2Stream Amp v3" | ||
MODELS_ARYLIC_UP2STREAM_AMP_V4: Final[str] = "Up2Stream Amp v4" | ||
MODELS_ARYLIC_UP2STREAM_PRO: Final[str] = "Up2Stream Pro v1" | ||
MODELS_ARYLIC_UP2STREAM_PRO_V3: Final[str] = "Up2Stream Pro v3" | ||
MODELS_ARYLIC_S10P: Final[str] = "Arylic S10+" | ||
MODELS_ARYLIC_UP2STREAM_PLATE_AMP: Final[str] = "Up2Stream Plate Amp" | ||
MODELS_IEAST_AUDIOCAST_M5: Final[str] = "AudioCast M5" | ||
MODELS_WIIM_AMP: Final[str] = "WiiM Amp" | ||
|
@@ -49,9 +51,10 @@ | |
"UP2STREAM_AMP_V3": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_AMP_V3), | ||
"UP2STREAM_AMP_V4": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_AMP_V4), | ||
"UP2STREAM_PRO_V3": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_PRO_V3), | ||
"S10P_WIFI": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_S10P), | ||
"ARYLIC_V20": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_PLATE_AMP), | ||
"UP2STREAM_MINI_V3": (MANUFACTURER_ARYLIC, MODELS_GENERIC), | ||
"UP2STREAM_AMP_2P1": (MANUFACTURER_ARYLIC, MODELS_GENERIC), | ||
"UP2STREAM_AMP_2P1": (MANUFACTURER_ARYLIC, MODELS_ARYLIC_UP2STREAM_AMP_2P1), | ||
"RP0014_A50C_S": (MANUFACTURER_ARYLIC, MODELS_GENERIC), | ||
"ARYLIC_A30": (MANUFACTURER_ARYLIC, MODELS_GENERIC), | ||
"ARYLIC_SUBWOOFER": (MANUFACTURER_ARYLIC, MODELS_GENERIC), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
"""Tests for the LinkPlay option flow.""" | ||
|
||
|
||
from tests.common import MockConfigEntry | ||
from homeassistant.core import HomeAssistant | ||
from homeassistant.components.linkplay.config_flow import LinkPlayOptionsFlow | ||
from homeassistant.components.linkplay.const import DOMAIN | ||
|
||
import pytest | ||
|
||
@pytest.fixture | ||
def mock_config_entry(hass: HomeAssistant): | ||
"""Mock a ConfigEntry for LinkPlay Options.""" | ||
entry = MockConfigEntry( | ||
domain=DOMAIN, | ||
title="Test Entry", | ||
data={"use_ip_url": True}, | ||
options={"use_ip_url": False}, | ||
) | ||
entry.add_to_hass(hass) | ||
return entry | ||
|
||
async def test_options_flow(hass: HomeAssistant, mock_config_entry): | ||
"""Test the options flow for the LinkPlay component.""" | ||
|
||
# Initialize the options flow | ||
flow = LinkPlayOptionsFlow() | ||
|
||
# Start the options flow | ||
result = await flow.async_step_init() | ||
|
||
assert result["type"] == "form" | ||
assert result["step_id"] == "init" | ||
|
||
result = await flow.async_step_update_options(user_input={"use_ip_url": True}) | ||
|
||
# Ensure that the new options are processed correctly | ||
assert result["type"] == "create_entry" | ||
assert mock_config_entry.options == {"use_ip_url": True} |
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.
This needs to be at the bottom of the function, to ensure it only unloads when it was successfully setup.