81 lines
2.2 KiB
Python
81 lines
2.2 KiB
Python
"""PyTest fixtures and test helpers."""
|
|
|
|
from collections.abc import Generator
|
|
import time
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.application_credentials import (
|
|
ClientCredential,
|
|
async_import_client_credential,
|
|
)
|
|
from homeassistant.components.google_drive.const import DOMAIN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
CLIENT_ID = "1234"
|
|
CLIENT_SECRET = "5678"
|
|
HA_UUID = "0a123c"
|
|
TEST_AGENT_ID = "google_drive.testuser_domain_com"
|
|
TEST_USER_EMAIL = "testuser@domain.com"
|
|
CONFIG_ENTRY_TITLE = "Google Drive entry title"
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
async def setup_credentials(hass: HomeAssistant) -> None:
|
|
"""Fixture to setup credentials."""
|
|
assert await async_setup_component(hass, "application_credentials", {})
|
|
await async_import_client_credential(
|
|
hass,
|
|
DOMAIN,
|
|
ClientCredential(CLIENT_ID, CLIENT_SECRET),
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_api() -> Generator[MagicMock]:
|
|
"""Return a mocked GoogleDriveApi."""
|
|
with patch(
|
|
"homeassistant.components.google_drive.api.GoogleDriveApi"
|
|
) as mock_api_cl:
|
|
mock_api = mock_api_cl.return_value
|
|
yield mock_api
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_instance_id() -> Generator[AsyncMock]:
|
|
"""Mock instance_id."""
|
|
with patch(
|
|
"homeassistant.components.google_drive.config_flow.instance_id.async_get",
|
|
return_value=HA_UUID,
|
|
):
|
|
yield
|
|
|
|
|
|
@pytest.fixture(name="expires_at")
|
|
def mock_expires_at() -> int:
|
|
"""Fixture to set the oauth token expiration time."""
|
|
return time.time() + 3600
|
|
|
|
|
|
@pytest.fixture(name="config_entry")
|
|
def mock_config_entry(expires_at: int) -> MockConfigEntry:
|
|
"""Fixture for MockConfigEntry."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
unique_id=TEST_USER_EMAIL,
|
|
title=CONFIG_ENTRY_TITLE,
|
|
data={
|
|
"auth_implementation": DOMAIN,
|
|
"token": {
|
|
"access_token": "mock-access-token",
|
|
"refresh_token": "mock-refresh-token",
|
|
"expires_at": expires_at,
|
|
"scope": "https://www.googleapis.com/auth/drive.file",
|
|
},
|
|
},
|
|
)
|