mirror of https://github.com/home-assistant/core
35 lines
959 B
Python
35 lines
959 B
Python
"""Test version diagnostics."""
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .common import MOCK_VERSION, setup_version_integration
|
|
|
|
from tests.components.diagnostics import get_diagnostics_for_config_entry
|
|
from tests.typing import ClientSessionGenerator
|
|
|
|
|
|
async def test_diagnostics(
|
|
hass: HomeAssistant,
|
|
hass_client: ClientSessionGenerator,
|
|
) -> None:
|
|
"""Test diagnostic information."""
|
|
config_entry = await setup_version_integration(hass)
|
|
|
|
diagnostics = await get_diagnostics_for_config_entry(
|
|
hass, hass_client, config_entry
|
|
)
|
|
assert diagnostics["entry"]["data"] == {
|
|
"name": "",
|
|
"channel": "stable",
|
|
"image": "default",
|
|
"board": "OVA",
|
|
"version_source": "Local installation",
|
|
"source": "local",
|
|
}
|
|
|
|
assert diagnostics["coordinator_data"] == {
|
|
"version": MOCK_VERSION,
|
|
"version_data": None,
|
|
}
|
|
assert len(diagnostics["devices"]) == 1
|