* Allow setting password for backups * use is_hassio from helpers * move it * Fix getting psw * Fix restoring with psw * Address review comments * Improve docstring * Adjust kitchen sink * Adjust --------- Co-authored-by: Erik <erik@montnemery.com>
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
"""Tests for the Backup integration."""
|
|
|
|
from typing import Any
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.backup.const import DOMAIN
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .common import setup_backup_integration
|
|
|
|
|
|
async def test_setup_with_hassio(
|
|
hass: HomeAssistant,
|
|
caplog: pytest.LogCaptureFixture,
|
|
) -> None:
|
|
"""Test the setup of the integration with hassio enabled."""
|
|
assert await setup_backup_integration(
|
|
hass=hass,
|
|
with_hassio=True,
|
|
configuration={DOMAIN: {}},
|
|
)
|
|
assert (
|
|
"The backup integration is not supported on this installation method, please"
|
|
" remove it from your configuration"
|
|
) in caplog.text
|
|
|
|
|
|
@pytest.mark.parametrize("service_data", [None, {}, {"password": "abc123"}])
|
|
async def test_create_service(
|
|
hass: HomeAssistant,
|
|
service_data: dict[str, Any] | None,
|
|
) -> None:
|
|
"""Test generate backup."""
|
|
await setup_backup_integration(hass)
|
|
|
|
with patch(
|
|
"homeassistant.components.backup.manager.BackupManager.async_create_backup",
|
|
) as generate_backup:
|
|
await hass.services.async_call(
|
|
DOMAIN,
|
|
"create",
|
|
blocking=True,
|
|
service_data=service_data,
|
|
)
|
|
|
|
assert generate_backup.called
|