mirror of
https://github.com/home-assistant/core.git
synced 2025-08-01 09:38:21 +00:00
Revert logging for unsupported Tuya devices (#149665)
This commit is contained in:
parent
1b58809655
commit
fc900a632a
@ -153,17 +153,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: TuyaConfigEntry) -> bool
|
|||||||
# Register known device IDs
|
# Register known device IDs
|
||||||
device_registry = dr.async_get(hass)
|
device_registry = dr.async_get(hass)
|
||||||
for device in manager.device_map.values():
|
for device in manager.device_map.values():
|
||||||
if not device.status and not device.status_range and not device.function:
|
|
||||||
# If the device has no status, status_range or function,
|
|
||||||
# it cannot be supported
|
|
||||||
LOGGER.info(
|
|
||||||
"Device %s (%s) has been ignored as it does not provide any"
|
|
||||||
" standard instructions (status, status_range and function are"
|
|
||||||
" all empty) - see %s",
|
|
||||||
device.product_name,
|
|
||||||
device.id,
|
|
||||||
"https://github.com/tuya/tuya-device-sharing-sdk/issues/11",
|
|
||||||
)
|
|
||||||
device_registry.async_get_or_create(
|
device_registry.async_get_or_create(
|
||||||
config_entry_id=entry.entry_id,
|
config_entry_id=entry.entry_id,
|
||||||
identifiers={(DOMAIN, device.id)},
|
identifiers={(DOMAIN, device.id)},
|
||||||
|
@ -24,7 +24,6 @@ async def test_unsupported_device(
|
|||||||
device_registry: dr.DeviceRegistry,
|
device_registry: dr.DeviceRegistry,
|
||||||
entity_registry: er.EntityRegistry,
|
entity_registry: er.EntityRegistry,
|
||||||
snapshot: SnapshotAssertion,
|
snapshot: SnapshotAssertion,
|
||||||
caplog: pytest.LogCaptureFixture,
|
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Test unsupported device."""
|
"""Test unsupported device."""
|
||||||
|
|
||||||
@ -39,11 +38,3 @@ async def test_unsupported_device(
|
|||||||
assert not er.async_entries_for_config_entry(
|
assert not er.async_entries_for_config_entry(
|
||||||
entity_registry, mock_config_entry.entry_id
|
entity_registry, mock_config_entry.entry_id
|
||||||
)
|
)
|
||||||
|
|
||||||
# Information log entry added
|
|
||||||
assert (
|
|
||||||
"Device DOLCECLIMA 10 HP WIFI (mock_device_id) has been ignored"
|
|
||||||
" as it does not provide any standard instructions (status, status_range"
|
|
||||||
" and function are all empty) - see "
|
|
||||||
"https://github.com/tuya/tuya-device-sharing-sdk/issues/11" in caplog.text
|
|
||||||
)
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user