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 cleanup #27

Merged
merged 5 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
16 changes: 16 additions & 0 deletions src/rcx_tk/process_metadata_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,19 @@ def process_alkane_ri_file(file_path: str, out_path: str) -> None:
df.columns = df.columns.str.strip()
df = df.rename(columns=columns_to_keep)
save_dataframe_as_tsv(df, out_path)


def validate_filename(file_name: str) -> bool:
"""Validate a filename.

Args:
file_name (str): Filename to validate.

Returns:
bool: Validity of the filename.
"""
def is_not_empty(x: str) -> bool:
return x != ''

tokens: list[str] = list(filter(is_not_empty, file_name.split('_')))
return len(tokens) > 1 and tokens[-1].isdigit()
3 changes: 3 additions & 0 deletions tests/test_data/invalid_metadata.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Type Sample Batch
123 test 1
blub 1 last
72 changes: 32 additions & 40 deletions tests/test_process_metadata_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from rcx_tk.process_metadata_file import process_metadata_file
from rcx_tk.process_metadata_file import read_file
from rcx_tk.process_metadata_file import save_dataframe_as_tsv
from rcx_tk.process_metadata_file import validate_filename

__location__: Final[Path] = Path(__file__).parent.resolve()

Expand Down Expand Up @@ -113,6 +114,7 @@ def processed_dataframe() -> pd.DataFrame:
return pd.DataFrame(data=d)



@pytest.fixture
def alkanes() -> pd.DataFrame:
"""Creates a dataframe corresponding to processed alkane file.
Expand Down Expand Up @@ -146,6 +148,7 @@ def test_read_file(file_name: str, dataframe: pd.DataFrame):
file_path = __location__.joinpath("test_data", file_name)
# file_path = os.path.join("tests", "test_data", file_name)
actual = read_file(str(file_path))
# assert
assert actual.equals(dataframe)


Expand All @@ -171,6 +174,7 @@ def test_save_dataframe_as_tsv(dataframe: pd.DataFrame, tmp_path: str):
tmp_path (str): A path where the .TSV will be exported.
"""
out_path = os.path.join(tmp_path, "batch_specification1.tsv")

save_dataframe_as_tsv(dataframe, out_path)
actual = pd.read_csv(out_path, sep="\t")
assert actual.equals(dataframe)
Expand Down Expand Up @@ -198,48 +202,11 @@ def test_process_metadata_file(processed_dataframe: pd.DataFrame, tmp_path: str)
"""
file_path = os.path.join("tests", "test_data", "batch_specification1.csv")
out_path = os.path.join(tmp_path, "processed_batch_specification1.tsv")

process_metadata_file(file_path, out_path)
actual = pd.read_csv(out_path, sep="\t")
assert actual.equals(processed_dataframe)


@pytest.mark.parametrize(
"file_name",
[
"batch_specification1.csv",
"batch_specification1.xlsx",
"batch_specification1.txt",
],
)
def test_read_file_colnames_input(file_name: str, dataframe: pd.DataFrame):
"""Tests whether there are correct columns on the input.

Args:
file_name (str): The name of the metadata file.
dataframe (pd.DataFrame): Expected dataframe.
"""
file_path = __location__.joinpath("test_data", file_name)
# file_path = os.path.join("tests", "test_data", file_name)
actual_df = read_file(str(file_path))
actual = actual_df.columns
expected = dataframe.columns
assert expected.equals(actual)


def test_process_metadata_file_colnames_output(processed_dataframe: pd.DataFrame, tmp_path: str):
"""Tests whether the processed dataframe outputs correct columns.

Args:
processed_dataframe (pd.DataFrame): An expected processed dataframe.
tmp_path (str): A path where the processed dataframe is exported.
"""
file_path = os.path.join("tests", "test_data", "batch_specification1.csv")
out_path = os.path.join(tmp_path, "processed_batch_specification1.tsv")
process_metadata_file(file_path, out_path)
expected = processed_dataframe.columns
actual_df = pd.read_csv(out_path, sep="\t")
actual = actual_df.columns
assert expected.equals(actual)
assert actual.equals(processed_dataframe)


def test_process_alkane_ri_file(alkanes: pd.DataFrame, tmp_path: str):
Expand All @@ -251,6 +218,31 @@ def test_process_alkane_ri_file(alkanes: pd.DataFrame, tmp_path: str):
"""
file_path = os.path.join("tests", "test_data", "Alkane_RI_ATHLETE_1.txt")
out_path = os.path.join(tmp_path, "processed_Alkane_RI_ATHLETE_1.tsv")

process_alkane_ri_file(file_path, out_path)
actual = pd.read_csv(out_path, sep="\t")
actual = pd.read_csv(out_path, sep ="\t")

assert actual.equals(alkanes)


def test_process_metadata_file_raise_columns_missing(tmp_path: str):
"""Test for raising exception if column is missing."""
file_path = os.path.join("tests", "test_data", "invalid_metadata.txt")
out = os.path.join(tmp_path, "res.tsv")

with pytest.raises(Exception) as e:
process_metadata_file(file_path, out)

assert str(e.value) == '"[\'File name\', \'Class ID\', \'Analytical order\'] not in index"'


@pytest.mark.parametrize("file_name, expected", [
["18_QC 4 _18", True],
["1_QC_1", True],
["blub", False],
["sample_0.56", False],
["_170", False]
])
def test_validate_filename(file_name: str, expected: bool):
"""Test to validate filenames."""
assert validate_filename(file_name) == expected