Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: add move_files test #20

Merged
merged 8 commits into from
Jul 26, 2024
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 49 additions & 1 deletion tests/decryption/test_decrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
from crypt4gh.keys import get_private_key as get_sk_bytes, get_public_key as get_pk_bytes
import pytest

from crypt4gh_middleware.decrypt import get_private_keys, decrypt_files
from crypt4gh_middleware.decrypt import (
get_private_keys,
decrypt_files,
move_files
)

INPUT_DIR = Path(__file__).parents[2]/"inputs"
INPUT_TEXT = "hello world from the input!"
Expand Down Expand Up @@ -97,3 +101,47 @@ def file_contents_are_valid():
assert files_exist()

assert file_contents_are_valid()


class TestMoveFiles:
"""Test move_files."""

@pytest.fixture()
def files(self, tmp_path):
uniqueg marked this conversation as resolved.
Show resolved Hide resolved
"""Returns list of input file paths."""
files = [INPUT_DIR/"hello.txt", INPUT_DIR/"hello.c4gh", INPUT_DIR/"alice.sec"]
temp_files = [tmp_path/file.name for file in files]
for src, dest in zip(files, temp_files):
shutil.copy(src, dest)
return temp_files

def test_empty_list(self, tmp_path):
athith-g marked this conversation as resolved.
Show resolved Hide resolved
"""Test that no error is thrown with an empty list."""
move_files(file_paths=[], output_dir=tmp_path)
assert not any(tmp_path.iterdir())

def test_move_files(self, files, tmp_path):
athith-g marked this conversation as resolved.
Show resolved Hide resolved
"""Test that a list of unique files are moved successfully."""
dest = tmp_path/"new_location"
dest.mkdir()
move_files(file_paths=files, output_dir=dest)
assert not any(file.exists() for file in files)
assert all((dest/file.name).exists() for file in files)

def test_duplicate_file_names(self, tmp_path):
athith-g marked this conversation as resolved.
Show resolved Hide resolved
"""Test that a value error is raised when a duplicate file name is present."""
with pytest.raises(ValueError):
move_files(file_paths=[INPUT_DIR/"hello.txt"]*2, output_dir=tmp_path)

def test_dir_does_not_exist(self, files):
athith-g marked this conversation as resolved.
Show resolved Hide resolved
"""Test that a file not found error is raised with a non-existent directory."""
with pytest.raises(FileNotFoundError):
move_files(file_paths=files, output_dir=INPUT_DIR/"bad_dir")

def test_permission_error(self, tmp_path):
"""Test that a permission error is raised when the output directory is not writable."""
output_dir = tmp_path/"forbidden_dir"
output_dir.mkdir()
output_dir.chmod(0o400)
with pytest.raises(PermissionError):
move_files(file_paths=[INPUT_DIR/"hello.txt"], output_dir=output_dir)