Clean up post-merge review comments (#64842)
* Clean up post-merge diagnostics PRs * Trigger Build * Linting
This commit is contained in:
parent
5622e45980
commit
3a978fc244
4 changed files with 159 additions and 169 deletions
|
@ -23,14 +23,10 @@ async def async_get_config_entry_diagnostics(
|
||||||
"""Return diagnostics for a config entry."""
|
"""Return diagnostics for a config entry."""
|
||||||
coordinators: dict[str, DataUpdateCoordinator] = hass.data[DOMAIN][entry.entry_id]
|
coordinators: dict[str, DataUpdateCoordinator] = hass.data[DOMAIN][entry.entry_id]
|
||||||
|
|
||||||
return {
|
return async_redact_data(
|
||||||
"data": {
|
{
|
||||||
CATEGORY_CDC_REPORT: async_redact_data(
|
CATEGORY_CDC_REPORT: coordinators[CATEGORY_CDC_REPORT].data,
|
||||||
coordinators[CATEGORY_CDC_REPORT].data, TO_REDACT
|
CATEGORY_USER_REPORT: coordinators[CATEGORY_USER_REPORT].data,
|
||||||
),
|
|
||||||
CATEGORY_USER_REPORT: [
|
|
||||||
async_redact_data(report, TO_REDACT)
|
|
||||||
for report in coordinators[CATEGORY_USER_REPORT].data
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
}
|
TO_REDACT,
|
||||||
|
)
|
||||||
|
|
|
@ -27,6 +27,4 @@ async def async_get_config_entry_diagnostics(
|
||||||
"""Return diagnostics for a config entry."""
|
"""Return diagnostics for a config entry."""
|
||||||
coordinator: DataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
coordinator: DataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
||||||
|
|
||||||
return {
|
return async_redact_data(coordinator.data, TO_REDACT)
|
||||||
"data": async_redact_data(coordinator.data, TO_REDACT),
|
|
||||||
}
|
|
||||||
|
|
|
@ -7,63 +7,61 @@ from tests.components.diagnostics import get_diagnostics_for_config_entry
|
||||||
async def test_entry_diagnostics(hass, config_entry, hass_client, setup_flunearyou):
|
async def test_entry_diagnostics(hass, config_entry, hass_client, setup_flunearyou):
|
||||||
"""Test config entry diagnostics."""
|
"""Test config entry diagnostics."""
|
||||||
assert await get_diagnostics_for_config_entry(hass, hass_client, config_entry) == {
|
assert await get_diagnostics_for_config_entry(hass, hass_client, config_entry) == {
|
||||||
"data": {
|
"cdc_report": {
|
||||||
"cdc_report": {
|
"level": "Low",
|
||||||
"level": "Low",
|
"level2": "None",
|
||||||
"level2": "None",
|
"week_date": "2020-05-16",
|
||||||
"week_date": "2020-05-16",
|
"name": "Washington State",
|
||||||
"name": "Washington State",
|
"fill": {"color": "#00B7B6", "opacity": 0.7},
|
||||||
"fill": {"color": "#00B7B6", "opacity": 0.7},
|
|
||||||
},
|
|
||||||
"user_report": [
|
|
||||||
{
|
|
||||||
"id": 1,
|
|
||||||
"city": "Chester(72934)",
|
|
||||||
"place_id": "49377",
|
|
||||||
"zip": "72934",
|
|
||||||
"contained_by": "610",
|
|
||||||
"latitude": REDACTED,
|
|
||||||
"longitude": REDACTED,
|
|
||||||
"none": 1,
|
|
||||||
"symptoms": 0,
|
|
||||||
"flu": 0,
|
|
||||||
"lepto": 0,
|
|
||||||
"dengue": 0,
|
|
||||||
"chick": 0,
|
|
||||||
"icon": "1",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 2,
|
|
||||||
"city": "Los Angeles(90046)",
|
|
||||||
"place_id": "23818",
|
|
||||||
"zip": "90046",
|
|
||||||
"contained_by": "204",
|
|
||||||
"latitude": REDACTED,
|
|
||||||
"longitude": REDACTED,
|
|
||||||
"none": 2,
|
|
||||||
"symptoms": 0,
|
|
||||||
"flu": 0,
|
|
||||||
"lepto": 0,
|
|
||||||
"dengue": 0,
|
|
||||||
"chick": 0,
|
|
||||||
"icon": "1",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 3,
|
|
||||||
"city": "Corvallis(97330)",
|
|
||||||
"place_id": "21462",
|
|
||||||
"zip": "97330",
|
|
||||||
"contained_by": "239",
|
|
||||||
"latitude": REDACTED,
|
|
||||||
"longitude": REDACTED,
|
|
||||||
"none": 3,
|
|
||||||
"symptoms": 0,
|
|
||||||
"flu": 0,
|
|
||||||
"lepto": 0,
|
|
||||||
"dengue": 0,
|
|
||||||
"chick": 0,
|
|
||||||
"icon": "1",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
|
"user_report": [
|
||||||
|
{
|
||||||
|
"id": 1,
|
||||||
|
"city": "Chester(72934)",
|
||||||
|
"place_id": "49377",
|
||||||
|
"zip": "72934",
|
||||||
|
"contained_by": "610",
|
||||||
|
"latitude": REDACTED,
|
||||||
|
"longitude": REDACTED,
|
||||||
|
"none": 1,
|
||||||
|
"symptoms": 0,
|
||||||
|
"flu": 0,
|
||||||
|
"lepto": 0,
|
||||||
|
"dengue": 0,
|
||||||
|
"chick": 0,
|
||||||
|
"icon": "1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 2,
|
||||||
|
"city": "Los Angeles(90046)",
|
||||||
|
"place_id": "23818",
|
||||||
|
"zip": "90046",
|
||||||
|
"contained_by": "204",
|
||||||
|
"latitude": REDACTED,
|
||||||
|
"longitude": REDACTED,
|
||||||
|
"none": 2,
|
||||||
|
"symptoms": 0,
|
||||||
|
"flu": 0,
|
||||||
|
"lepto": 0,
|
||||||
|
"dengue": 0,
|
||||||
|
"chick": 0,
|
||||||
|
"icon": "1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 3,
|
||||||
|
"city": "Corvallis(97330)",
|
||||||
|
"place_id": "21462",
|
||||||
|
"zip": "97330",
|
||||||
|
"contained_by": "239",
|
||||||
|
"latitude": REDACTED,
|
||||||
|
"longitude": REDACTED,
|
||||||
|
"none": 3,
|
||||||
|
"symptoms": 0,
|
||||||
|
"flu": 0,
|
||||||
|
"lepto": 0,
|
||||||
|
"dengue": 0,
|
||||||
|
"chick": 0,
|
||||||
|
"icon": "1",
|
||||||
|
},
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,107 +7,105 @@ from tests.components.diagnostics import get_diagnostics_for_config_entry
|
||||||
async def test_entry_diagnostics(hass, config_entry, hass_client, setup_notion):
|
async def test_entry_diagnostics(hass, config_entry, hass_client, setup_notion):
|
||||||
"""Test config entry diagnostics."""
|
"""Test config entry diagnostics."""
|
||||||
assert await get_diagnostics_for_config_entry(hass, hass_client, config_entry) == {
|
assert await get_diagnostics_for_config_entry(hass, hass_client, config_entry) == {
|
||||||
"data": {
|
"bridges": {
|
||||||
"bridges": {
|
"12345": {
|
||||||
"12345": {
|
"id": 12345,
|
||||||
"id": 12345,
|
"name": None,
|
||||||
"name": None,
|
"mode": "home",
|
||||||
"mode": "home",
|
"hardware_id": "0x1234567890abcdef",
|
||||||
"hardware_id": "0x1234567890abcdef",
|
"hardware_revision": 4,
|
||||||
"hardware_revision": 4,
|
"firmware_version": {
|
||||||
"firmware_version": {
|
"wifi": "0.121.0",
|
||||||
"wifi": "0.121.0",
|
"wifi_app": "3.3.0",
|
||||||
"wifi_app": "3.3.0",
|
"silabs": "1.0.1",
|
||||||
"silabs": "1.0.1",
|
|
||||||
},
|
|
||||||
"missing_at": None,
|
|
||||||
"created_at": "2019-04-30T01:43:50.497Z",
|
|
||||||
"updated_at": "2019-04-30T01:44:43.749Z",
|
|
||||||
"system_id": 12345,
|
|
||||||
"firmware": {
|
|
||||||
"wifi": "0.121.0",
|
|
||||||
"wifi_app": "3.3.0",
|
|
||||||
"silabs": "1.0.1",
|
|
||||||
},
|
|
||||||
"links": {"system": 12345},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"sensors": {
|
|
||||||
"123456": {
|
|
||||||
"id": 123456,
|
|
||||||
"uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
|
||||||
"user": {"id": 12345, "email": REDACTED},
|
|
||||||
"bridge": {"id": 12345, "hardware_id": "0x1234567890abcdef"},
|
|
||||||
"last_bridge_hardware_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
|
||||||
"name": "Bathroom Sensor",
|
|
||||||
"location_id": 123456,
|
|
||||||
"system_id": 12345,
|
|
||||||
"hardware_id": "0x1234567890abcdef",
|
|
||||||
"firmware_version": "1.1.2",
|
|
||||||
"hardware_revision": 5,
|
|
||||||
"device_key": REDACTED,
|
|
||||||
"encryption_key": True,
|
|
||||||
"installed_at": "2019-04-30T01:57:34.443Z",
|
|
||||||
"calibrated_at": "2019-04-30T01:57:35.651Z",
|
|
||||||
"last_reported_at": "2019-04-30T02:20:04.821Z",
|
|
||||||
"missing_at": None,
|
|
||||||
"updated_at": "2019-04-30T01:57:36.129Z",
|
|
||||||
"created_at": "2019-04-30T01:56:45.932Z",
|
|
||||||
"signal_strength": 5,
|
|
||||||
"links": {"location": 123456},
|
|
||||||
"lqi": 0,
|
|
||||||
"rssi": -46,
|
|
||||||
"surface_type": None,
|
|
||||||
},
|
},
|
||||||
"132462": {
|
"missing_at": None,
|
||||||
"id": 132462,
|
"created_at": "2019-04-30T01:43:50.497Z",
|
||||||
"uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
"updated_at": "2019-04-30T01:44:43.749Z",
|
||||||
"user": {"id": 12345, "email": REDACTED},
|
"system_id": 12345,
|
||||||
"bridge": {"id": 12345, "hardware_id": "0x1234567890abcdef"},
|
"firmware": {
|
||||||
"last_bridge_hardware_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
"wifi": "0.121.0",
|
||||||
"name": "Living Room Sensor",
|
"wifi_app": "3.3.0",
|
||||||
"location_id": 123456,
|
"silabs": "1.0.1",
|
||||||
"system_id": 12345,
|
|
||||||
"hardware_id": "0x1234567890abcdef",
|
|
||||||
"firmware_version": "1.1.2",
|
|
||||||
"hardware_revision": 5,
|
|
||||||
"device_key": REDACTED,
|
|
||||||
"encryption_key": True,
|
|
||||||
"installed_at": "2019-04-30T01:45:56.169Z",
|
|
||||||
"calibrated_at": "2019-04-30T01:46:06.256Z",
|
|
||||||
"last_reported_at": "2019-04-30T02:20:04.829Z",
|
|
||||||
"missing_at": None,
|
|
||||||
"updated_at": "2019-04-30T01:46:07.717Z",
|
|
||||||
"created_at": "2019-04-30T01:45:14.148Z",
|
|
||||||
"signal_strength": 5,
|
|
||||||
"links": {"location": 123456},
|
|
||||||
"lqi": 0,
|
|
||||||
"rssi": -30,
|
|
||||||
"surface_type": None,
|
|
||||||
},
|
},
|
||||||
|
"links": {"system": 12345},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sensors": {
|
||||||
|
"123456": {
|
||||||
|
"id": 123456,
|
||||||
|
"uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
||||||
|
"user": {"id": 12345, "email": REDACTED},
|
||||||
|
"bridge": {"id": 12345, "hardware_id": "0x1234567890abcdef"},
|
||||||
|
"last_bridge_hardware_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
||||||
|
"name": "Bathroom Sensor",
|
||||||
|
"location_id": 123456,
|
||||||
|
"system_id": 12345,
|
||||||
|
"hardware_id": "0x1234567890abcdef",
|
||||||
|
"firmware_version": "1.1.2",
|
||||||
|
"hardware_revision": 5,
|
||||||
|
"device_key": REDACTED,
|
||||||
|
"encryption_key": True,
|
||||||
|
"installed_at": "2019-04-30T01:57:34.443Z",
|
||||||
|
"calibrated_at": "2019-04-30T01:57:35.651Z",
|
||||||
|
"last_reported_at": "2019-04-30T02:20:04.821Z",
|
||||||
|
"missing_at": None,
|
||||||
|
"updated_at": "2019-04-30T01:57:36.129Z",
|
||||||
|
"created_at": "2019-04-30T01:56:45.932Z",
|
||||||
|
"signal_strength": 5,
|
||||||
|
"links": {"location": 123456},
|
||||||
|
"lqi": 0,
|
||||||
|
"rssi": -46,
|
||||||
|
"surface_type": None,
|
||||||
},
|
},
|
||||||
"tasks": {
|
"132462": {
|
||||||
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx": {
|
"id": 132462,
|
||||||
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
"uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
||||||
"task_type": "low_battery",
|
"user": {"id": 12345, "email": REDACTED},
|
||||||
"sensor_data": [],
|
"bridge": {"id": 12345, "hardware_id": "0x1234567890abcdef"},
|
||||||
"status": {
|
"last_bridge_hardware_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
||||||
"insights": {
|
"name": "Living Room Sensor",
|
||||||
"primary": {
|
"location_id": 123456,
|
||||||
"from_state": None,
|
"system_id": 12345,
|
||||||
"to_state": "high",
|
"hardware_id": "0x1234567890abcdef",
|
||||||
"data_received_at": "2020-11-17T18:40:27.024Z",
|
"firmware_version": "1.1.2",
|
||||||
"origin": {},
|
"hardware_revision": 5,
|
||||||
}
|
"device_key": REDACTED,
|
||||||
}
|
"encryption_key": True,
|
||||||
},
|
"installed_at": "2019-04-30T01:45:56.169Z",
|
||||||
"created_at": "2020-11-17T18:40:27.024Z",
|
"calibrated_at": "2019-04-30T01:46:06.256Z",
|
||||||
"updated_at": "2020-11-17T18:40:27.033Z",
|
"last_reported_at": "2019-04-30T02:20:04.829Z",
|
||||||
"sensor_id": 525993,
|
"missing_at": None,
|
||||||
"model_version": "4.1",
|
"updated_at": "2019-04-30T01:46:07.717Z",
|
||||||
"configuration": {},
|
"created_at": "2019-04-30T01:45:14.148Z",
|
||||||
"links": {"sensor": 525993},
|
"signal_strength": 5,
|
||||||
}
|
"links": {"location": 123456},
|
||||||
|
"lqi": 0,
|
||||||
|
"rssi": -30,
|
||||||
|
"surface_type": None,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
"tasks": {
|
||||||
|
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx": {
|
||||||
|
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
||||||
|
"task_type": "low_battery",
|
||||||
|
"sensor_data": [],
|
||||||
|
"status": {
|
||||||
|
"insights": {
|
||||||
|
"primary": {
|
||||||
|
"from_state": None,
|
||||||
|
"to_state": "high",
|
||||||
|
"data_received_at": "2020-11-17T18:40:27.024Z",
|
||||||
|
"origin": {},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"created_at": "2020-11-17T18:40:27.024Z",
|
||||||
|
"updated_at": "2020-11-17T18:40:27.033Z",
|
||||||
|
"sensor_id": 525993,
|
||||||
|
"model_version": "4.1",
|
||||||
|
"configuration": {},
|
||||||
|
"links": {"sensor": 525993},
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue