selfprivacy-rest-api/tests/test_graphql/test_nix_collect_garbage.py

242 lines
6.7 KiB
Python
Raw Normal View History

# pylint: disable=redefined-outer-name
# pylint: disable=unused-argument
# pylint: disable=missing-function-docstring
import pytest
2022-12-27 00:15:02 +00:00
import strawberry
2023-04-05 10:49:56 +00:00
from selfprivacy_api.jobs import JobStatus, Jobs
from selfprivacy_api.graphql import schema
2022-12-27 00:15:02 +00:00
# from selfprivacy_api.graphql.schema import Subscription
# from selfprivacy_api.jobs.nix_collect_garbage import (
# get_dead_packages,
# nix_collect_garbage,
# parse_line,
# CLEAR_COMPLETED,
# COMPLETED_WITH_ERROR,
# stream_process,
# RESULT_WAS_NOT_FOUND_ERROR,
# )
2023-06-18 04:37:27 +00:00
pytest_plugins = ("pytest_asyncio",)
2023-04-05 10:49:56 +00:00
OUTPUT_PRINT_DEAD = """
finding garbage collector roots...
determining live/dead paths...
/nix/store/02k8pmw00p7p7mf2dg3n057771w7liia-python3.10-cchardet-2.1.7
/nix/store/03vc6dznx8njbvyd3gfhfa4n5j4lvhbl-python3.10-async-timeout-4.0.2
/nix/store/03ybv2dvfk7c3cpb527y5kzf6i35ch41-python3.10-pycparser-2.21
/nix/store/04dn9slfqwhqisn1j3jv531lms9w5wlj-python3.10-hypothesis-6.50.1.drv
/nix/store/04hhx2z1iyi3b48hxykiw1g03lp46jk7-python-remove-bin-bytecode-hook
"""
2023-04-05 10:49:56 +00:00
OUTPUT_COLLECT_GARBAGE = """
removing old generations of profile /nix/var/nix/profiles/per-user/def/channels
finding garbage collector roots...
deleting garbage...
deleting '/nix/store/02k8pmw00p7p7mf2dg3n057771w7liia-python3.10-cchardet-2.1.7'
deleting '/nix/store/03vc6dznx8njbvyd3gfhfa4n5j4lvhbl-python3.10-async-timeout-4.0.2'
deleting '/nix/store/03ybv2dvfk7c3cpb527y5kzf6i35ch41-python3.10-pycparser-2.21'
deleting '/nix/store/04dn9slfqwhqisn1j3jv531lms9w5wlj-python3.10-hypothesis-6.50.1.drv'
deleting '/nix/store/04hhx2z1iyi3b48hxykiw1g03lp46jk7-python-remove-bin-bytecode-hook'
deleting unused links...
note: currently hard linking saves -0.00 MiB
190 store paths deleted, 425.51 MiB freed
"""
2023-04-12 00:59:40 +00:00
OUTPUT_COLLECT_GARBAGE_ZERO_TRASH = """
removing old generations of profile /nix/var/nix/profiles/per-user/def/profile
removing old generations of profile /nix/var/nix/profiles/per-user/def/channels
finding garbage collector roots...
deleting garbage...
deleting unused links...
note: currently hard linking saves 0.00 MiB
0 store paths deleted, 0.00 MiB freed
"""
OUTPUT_RUN_NIX_STORE_PRINT_DEAD_ZERO_TRASH = """
finding garbage collector roots...
determining live/dead paths...
"""
2023-04-05 10:49:56 +00:00
log_event = []
def set_job_status(status="", progress="", status_text="", result=""):
log_event.append((status, progress, status_text, result))
2023-04-12 00:59:40 +00:00
@pytest.fixture
def mock_run_nix_store_print_dead_zero_trash(mocker):
mock = mocker.patch(
"selfprivacy_api.jobs.nix_collect_garbage.run_nix_store_print_dead",
autospec=True,
return_value=OUTPUT_RUN_NIX_STORE_PRINT_DEAD_ZERO_TRASH.split("\n"),
)
2023-04-05 10:49:56 +00:00
@pytest.fixture
def mock_set_job_status(mocker):
mock = mocker.patch(
"selfprivacy_api.jobs.nix_collect_garbage.set_job_status_wrapper",
autospec=True,
return_value=set_job_status,
)
return mock
@pytest.fixture
def mock_run_nix_collect_garbage(mocker):
mock = mocker.patch(
"selfprivacy_api.jobs.nix_collect_garbage.run_nix_collect_garbage",
autospec=True,
return_value=OUTPUT_COLLECT_GARBAGE.split("\n"),
)
return mock
2023-04-12 00:59:40 +00:00
@pytest.fixture
def mock_run_nix_collect_garbage_zero_trash(mocker):
mock = mocker.patch(
"selfprivacy_api.jobs.nix_collect_garbage.run_nix_collect_garbage",
autospec=True,
return_value=OUTPUT_COLLECT_GARBAGE_ZERO_TRASH.split("\n"),
)
return mock
2023-04-05 10:49:56 +00:00
@pytest.fixture
def mock_run_nix_store_print_dead(mocker):
mock = mocker.patch(
"selfprivacy_api.jobs.nix_collect_garbage.run_nix_store_print_dead",
autospec=True,
return_value="",
)
return mock
@pytest.fixture
def job_reset():
Jobs.reset()
# ---
def test_parse_line(job_reset):
txt = "190 store paths deleted, 425.51 MiB freed"
output = (
JobStatus.FINISHED,
100,
CLEAR_COMPLETED,
"425.51 MiB have been cleared",
)
assert parse_line(txt) == output
2023-04-05 10:49:56 +00:00
def test_parse_line_with_blank_line(job_reset):
txt = ""
output = (
JobStatus.FINISHED,
100,
COMPLETED_WITH_ERROR,
2022-12-27 00:15:02 +00:00
RESULT_WAS_NOT_FOUND_ERROR,
)
assert parse_line(txt) == output
2023-04-12 00:59:40 +00:00
def test_get_dead_packages(job_reset):
2023-04-05 10:49:56 +00:00
assert get_dead_packages(OUTPUT_PRINT_DEAD) == (5, 20.0)
2023-04-05 10:49:56 +00:00
def test_get_dead_packages_zero(job_reset):
assert get_dead_packages("") == (0, None)
2023-04-12 00:59:40 +00:00
def test_stream_process(job_reset):
log_event = []
reference = [
2023-06-30 16:51:06 +00:00
(JobStatus.RUNNING, 20, "Cleaning...", ""),
(JobStatus.RUNNING, 40, "Cleaning...", ""),
(JobStatus.RUNNING, 60, "Cleaning...", ""),
(JobStatus.RUNNING, 80, "Cleaning...", ""),
(JobStatus.RUNNING, 100, "Cleaning...", ""),
(
JobStatus.FINISHED,
100,
2023-06-30 16:51:06 +00:00
"Cleaning completed.",
"425.51 MiB have been cleared",
),
]
def set_job_status(status, progress, status_text, result=""):
log_event.append((status, progress, status_text, result))
2023-04-05 10:49:56 +00:00
stream_process(OUTPUT_COLLECT_GARBAGE.split("\n"), 5, set_job_status)
assert log_event == reference
2023-04-05 10:49:56 +00:00
def test_nix_collect_garbage(
mock_set_job_status, mock_run_nix_collect_garbage, job_reset
):
log_event = []
reference = [
2023-06-30 16:51:06 +00:00
(JobStatus.RUNNING, 0, "Calculate the number of dead packages...", ""),
2023-04-05 10:49:56 +00:00
(JobStatus.RUNNING, 0, "Found 5 packages to remove!", ""),
2023-06-30 16:51:06 +00:00
(JobStatus.RUNNING, 5, "Cleaning...", ""),
(JobStatus.RUNNING, 10, "Cleaning...", ""),
(JobStatus.RUNNING, 15, "Cleaning...", ""),
(JobStatus.RUNNING, 20, "Cleaning...", ""),
(JobStatus.RUNNING, 25, "Cleaning...", ""),
2023-04-05 10:49:56 +00:00
(
JobStatus.FINISHED,
100,
2023-06-30 16:51:06 +00:00
"Cleaning completed.",
2023-04-05 10:49:56 +00:00
"425.51 MiB have been cleared",
),
]
2023-04-05 10:49:56 +00:00
nix_collect_garbage(None)
assert log_event == reference
2023-04-05 10:49:56 +00:00
def test_nix_collect_garbage_zero_trash(
mock_set_job_status,
2023-04-12 00:59:40 +00:00
mock_run_nix_collect_garbage_zero_trash,
2023-04-05 10:49:56 +00:00
mock_run_nix_store_print_dead,
job_reset,
2023-04-12 00:59:40 +00:00
mock_run_nix_store_print_dead_zero_trash,
2023-04-05 10:49:56 +00:00
):
reference = [
2023-06-30 16:51:06 +00:00
(JobStatus.RUNNING, 0, "Calculate the number of dead packages...", ""),
(JobStatus.FINISHED, 100, "Nothing to clear", "System is clear"),
]
2023-04-05 10:49:56 +00:00
nix_collect_garbage(None)
assert log_event == reference
2022-12-27 00:15:02 +00:00
2023-04-05 10:49:56 +00:00
2023-06-30 16:51:06 +00:00
# андр конcтракнш
2022-12-27 00:15:02 +00:00
@pytest.mark.asyncio
async def test_graphql_nix_collect_garbage():
query = """
subscription {
nixCollectGarbage()
}
"""
schema_for_garbage = strawberry.Schema(
query=schema.Query, mutation=schema.Mutation, subscription=schema.Subscription
)
sub = await schema_for_garbage.subscribe(query)
2023-03-23 17:49:30 +00:00
async for result in sub:
2022-12-27 00:15:02 +00:00
assert not result.errors
assert result.data == {}