-
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
·162 lines (132 loc) · 3.54 KB
/
test_sunbeam_run.py
File metadata and controls
executable file
·162 lines (132 loc) · 3.54 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import pytest
import subprocess as sp
import sys
import types
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"),
]
)
ret = sp.run(
[
"sunbeam",
"run",
"--profile",
str(project_dir),
"--exclude",
"all",
"clean_qc",
"-n",
"--quiet",
],
check=True,
capture_output=True,
)
assert ret.returncode == 0
assert "clean_qc" in ret.stderr.decode("utf-8")
assert "filter_reads" not in ret.stderr.decode("utf-8")
def test_sunbeam_run_ai_option(tmp_path, monkeypatch, DATA_DIR):
project_dir = tmp_path / "test"
called = {"flag": False}
def dummy_create(**kwargs):
called["flag"] = True
return types.SimpleNamespace(
choices=[
types.SimpleNamespace(message=types.SimpleNamespace(content="analysis"))
]
)
fake_openai = types.SimpleNamespace()
fake_openai.OpenAI = lambda *args, **kwargs: types.SimpleNamespace(
chat=types.SimpleNamespace(
completions=types.SimpleNamespace(create=dummy_create)
)
)
monkeypatch.setitem(sys.modules, "openai", fake_openai)
monkeypatch.setenv("OPENAI_API_KEY", "token")
Init(
[
str(project_dir),
"--data_fp",
str(DATA_DIR / "reads"),
]
)
with pytest.raises(SystemExit):
Run(
[
"--profile",
str(project_dir),
"--ai",
"-n",
]
)
assert called["flag"]