24 lines
759 B
Python
24 lines
759 B
Python
|
"""Tests for the diagnostics data provided by the YouTube integration."""
|
||
|
from syrupy import SnapshotAssertion
|
||
|
|
||
|
from homeassistant.components.youtube.const import DOMAIN
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
|
||
|
from .conftest import ComponentSetup
|
||
|
|
||
|
from tests.components.diagnostics import get_diagnostics_for_config_entry
|
||
|
from tests.typing import ClientSessionGenerator
|
||
|
|
||
|
|
||
|
async def test_diagnostics(
|
||
|
hass: HomeAssistant,
|
||
|
hass_client: ClientSessionGenerator,
|
||
|
setup_integration: ComponentSetup,
|
||
|
snapshot: SnapshotAssertion,
|
||
|
) -> None:
|
||
|
"""Test diagnostics."""
|
||
|
await setup_integration()
|
||
|
entry = hass.config_entries.async_entries(DOMAIN)[0]
|
||
|
|
||
|
assert await get_diagnostics_for_config_entry(hass, hass_client, entry) == snapshot
|