aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/uploader/__init__.py (renamed from tests/qc_app/__init__.py)0
-rw-r--r--tests/uploader/test_entry.py (renamed from tests/qc_app/test_entry.py)0
-rw-r--r--tests/uploader/test_expression_data_pages.py (renamed from tests/qc_app/test_expression_data_pages.py)0
-rw-r--r--tests/uploader/test_files.py17
-rw-r--r--tests/uploader/test_parse.py (renamed from tests/qc_app/test_parse.py)0
-rw-r--r--tests/uploader/test_progress_indication.py (renamed from tests/qc_app/test_progress_indication.py)0
-rw-r--r--tests/uploader/test_results_page.py (renamed from tests/qc_app/test_results_page.py)0
-rw-r--r--tests/uploader/test_uploads_with_zip_files.py (renamed from tests/qc_app/test_uploads_with_zip_files.py)0
8 files changed, 17 insertions, 0 deletions
diff --git a/tests/qc_app/__init__.py b/tests/uploader/__init__.py
index e69de29..e69de29 100644
--- a/tests/qc_app/__init__.py
+++ b/tests/uploader/__init__.py
diff --git a/tests/qc_app/test_entry.py b/tests/uploader/test_entry.py
index 0c614a5..0c614a5 100644
--- a/tests/qc_app/test_entry.py
+++ b/tests/uploader/test_entry.py
diff --git a/tests/qc_app/test_expression_data_pages.py b/tests/uploader/test_expression_data_pages.py
index c2f7de1..c2f7de1 100644
--- a/tests/qc_app/test_expression_data_pages.py
+++ b/tests/uploader/test_expression_data_pages.py
diff --git a/tests/uploader/test_files.py b/tests/uploader/test_files.py
new file mode 100644
index 0000000..cb22fff
--- /dev/null
+++ b/tests/uploader/test_files.py
@@ -0,0 +1,17 @@
+"""Tests functions in the `uploader.files` module."""
+from pathlib import Path
+
+import pytest
+
+from uploader.files import sha256_digest_over_file
+
+@pytest.mark.unit_test
+@pytest.mark.parametrize(
+ "filepath,expectedhash",
+ ((Path("tests/test_data/average.tsv.zip"),
+ "a371c654c095c030edad468e1c3d6b176ea8adfbcd91a322afd37779044478d9"),
+ (Path("tests/test_data/standarderror.tsv"),
+ "a08332e0b06391d50eecb722f69d85fbdf374a2d77713ee879d3fd6c60419d55")))
+def test_sha256_digest_over_file(filepath: Path, expectedhash: str):
+ """Test the `sha256_digest_over_file` function."""
+ assert sha256_digest_over_file(filepath) == expectedhash
diff --git a/tests/qc_app/test_parse.py b/tests/uploader/test_parse.py
index 076c47c..076c47c 100644
--- a/tests/qc_app/test_parse.py
+++ b/tests/uploader/test_parse.py
diff --git a/tests/qc_app/test_progress_indication.py b/tests/uploader/test_progress_indication.py
index 14a1050..14a1050 100644
--- a/tests/qc_app/test_progress_indication.py
+++ b/tests/uploader/test_progress_indication.py
diff --git a/tests/qc_app/test_results_page.py b/tests/uploader/test_results_page.py
index 8c8379f..8c8379f 100644
--- a/tests/qc_app/test_results_page.py
+++ b/tests/uploader/test_results_page.py
diff --git a/tests/qc_app/test_uploads_with_zip_files.py b/tests/uploader/test_uploads_with_zip_files.py
index 1506cfa..1506cfa 100644
--- a/tests/qc_app/test_uploads_with_zip_files.py
+++ b/tests/uploader/test_uploads_with_zip_files.py