1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-22 11:28:45 +00:00
Files
supervisor/tests/backups/test_backup.py
Mike Degatano 480b383782 Add background option to backup APIs (#4802)
* Add background option to backup APIs

* Fix decorator tests

* Working error handling, initial test cases

* Change to schedule_job and always return job id

* Add tests

* Reorder call at/later args

* Validation errors return immediately in background

* None is invalid option for background

* Must pop the background option from body
2024-01-22 12:09:15 -05:00

23 lines
736 B
Python

"""Test backups."""
from os import listdir
from pathlib import Path
from supervisor.backups.backup import Backup
from supervisor.backups.const import BackupType
from supervisor.coresys import CoreSys
async def test_new_backup_stays_in_folder(coresys: CoreSys, tmp_path: Path):
"""Test making a new backup operates entirely within folder where backup will be stored."""
backup = Backup(coresys, tmp_path / "my_backup.tar", "test")
backup.new("test", "2023-07-21T21:05:00.000000+00:00", BackupType.FULL)
assert not listdir(tmp_path)
async with backup:
assert len(listdir(tmp_path)) == 1
assert not backup.tarfile.exists()
assert len(listdir(tmp_path)) == 1
assert backup.tarfile.exists()