-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathtest_sunbeam_run.py
More file actions
executable file
·139 lines (111 loc) · 3.07 KB
/
test_sunbeam_run.py
File metadata and controls
executable file
·139 lines (111 loc) · 3.07 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import pytest
from sunbeam import CONFIGS_DIR, EXTENSIONS_DIR
from sunbeam.project import SampleList, SunbeamConfig, SunbeamProfile
from sunbeam.scripts.init import main as Init
from sunbeam.scripts.run import main as Run
def test_sunbeam_run(tmp_path, DATA_DIR):
project_dir = tmp_path / "test"
Init(
[
str(project_dir),
"--data_fp",
str(DATA_DIR / "reads"),
]
)
with pytest.raises(SystemExit) as excinfo:
Run(
[
"--profile",
str(project_dir),
"--exclude",
"all",
]
)
assert excinfo.value.code == 0
sunbeam_output = project_dir / "sunbeam_output"
assert sunbeam_output.exists()
def test_sunbeam_run_with_single_end_reads(tmp_path, DATA_DIR):
project_dir = tmp_path / "test"
Init(
[
str(project_dir),
"--data_fp",
str(DATA_DIR / "single_end_reads"),
"--single_end",
]
)
with pytest.raises(SystemExit) as excinfo:
Run(
[
"--profile",
str(project_dir),
"--exclude",
"all",
]
)
assert excinfo.value.code == 0
sunbeam_output = project_dir / "sunbeam_output"
assert sunbeam_output.exists()
def test_sunbeam_run_with_dirty_reads(tmp_path, DATA_DIR):
project_dir = tmp_path / "test"
Init(
[
str(project_dir),
"--data_fp",
str(DATA_DIR / "dirty_reads"),
]
)
with pytest.raises(SystemExit) as excinfo:
Run(
[
"--profile",
str(project_dir),
"--exclude",
"all",
]
)
assert excinfo.value.code == 0
sunbeam_output = project_dir / "sunbeam_output"
assert sunbeam_output.exists()
def test_sunbeam_run_with_target_after_exclude(tmp_path, DATA_DIR, capsys):
project_dir = tmp_path / "test"
Init(
[
str(project_dir),
"--data_fp",
str(DATA_DIR / "reads"),
]
)
with pytest.raises(SystemExit) as excinfo:
Run(
[
"--profile",
str(project_dir),
"--exclude",
"all",
"clean_qc",
"-n",
"--quiet",
]
)
assert excinfo.value.code == 0
captured = capsys.readouterr()
assert "clean_qc" in captured.err
assert "filter_reads" not in captured.err
def test_sunbeam_run_ai_option(tmp_path, monkeypatch):
project_dir = tmp_path / "empty"
project_dir.mkdir()
called = {"flag": False}
def fake_analyze(log):
called["flag"] = True
monkeypatch.setattr("sunbeam.scripts.run.analyze_failure", fake_analyze)
with pytest.raises(SystemExit):
Run(
[
"--profile",
str(project_dir),
"--ai",
"-n",
]
)
assert called["flag"]