2023-06-16 13:43:41 +00:00
|
|
|
from os import path
|
2023-12-04 15:35:50 +00:00
|
|
|
from tests.test_backup import backups
|
2023-06-14 11:14:52 +00:00
|
|
|
from tests.common import generate_backup_query
|
2023-06-14 10:09:38 +00:00
|
|
|
|
2023-06-14 12:08:07 +00:00
|
|
|
|
|
|
|
from selfprivacy_api.graphql.common_types.service import service_to_graphql_service
|
2023-08-30 09:03:19 +00:00
|
|
|
from selfprivacy_api.graphql.common_types.backup import (
|
|
|
|
_AutobackupQuotas,
|
|
|
|
AutobackupQuotas,
|
|
|
|
)
|
2023-06-14 10:09:38 +00:00
|
|
|
from selfprivacy_api.jobs import Jobs, JobStatus
|
|
|
|
|
2023-06-19 14:12:40 +00:00
|
|
|
API_RELOAD_SNAPSHOTS = """
|
|
|
|
mutation TestSnapshotsReload {
|
2023-06-21 03:46:56 +00:00
|
|
|
backup {
|
2023-06-19 14:12:40 +00:00
|
|
|
forceSnapshotsReload {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
|
|
|
}
|
2023-06-21 03:46:56 +00:00
|
|
|
}
|
2023-06-19 14:12:40 +00:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2023-06-19 13:28:02 +00:00
|
|
|
API_SET_AUTOBACKUP_PERIOD_MUTATION = """
|
|
|
|
mutation TestAutobackupPeriod($period: Int) {
|
2023-06-21 03:46:56 +00:00
|
|
|
backup {
|
2023-06-19 13:28:02 +00:00
|
|
|
setAutobackupPeriod(period: $period) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
2023-06-21 03:46:56 +00:00
|
|
|
configuration {
|
2023-06-19 13:28:02 +00:00
|
|
|
provider
|
|
|
|
encryptionKey
|
|
|
|
isInitialized
|
|
|
|
autobackupPeriod
|
|
|
|
locationName
|
|
|
|
locationId
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 03:46:56 +00:00
|
|
|
}
|
2023-06-19 13:28:02 +00:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2023-08-28 18:24:29 +00:00
|
|
|
|
|
|
|
API_SET_AUTOBACKUP_QUOTAS_MUTATION = """
|
2023-08-30 09:03:19 +00:00
|
|
|
mutation TestAutobackupQuotas($input: AutobackupQuotasInput!) {
|
2023-08-28 18:24:29 +00:00
|
|
|
backup {
|
|
|
|
setAutobackupQuotas(quotas: $input) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
|
|
|
configuration {
|
|
|
|
provider
|
|
|
|
encryptionKey
|
|
|
|
isInitialized
|
|
|
|
autobackupPeriod
|
|
|
|
locationName
|
|
|
|
locationId
|
2023-08-30 09:03:19 +00:00
|
|
|
autobackupQuotas {
|
2023-09-09 00:26:41 +00:00
|
|
|
last
|
2023-08-30 09:03:19 +00:00
|
|
|
daily
|
|
|
|
weekly
|
|
|
|
monthly
|
|
|
|
yearly
|
|
|
|
}
|
2023-08-28 18:24:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2023-06-16 14:33:48 +00:00
|
|
|
API_REMOVE_REPOSITORY_MUTATION = """
|
|
|
|
mutation TestRemoveRepo {
|
2023-06-21 03:46:56 +00:00
|
|
|
backup {
|
2023-06-16 14:33:48 +00:00
|
|
|
removeRepository {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
2023-06-21 03:46:56 +00:00
|
|
|
configuration {
|
2023-06-16 14:33:48 +00:00
|
|
|
provider
|
|
|
|
encryptionKey
|
|
|
|
isInitialized
|
|
|
|
autobackupPeriod
|
|
|
|
locationName
|
|
|
|
locationId
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 03:46:56 +00:00
|
|
|
}
|
2023-06-16 14:33:48 +00:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2023-06-16 13:43:41 +00:00
|
|
|
API_INIT_MUTATION = """
|
|
|
|
mutation TestInitRepo($input: InitializeRepositoryInput!) {
|
2023-06-21 03:46:56 +00:00
|
|
|
backup {
|
2023-06-16 13:43:41 +00:00
|
|
|
initializeRepository(repository: $input) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
2023-06-21 03:46:56 +00:00
|
|
|
configuration {
|
2023-06-16 13:43:41 +00:00
|
|
|
provider
|
|
|
|
encryptionKey
|
|
|
|
isInitialized
|
|
|
|
autobackupPeriod
|
|
|
|
locationName
|
|
|
|
locationId
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 03:46:56 +00:00
|
|
|
}
|
2023-06-16 13:43:41 +00:00
|
|
|
}
|
|
|
|
"""
|
2023-06-14 13:00:23 +00:00
|
|
|
|
|
|
|
API_RESTORE_MUTATION = """
|
|
|
|
mutation TestRestoreService($snapshot_id: String!) {
|
2023-06-21 03:46:56 +00:00
|
|
|
backup {
|
2023-06-14 13:00:23 +00:00
|
|
|
restoreBackup(snapshotId: $snapshot_id) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
2023-06-21 03:46:56 +00:00
|
|
|
job {
|
2023-06-14 13:00:23 +00:00
|
|
|
uid
|
|
|
|
status
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 03:46:56 +00:00
|
|
|
}
|
2023-06-14 13:00:23 +00:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2023-07-28 11:32:48 +00:00
|
|
|
API_FORGET_MUTATION = """
|
|
|
|
mutation TestForgetSnapshot($snapshot_id: String!) {
|
|
|
|
backup {
|
|
|
|
forgetSnapshot(snapshotId: $snapshot_id) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2023-06-14 11:14:52 +00:00
|
|
|
API_SNAPSHOTS_QUERY = """
|
|
|
|
allSnapshots {
|
|
|
|
id
|
|
|
|
service {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
createdAt
|
2023-09-09 06:52:20 +00:00
|
|
|
reason
|
2023-06-14 11:14:52 +00:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2023-06-14 10:09:38 +00:00
|
|
|
API_BACK_UP_MUTATION = """
|
2023-06-14 13:06:32 +00:00
|
|
|
mutation TestBackupService($service_id: String!) {
|
2023-06-21 03:46:56 +00:00
|
|
|
backup {
|
2023-06-14 10:09:38 +00:00
|
|
|
startBackup(serviceId: $service_id) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
2023-06-21 03:46:56 +00:00
|
|
|
job {
|
2023-06-14 10:09:38 +00:00
|
|
|
uid
|
|
|
|
status
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 03:46:56 +00:00
|
|
|
}
|
2023-06-14 10:09:38 +00:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2023-06-14 13:00:23 +00:00
|
|
|
def api_restore(authorized_client, snapshot_id):
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_RESTORE_MUTATION,
|
|
|
|
"variables": {"snapshot_id": snapshot_id},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
2023-06-14 10:09:38 +00:00
|
|
|
def api_backup(authorized_client, service):
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_BACK_UP_MUTATION,
|
|
|
|
"variables": {"service_id": service.get_id()},
|
|
|
|
},
|
2023-06-14 12:41:45 +00:00
|
|
|
)
|
2023-06-14 10:09:38 +00:00
|
|
|
return response
|
|
|
|
|
|
|
|
|
2023-07-28 11:32:48 +00:00
|
|
|
def api_forget(authorized_client, snapshot_id):
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_FORGET_MUTATION,
|
|
|
|
"variables": {"snapshot_id": snapshot_id},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
2023-06-19 13:28:02 +00:00
|
|
|
def api_set_period(authorized_client, period):
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_SET_AUTOBACKUP_PERIOD_MUTATION,
|
|
|
|
"variables": {"period": period},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
2023-08-30 09:03:19 +00:00
|
|
|
def api_set_quotas(authorized_client, quotas: _AutobackupQuotas):
|
2023-08-28 18:24:29 +00:00
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_SET_AUTOBACKUP_QUOTAS_MUTATION,
|
2023-08-30 09:03:19 +00:00
|
|
|
"variables": {"input": quotas.dict()},
|
2023-08-28 18:24:29 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
2023-06-16 14:33:48 +00:00
|
|
|
def api_remove(authorized_client):
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_REMOVE_REPOSITORY_MUTATION,
|
|
|
|
"variables": {},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
2023-06-19 14:12:40 +00:00
|
|
|
def api_reload_snapshots(authorized_client):
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_RELOAD_SNAPSHOTS,
|
|
|
|
"variables": {},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
2023-06-16 13:43:41 +00:00
|
|
|
def api_init_without_key(
|
|
|
|
authorized_client, kind, login, password, location_name, location_id
|
|
|
|
):
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_INIT_MUTATION,
|
|
|
|
"variables": {
|
|
|
|
"input": {
|
|
|
|
"provider": kind,
|
|
|
|
"locationId": location_id,
|
|
|
|
"locationName": location_name,
|
|
|
|
"login": login,
|
|
|
|
"password": password,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
|
|
|
def assert_ok(data):
|
2023-11-17 14:32:31 +00:00
|
|
|
if data["success"] is False:
|
|
|
|
# convenience for debugging, this should display error
|
|
|
|
# if empty, consider adding helpful messages
|
|
|
|
raise ValueError(data["code"], data["message"])
|
2023-06-16 13:43:41 +00:00
|
|
|
assert data["code"] == 200
|
|
|
|
assert data["success"] is True
|
|
|
|
|
|
|
|
|
2023-06-14 11:14:52 +00:00
|
|
|
def get_data(response):
|
|
|
|
assert response.status_code == 200
|
|
|
|
response = response.json()
|
2023-06-14 11:54:24 +00:00
|
|
|
if (
|
|
|
|
"errors" in response.keys()
|
|
|
|
): # convenience for debugging, this will display error
|
2023-11-22 18:13:07 +00:00
|
|
|
raise ValueError(response["errors"])
|
2023-06-14 11:14:52 +00:00
|
|
|
assert response["data"] is not None
|
|
|
|
data = response["data"]
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
2023-06-14 11:52:57 +00:00
|
|
|
def api_snapshots(authorized_client):
|
2023-06-14 11:14:52 +00:00
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={"query": generate_backup_query([API_SNAPSHOTS_QUERY])},
|
|
|
|
)
|
|
|
|
data = get_data(response)
|
|
|
|
result = data["backup"]["allSnapshots"]
|
|
|
|
assert result is not None
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
2023-06-14 12:08:07 +00:00
|
|
|
def test_dummy_service_convertible_to_gql(dummy_service):
|
|
|
|
gql_service = service_to_graphql_service(dummy_service)
|
|
|
|
assert gql_service is not None
|
|
|
|
|
|
|
|
|
2023-09-20 13:34:44 +00:00
|
|
|
def test_snapshots_empty(authorized_client, dummy_service, backups):
|
2023-06-14 11:52:57 +00:00
|
|
|
snaps = api_snapshots(authorized_client)
|
2023-06-14 11:14:52 +00:00
|
|
|
assert snaps == []
|
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_start_backup(authorized_client, dummy_service, backups):
|
2023-06-14 10:09:38 +00:00
|
|
|
response = api_backup(authorized_client, dummy_service)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["startBackup"]
|
2023-06-14 12:41:45 +00:00
|
|
|
assert data["success"] is True
|
|
|
|
job = data["job"]
|
2023-06-14 12:35:41 +00:00
|
|
|
|
2023-06-14 10:09:38 +00:00
|
|
|
assert Jobs.get_job(job["uid"]).status == JobStatus.FINISHED
|
2023-06-14 12:35:41 +00:00
|
|
|
snaps = api_snapshots(authorized_client)
|
|
|
|
assert len(snaps) == 1
|
|
|
|
snap = snaps[0]
|
2023-06-14 13:00:23 +00:00
|
|
|
|
|
|
|
assert snap["id"] is not None
|
|
|
|
assert snap["id"] != ""
|
2023-06-14 12:35:41 +00:00
|
|
|
assert snap["service"]["id"] == "testservice"
|
2023-06-14 13:00:23 +00:00
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_restore(authorized_client, dummy_service, backups):
|
2023-06-14 13:00:23 +00:00
|
|
|
api_backup(authorized_client, dummy_service)
|
|
|
|
snap = api_snapshots(authorized_client)[0]
|
|
|
|
assert snap["id"] is not None
|
|
|
|
|
|
|
|
response = api_restore(authorized_client, snap["id"])
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["restoreBackup"]
|
2023-06-14 13:00:23 +00:00
|
|
|
assert data["success"] is True
|
|
|
|
job = data["job"]
|
|
|
|
|
|
|
|
assert Jobs.get_job(job["uid"]).status == JobStatus.FINISHED
|
2023-06-16 13:43:41 +00:00
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_reinit(authorized_client, dummy_service, tmpdir, backups):
|
2023-06-16 13:43:41 +00:00
|
|
|
test_repo_path = path.join(tmpdir, "not_at_all_sus")
|
|
|
|
response = api_init_without_key(
|
|
|
|
authorized_client, "FILE", "", "", test_repo_path, ""
|
|
|
|
)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["initializeRepository"]
|
2023-06-16 13:43:41 +00:00
|
|
|
assert_ok(data)
|
|
|
|
configuration = data["configuration"]
|
|
|
|
assert configuration["provider"] == "FILE"
|
|
|
|
assert configuration["locationId"] == ""
|
|
|
|
assert configuration["locationName"] == test_repo_path
|
|
|
|
assert len(configuration["encryptionKey"]) > 1
|
|
|
|
assert configuration["isInitialized"] is True
|
|
|
|
|
|
|
|
response = api_backup(authorized_client, dummy_service)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["startBackup"]
|
2023-06-16 13:43:41 +00:00
|
|
|
assert data["success"] is True
|
|
|
|
job = data["job"]
|
|
|
|
|
|
|
|
assert Jobs.get_job(job["uid"]).status == JobStatus.FINISHED
|
2023-06-16 14:33:48 +00:00
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_remove(authorized_client, generic_userdata, backups):
|
2023-06-16 14:33:48 +00:00
|
|
|
response = api_remove(authorized_client)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["removeRepository"]
|
2023-06-16 14:33:48 +00:00
|
|
|
assert_ok(data)
|
|
|
|
|
|
|
|
configuration = data["configuration"]
|
2023-06-19 11:09:10 +00:00
|
|
|
assert configuration["provider"] == "NONE"
|
2023-06-16 14:33:48 +00:00
|
|
|
assert configuration["locationId"] == ""
|
2023-06-16 15:09:39 +00:00
|
|
|
assert configuration["locationName"] == ""
|
2023-06-16 14:33:48 +00:00
|
|
|
# still generated every time it is missing
|
|
|
|
assert len(configuration["encryptionKey"]) > 1
|
|
|
|
assert configuration["isInitialized"] is False
|
2023-06-19 13:28:02 +00:00
|
|
|
|
2023-09-20 14:28:32 +00:00
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_autobackup_quotas_nonzero(authorized_client, backups):
|
2023-08-30 09:03:19 +00:00
|
|
|
quotas = _AutobackupQuotas(
|
2023-09-09 00:26:41 +00:00
|
|
|
last=3,
|
2023-08-28 18:24:29 +00:00
|
|
|
daily=2,
|
|
|
|
weekly=4,
|
|
|
|
monthly=13,
|
|
|
|
yearly=14,
|
|
|
|
)
|
|
|
|
response = api_set_quotas(authorized_client, quotas)
|
|
|
|
data = get_data(response)["backup"]["setAutobackupQuotas"]
|
|
|
|
assert_ok(data)
|
|
|
|
|
|
|
|
configuration = data["configuration"]
|
|
|
|
assert configuration["autobackupQuotas"] == quotas
|
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_autobackup_period_nonzero(authorized_client, backups):
|
2023-06-19 13:28:02 +00:00
|
|
|
new_period = 11
|
|
|
|
response = api_set_period(authorized_client, new_period)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["setAutobackupPeriod"]
|
2023-06-19 13:28:02 +00:00
|
|
|
assert_ok(data)
|
|
|
|
|
|
|
|
configuration = data["configuration"]
|
|
|
|
assert configuration["autobackupPeriod"] == new_period
|
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_autobackup_period_zero(authorized_client, backups):
|
2023-06-19 13:28:02 +00:00
|
|
|
new_period = 0
|
|
|
|
# since it is none by default, we better first set it to something non-negative
|
|
|
|
response = api_set_period(authorized_client, 11)
|
|
|
|
# and now we nullify it
|
|
|
|
response = api_set_period(authorized_client, new_period)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["setAutobackupPeriod"]
|
2023-06-19 13:28:02 +00:00
|
|
|
assert_ok(data)
|
|
|
|
|
|
|
|
configuration = data["configuration"]
|
|
|
|
assert configuration["autobackupPeriod"] == None
|
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_autobackup_period_none(authorized_client, backups):
|
2023-06-19 13:28:02 +00:00
|
|
|
# since it is none by default, we better first set it to something non-negative
|
|
|
|
response = api_set_period(authorized_client, 11)
|
|
|
|
# and now we nullify it
|
|
|
|
response = api_set_period(authorized_client, None)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["setAutobackupPeriod"]
|
2023-06-19 13:28:02 +00:00
|
|
|
assert_ok(data)
|
|
|
|
|
|
|
|
configuration = data["configuration"]
|
|
|
|
assert configuration["autobackupPeriod"] == None
|
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_autobackup_period_negative(authorized_client, backups):
|
2023-06-19 13:28:02 +00:00
|
|
|
# since it is none by default, we better first set it to something non-negative
|
|
|
|
response = api_set_period(authorized_client, 11)
|
|
|
|
# and now we nullify it
|
|
|
|
response = api_set_period(authorized_client, -12)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["setAutobackupPeriod"]
|
2023-06-19 13:28:02 +00:00
|
|
|
assert_ok(data)
|
|
|
|
|
|
|
|
configuration = data["configuration"]
|
|
|
|
assert configuration["autobackupPeriod"] == None
|
2023-06-19 14:12:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
# We cannot really check the effect at this level, we leave it to backend tests
|
|
|
|
# But we still make it run in both empty and full scenarios and ask for snaps afterwards
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_reload_snapshots_bare_bare_bare(authorized_client, dummy_service, backups):
|
2023-06-19 14:12:40 +00:00
|
|
|
api_remove(authorized_client)
|
|
|
|
|
|
|
|
response = api_reload_snapshots(authorized_client)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["forceSnapshotsReload"]
|
2023-06-19 14:12:40 +00:00
|
|
|
assert_ok(data)
|
|
|
|
|
|
|
|
snaps = api_snapshots(authorized_client)
|
|
|
|
assert snaps == []
|
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_reload_snapshots(authorized_client, dummy_service, backups):
|
2023-06-19 14:12:40 +00:00
|
|
|
response = api_backup(authorized_client, dummy_service)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["startBackup"]
|
2023-06-19 14:12:40 +00:00
|
|
|
|
|
|
|
response = api_reload_snapshots(authorized_client)
|
2023-06-21 03:46:56 +00:00
|
|
|
data = get_data(response)["backup"]["forceSnapshotsReload"]
|
2023-06-19 14:12:40 +00:00
|
|
|
assert_ok(data)
|
|
|
|
|
|
|
|
snaps = api_snapshots(authorized_client)
|
|
|
|
assert len(snaps) == 1
|
2023-07-28 11:32:48 +00:00
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_forget_snapshot(authorized_client, dummy_service, backups):
|
2023-07-28 11:32:48 +00:00
|
|
|
response = api_backup(authorized_client, dummy_service)
|
|
|
|
data = get_data(response)["backup"]["startBackup"]
|
|
|
|
|
|
|
|
snaps = api_snapshots(authorized_client)
|
|
|
|
assert len(snaps) == 1
|
|
|
|
|
|
|
|
response = api_forget(authorized_client, snaps[0]["id"])
|
|
|
|
data = get_data(response)["backup"]["forgetSnapshot"]
|
|
|
|
assert_ok(data)
|
|
|
|
|
|
|
|
snaps = api_snapshots(authorized_client)
|
|
|
|
assert len(snaps) == 0
|
|
|
|
|
|
|
|
|
2023-11-17 14:32:31 +00:00
|
|
|
def test_forget_nonexistent_snapshot(authorized_client, dummy_service, backups):
|
2023-07-28 11:32:48 +00:00
|
|
|
snaps = api_snapshots(authorized_client)
|
|
|
|
assert len(snaps) == 0
|
|
|
|
response = api_forget(authorized_client, "898798uekiodpjoiweoiwuoeirueor")
|
|
|
|
data = get_data(response)["backup"]["forgetSnapshot"]
|
|
|
|
assert data["code"] == 404
|
|
|
|
assert data["success"] is False
|
|
|
|
|
|
|
|
snaps = api_snapshots(authorized_client)
|
|
|
|
assert len(snaps) == 0
|