diff options
author | Frederick Muriuki Muriithi | 2022-06-15 08:05:11 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-06-15 08:05:11 +0300 |
commit | 6760d322637a3d875242a66e9c1a784866d7df1d (patch) | |
tree | 9c789b3f25cb1b1c04dc7974f9aab0ffcb6acdf4 /tests/qc_app/test_parse.py | |
parent | c2fa70ec8503d10b990575a547036bfd70a53825 (diff) | |
download | gn-uploader-6760d322637a3d875242a66e9c1a784866d7df1d.tar.gz |
Setup test fixtures and initial tests for web-UI
Diffstat (limited to 'tests/qc_app/test_parse.py')
-rw-r--r-- | tests/qc_app/test_parse.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/qc_app/test_parse.py b/tests/qc_app/test_parse.py new file mode 100644 index 0000000..41d2c26 --- /dev/null +++ b/tests/qc_app/test_parse.py @@ -0,0 +1,12 @@ +import pytest + +def test_parse_with_existing_file(client, monkeypatch): + monkeypatch.setattr( + "qc_app.jobs.uuid4", lambda : "934c55d8-396e-4959-90e1-2698e9205758") + resp = client.get( + "/parse/parse?filename=no_data_errors.tsv&filetype=average") + print(resp.status) + print(resp.data) + assert resp.status_code == 302 + assert b'Redirecting...' in resp.data + assert b'/parse/status/934c55d8-396e-4959-90e1-2698e9205758' in resp.data |