mirror of
https://github.com/home-assistant/core.git
synced 2026-04-17 23:53:49 +01:00
Co-authored-by: Joostlek <joostlek@outlook.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
65 lines
1.7 KiB
Python
65 lines
1.7 KiB
Python
"""Fixtures for Rituals Perfume Genie tests."""
|
|
|
|
from collections.abc import Generator
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.rituals_perfume_genie import ACCOUNT_HASH, DOMAIN
|
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
|
|
|
|
from .const import TEST_EMAIL, TEST_PASSWORD
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_setup_entry() -> Generator[AsyncMock]:
|
|
"""Override async_setup_entry."""
|
|
with patch(
|
|
"homeassistant.components.rituals_perfume_genie.async_setup_entry",
|
|
return_value=True,
|
|
) as mock:
|
|
yield mock
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_rituals_account() -> Generator[AsyncMock]:
|
|
"""Mock Rituals Account."""
|
|
with (
|
|
patch(
|
|
"homeassistant.components.rituals_perfume_genie.config_flow.Account",
|
|
autospec=True,
|
|
) as mock_account_cls,
|
|
patch(
|
|
"homeassistant.components.rituals_perfume_genie.Account",
|
|
new=mock_account_cls,
|
|
),
|
|
):
|
|
mock_account = mock_account_cls.return_value
|
|
yield mock_account
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_config_entry() -> MockConfigEntry:
|
|
"""Mock Rituals Account."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
unique_id=TEST_EMAIL,
|
|
data={CONF_EMAIL: TEST_EMAIL, CONF_PASSWORD: TEST_PASSWORD},
|
|
title=TEST_EMAIL,
|
|
version=2,
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def old_mock_config_entry() -> MockConfigEntry:
|
|
"""Mock Rituals Account."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
unique_id=TEST_EMAIL,
|
|
data={ACCOUNT_HASH: "old_hash_should_be_removed"},
|
|
title=TEST_EMAIL,
|
|
version=1,
|
|
)
|