Add diagnostics for the AirVisual integration (#64479)

* Add diagnostics for AirVisual config entries

* Tests

* More

* Tests

* Code review

* Fix tests
This commit is contained in:
Aaron Bach 2022-01-19 15:28:18 -07:00 committed by GitHub
parent 6b7f625ae3
commit 05b8da11a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 147 additions and 3 deletions

View file

@ -0,0 +1,47 @@
"""Test evil genius labs diagnostics."""
from tests.components.diagnostics import get_diagnostics_for_config_entry
async def test_entry_diagnostics(hass, config_entry, hass_client, setup_airvisual):
"""Test config entry diagnostics."""
assert await get_diagnostics_for_config_entry(hass, hass_client, config_entry) == {
"entry": {
"title": "Mock Title",
"data": {
"api_key": "**REDACTED**",
"integration_type": "Geographical Location by Latitude/Longitude",
"latitude": "**REDACTED**",
"longitude": "**REDACTED**",
},
"options": {
"show_on_map": True,
},
},
"data": {
"city": "**REDACTED**",
"country": "**REDACTED**",
"current": {
"weather": {
"ts": "2021-09-03T21:00:00.000Z",
"tp": 23,
"pr": 999,
"hu": 45,
"ws": 0.45,
"wd": 252,
"ic": "10d",
},
"pollution": {
"ts": "2021-09-04T00:00:00.000Z",
"aqius": 52,
"mainus": "p2",
"aqicn": 18,
"maincn": "p2",
},
},
"location": {
"coordinates": "**REDACTED**",
"type": "Point",
},
"state": "**REDACTED**",
},
}