aboutsummaryrefslogtreecommitdiff
path: root/tests/qc/test_parsing.py
blob: 41739ad856425120093b084468769f4917bb6fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""Test the parsing of the files"""
import pytest

from quality_control.errors import ParseError
from quality_control.parsing import FileType, parse_file

@pytest.mark.parametrize(
    "filepath,filetype",
    (("tests/test_data/average_crlf.tsv", FileType.STANDARD_ERROR),
     ("tests/test_data/average_error_at_end_200MB.tsv",
      FileType.STANDARD_ERROR),
     ("tests/test_data/average.tsv", FileType.STANDARD_ERROR),
     ("tests/test_data/standarderror_1_error_at_end.tsv", FileType.AVERAGE),
     ("tests/test_data/standarderror.tsv", FileType.AVERAGE),
     ("tests/test_data/duplicated_headers_no_data_errors.tsv",
      FileType.STANDARD_ERROR),))
def test_parse_file_fails_with_wrong_filetype_declaration(filepath, filetype, strains):
    """Check that parsing fails if the wrong file type is declared"""
    with pytest.raises(ParseError):
        for line in parse_file(filepath, filetype, strains): # pylint: disable=[unused-variable]
            pass

@pytest.mark.parametrize(
    "filepath,filetype",
    (("tests/test_data/no_data_errors.tsv", FileType.AVERAGE),))
def test_parse_file_passes_with_valid_files(filepath, filetype, strains):
    """Check that parsing succeeds with valid files"""
    for line in parse_file(filepath, filetype, strains):
        assert bool(line)

@pytest.mark.slow
@pytest.mark.parametrize(
    "filepath,filetype",
    (("tests/test_data/average_large_no_errors.tsv", FileType.AVERAGE),
     # ("tests/test_data/average_no_errors.tsv", FileType.AVERAGE),
     # ("tests/test_data/standarderror_no_errors.tsv", FileType.STANDARD_ERROR),
     ))
def test_parse_file_works_with_large_files(filepath, filetype, strains):
    """Check that parsing succeeds even with large files."""
    for line in parse_file(filepath, filetype, strains):
        assert bool(line)

@pytest.mark.slow
@pytest.mark.parametrize(
    "filepath,filetype",
    (("tests/test_data/average_error_at_end_200MB.tsv", FileType.AVERAGE),
     ("tests/test_data/standarderror_1_error_at_end.tsv", FileType.STANDARD_ERROR),
     ("tests/test_data/duplicated_headers_no_data_errors.tsv", FileType.AVERAGE)))
def test_parse_file_raises_exception_on_error_in_file(filepath, filetype, strains):
    "Check that parsing fails if any error is found in a file"
    with pytest.raises(ParseError):
        for line in parse_file(filepath, filetype, strains): # pylint: disable=[unused-variable]
            pass