65 lines
1.9 KiB
Python
65 lines
1.9 KiB
Python
"""Test cloud subscription functions."""
|
|
|
|
from unittest.mock import AsyncMock, Mock
|
|
|
|
from hass_nabucasa import Cloud, payments_api
|
|
import pytest
|
|
|
|
from homeassistant.components.cloud.subscription import (
|
|
async_migrate_paypal_agreement,
|
|
async_subscription_info,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from tests.test_util.aiohttp import AiohttpClientMocker
|
|
|
|
|
|
@pytest.fixture(name="mocked_cloud")
|
|
async def mocked_cloud_object(hass: HomeAssistant) -> Cloud:
|
|
"""Mock cloud object."""
|
|
return Mock(
|
|
accounts_server="accounts.nabucasa.com",
|
|
auth=Mock(async_check_token=AsyncMock()),
|
|
websession=async_get_clientsession(hass),
|
|
payments=Mock(
|
|
spec=payments_api.PaymentsApi,
|
|
subscription_info=AsyncMock(),
|
|
),
|
|
)
|
|
|
|
|
|
async def test_fetching_subscription_with_timeout_error(
|
|
aioclient_mock: AiohttpClientMocker,
|
|
caplog: pytest.LogCaptureFixture,
|
|
mocked_cloud: Cloud,
|
|
) -> None:
|
|
"""Test that we handle timeout error."""
|
|
mocked_cloud.payments.subscription_info.side_effect = payments_api.PaymentsApiError(
|
|
"Timeout reached while calling API"
|
|
)
|
|
|
|
assert await async_subscription_info(mocked_cloud) is None
|
|
assert (
|
|
"Failed to fetch subscription information - Timeout reached while calling API"
|
|
in caplog.text
|
|
)
|
|
|
|
|
|
async def test_migrate_paypal_agreement_with_timeout_error(
|
|
aioclient_mock: AiohttpClientMocker,
|
|
caplog: pytest.LogCaptureFixture,
|
|
mocked_cloud: Cloud,
|
|
) -> None:
|
|
"""Test that we handle timeout error."""
|
|
aioclient_mock.post(
|
|
"https://accounts.nabucasa.com/payments/migrate_paypal_agreement",
|
|
exc=TimeoutError(),
|
|
)
|
|
|
|
assert await async_migrate_paypal_agreement(mocked_cloud) is None
|
|
assert (
|
|
"A timeout of 10 was reached while trying to start agreement migration"
|
|
in caplog.text
|
|
)
|