-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest_cli.py
More file actions
153 lines (128 loc) · 5.18 KB
/
test_cli.py
File metadata and controls
153 lines (128 loc) · 5.18 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
# Copyright 2022-2023 CRS4.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from pathlib import Path
from click.testing import CliRunner
from rocrate.rocrate import ROCrate
from runcrate import __version__
from runcrate.cli import cli
def test_cli_convert(data_dir, tmpdir, monkeypatch):
monkeypatch.chdir(str(tmpdir))
root = data_dir / "revsort-run-1"
runner = CliRunner()
args = ["convert", str(root)]
assert runner.invoke(cli, args).exit_code == 0
crate_zip = tmpdir / f"{root.name}.crate.zip"
assert crate_zip.is_file()
crate = ROCrate(crate_zip)
assert not crate.root_dataset.get("license")
workflow = crate.mainEntity
assert workflow["name"] == "packed.cwl"
def test_cli_convert_output(data_dir, tmpdir):
root = data_dir / "revsort-run-1"
# output zipped crate
crate_zip = tmpdir / "crate.zip"
runner = CliRunner()
args = ["convert", str(root), "-o", str(crate_zip)]
assert runner.invoke(cli, args).exit_code == 0
assert crate_zip.is_file()
crate = ROCrate(crate_zip)
assert not crate.root_dataset.get("license")
workflow = crate.mainEntity
assert workflow["name"] == "packed.cwl"
crate_zip.unlink()
# output crate dir
crate_dir = tmpdir / "revsort-run-1-crate"
runner = CliRunner()
args = ["convert", str(root), "-o", str(crate_dir)]
assert runner.invoke(cli, args).exit_code == 0
assert crate_dir.is_dir()
crate = ROCrate(crate_dir)
assert not crate.root_dataset.get("license")
workflow = crate.mainEntity
assert workflow["name"] == "packed.cwl"
def test_cli_convert_license(data_dir, tmpdir):
root = data_dir / "revsort-run-1"
crate_dir = tmpdir / "revsort-run-1-crate"
license = "MIT"
runner = CliRunner()
args = ["convert", str(root), "-o", str(crate_dir), "-l", license]
assert runner.invoke(cli, args).exit_code == 0
crate = ROCrate(crate_dir)
assert crate.root_dataset["license"] == license
def test_cli_convert_workflow_name(data_dir, tmpdir):
root = data_dir / "revsort-run-1"
crate_dir = tmpdir / "revsort-run-1-crate"
workflow_name = "RevSort"
runner = CliRunner()
args = ["convert", str(root), "-o", str(crate_dir), "-w", workflow_name]
assert runner.invoke(cli, args).exit_code == 0
crate = ROCrate(crate_dir)
workflow = crate.mainEntity
assert workflow["name"] == workflow_name
def test_cli_convert_readme(data_dir, tmpdir):
root = data_dir / "revsort-run-1"
crate_dir = tmpdir / "revsort-run-1-crate"
readme = data_dir / "README.md"
runner = CliRunner()
args = ["convert", str(root), "-o", str(crate_dir), "--readme", readme]
assert runner.invoke(cli, args).exit_code == 0
crate = ROCrate(crate_dir)
assert crate.get(readme.name)
def test_cli_convert_remap_names(data_dir, tmpdir):
root = data_dir / "grepucase-run-1"
crate_dir = tmpdir / "grepucase-run-1-crate"
runner = CliRunner()
args = ["convert", str(root), "-o", str(crate_dir), "--remap-names"]
assert runner.invoke(cli, args).exit_code == 0
crate = ROCrate(crate_dir)
assert crate.get("data/main/in/grepucase_in/")
assert (crate_dir / "data" / "main" / "in" / "grepucase_in").is_dir()
def test_cli_report_provenance_minimal(data_dir, caplog):
crate_dir = data_dir / "revsort-provenance-crate-minimal"
runner = CliRunner()
args = ["report", str(crate_dir)]
result = runner.invoke(cli, args)
assert result.exit_code == 0
out_lines = result.stdout.splitlines()
assert sum([_.startswith("action") for _ in out_lines]) == 3
def test_cli_version():
runner = CliRunner()
result = runner.invoke(cli, ["version"])
assert result.exit_code == 0
assert result.stdout.strip() == __version__
def test_cli_run(data_dir, tmpdir, monkeypatch):
crate_dir = data_dir / "type-zoo-run-1-crate"
runner = CliRunner()
args = ["run", str(crate_dir)]
monkeypatch.chdir(str(tmpdir))
result = runner.invoke(cli, args)
assert result.exit_code == 0
out_path = Path("output.txt")
assert out_path.is_file()
crate_out_path = crate_dir / "4bd8e7e358488e833bf32cf5028695292cecb05b"
assert out_path.read_text() == crate_out_path.read_text()
def test_cli_run_dir_array(data_dir, tmpdir, monkeypatch):
crate_dir = data_dir / "dirarray-run-1-crate"
runner = CliRunner()
args = ["run", str(crate_dir)]
monkeypatch.chdir(str(tmpdir))
result = runner.invoke(cli, args)
assert result.exit_code == 0
def test_cli_run_file_array(data_dir, tmpdir, monkeypatch):
crate_dir = data_dir / "no-output-run-1-crate"
runner = CliRunner()
args = ["run", str(crate_dir)]
monkeypatch.chdir(str(tmpdir))
result = runner.invoke(cli, args)
assert result.exit_code == 0