mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-13 22:23:16 +00:00
7935de0fe1
Co-authored-by: inexcode <inex.code@selfprivacy.org> Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api/pulls/13
51 lines
1.1 KiB
Python
51 lines
1.1 KiB
Python
# pylint: disable=redefined-outer-name
|
|
# pylint: disable=unused-argument
|
|
import json
|
|
import pytest
|
|
|
|
from selfprivacy_api.utils import WriteUserData, ReadUserData
|
|
from selfprivacy_api.jobs import Jobs, JobStatus
|
|
|
|
|
|
def test_jobs(authorized_client, jobs_file, shared_datadir):
|
|
jobs = Jobs()
|
|
assert jobs.get_jobs() == []
|
|
|
|
test_job = jobs.add(
|
|
type_id="test",
|
|
name="Test job",
|
|
description="This is a test job.",
|
|
status=JobStatus.CREATED,
|
|
status_text="Status text",
|
|
progress=0,
|
|
)
|
|
|
|
assert jobs.get_jobs() == [test_job]
|
|
|
|
jobs.update(
|
|
job=test_job,
|
|
status=JobStatus.RUNNING,
|
|
status_text="Status text",
|
|
progress=50,
|
|
)
|
|
|
|
assert jobs.get_jobs() == [test_job]
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_subprocess_run(mocker):
|
|
mock = mocker.patch("subprocess.run", autospec=True)
|
|
return mock
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_shutil_move(mocker):
|
|
mock = mocker.patch("shutil.move", autospec=True)
|
|
return mock
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_shutil_chown(mocker):
|
|
mock = mocker.patch("shutil.chown", autospec=True)
|
|
return mock
|