"""Tests for the diagnostics data provided by the Google Weather integration.""" from unittest.mock import AsyncMock from freezegun import freeze_time import pytest from syrupy.assertion import SnapshotAssertion from syrupy.filters import props from homeassistant.core import HomeAssistant from tests.common import MockConfigEntry from tests.components.diagnostics import get_diagnostics_for_config_entry from tests.typing import ClientSessionGenerator @pytest.fixture(autouse=True) def freeze_the_time(): """Freeze the time.""" with freeze_time("2026-03-20 21:22:23", tz_offset=0): yield async def test_diagnostics( hass: HomeAssistant, hass_client: ClientSessionGenerator, mock_config_entry: MockConfigEntry, mock_google_weather_api: AsyncMock, snapshot: SnapshotAssertion, ) -> None: """Test diagnostics.""" await hass.config_entries.async_setup(mock_config_entry.entry_id) await hass.async_block_till_done() assert await get_diagnostics_for_config_entry( hass, hass_client, mock_config_entry ) == snapshot(exclude=props("entry_id"))