mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-16 07:33:16 +00:00
fix(backups): fix wrong typing in autobackups
This commit is contained in:
parent
fc60d55994
commit
aa3dc5fb05
|
@ -72,14 +72,26 @@ def restore_snapshot(
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
@huey.periodic_task(validate_datetime=validate_datetime)
|
def do_autobackup():
|
||||||
def automatic_backup():
|
|
||||||
"""
|
"""
|
||||||
The worker periodic task that starts the automatic backup process.
|
Body of autobackup task, broken out to test it
|
||||||
|
For some reason, we cannot launch periodic huey tasks
|
||||||
|
inside tests
|
||||||
"""
|
"""
|
||||||
time = datetime.utcnow().replace(tzinfo=timezone.utc)
|
time = datetime.utcnow().replace(tzinfo=timezone.utc)
|
||||||
for service in Backups.services_to_back_up(time):
|
for service in Backups.services_to_back_up(time):
|
||||||
start_backup(service, BackupReason.AUTO)
|
handle = start_backup(service.get_id(), BackupReason.AUTO)
|
||||||
|
# To be on safe side, we do not do it in parallel
|
||||||
|
handle(blocking=True)
|
||||||
|
|
||||||
|
|
||||||
|
@huey.periodic_task(validate_datetime=validate_datetime)
|
||||||
|
def automatic_backup() -> bool:
|
||||||
|
"""
|
||||||
|
The worker periodic task that starts the automatic backup process.
|
||||||
|
"""
|
||||||
|
do_autobackup()
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
@huey.periodic_task(crontab(hour="*/" + str(SNAPSHOT_CACHE_TTL_HOURS)))
|
@huey.periodic_task(crontab(hour="*/" + str(SNAPSHOT_CACHE_TTL_HOURS)))
|
||||||
|
|
|
@ -14,9 +14,12 @@ from selfprivacy_api.graphql.common_types.backup import (
|
||||||
from selfprivacy_api.backup import Backups, Snapshot
|
from selfprivacy_api.backup import Backups, Snapshot
|
||||||
from selfprivacy_api.backup.tasks import (
|
from selfprivacy_api.backup.tasks import (
|
||||||
prune_autobackup_snapshots,
|
prune_autobackup_snapshots,
|
||||||
|
automatic_backup,
|
||||||
|
do_autobackup,
|
||||||
)
|
)
|
||||||
|
|
||||||
from tests.test_backup import backups
|
from tests.test_backup import backups
|
||||||
|
from tests.test_graphql.test_services import only_dummy_service
|
||||||
|
|
||||||
|
|
||||||
def backuppable_services() -> list[Service]:
|
def backuppable_services() -> list[Service]:
|
||||||
|
@ -63,6 +66,29 @@ def test_set_autobackup_period(backups):
|
||||||
assert Backups.autobackup_period_minutes() is None
|
assert Backups.autobackup_period_minutes() is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_autobackup_taskbody(backups, only_dummy_service):
|
||||||
|
# We cannot test the timed task itself, but we reduced it
|
||||||
|
# to one line, and we test this line here
|
||||||
|
dummy_service = only_dummy_service
|
||||||
|
now = datetime.now(timezone.utc)
|
||||||
|
backup_period = 13 # minutes
|
||||||
|
|
||||||
|
assert Backups.get_all_snapshots() == []
|
||||||
|
|
||||||
|
Backups.set_autobackup_period_minutes(backup_period)
|
||||||
|
assert Backups.is_time_to_backup_service(dummy_service, now)
|
||||||
|
assert Backups.is_time_to_backup(now)
|
||||||
|
assert dummy_service in Backups.services_to_back_up(now)
|
||||||
|
assert len(Backups.services_to_back_up(now)) == 1
|
||||||
|
|
||||||
|
do_autobackup()
|
||||||
|
|
||||||
|
snapshots = Backups.get_all_snapshots()
|
||||||
|
assert len(snapshots) == 1
|
||||||
|
assert snapshots[0].service_name == dummy_service.get_id()
|
||||||
|
assert snapshots[0].reason == BackupReason.AUTO
|
||||||
|
|
||||||
|
|
||||||
def test_autobackup_timer_periods(backups, dummy_service):
|
def test_autobackup_timer_periods(backups, dummy_service):
|
||||||
now = datetime.now(timezone.utc)
|
now = datetime.now(timezone.utc)
|
||||||
backup_period = 13 # minutes
|
backup_period = 13 # minutes
|
||||||
|
|
Loading…
Reference in a new issue