This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #184 from jhlegarreta/AddCLIEntryPointTest
ENH: Add CLI entry point test
- Loading branch information
Showing
3 changed files
with
73 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- | ||
# vi: set ft=python sts=4 ts=4 sw=4 et: | ||
# | ||
# Copyright 2024 The NiPreps Developers <[email protected]> | ||
# | ||
# 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. | ||
# | ||
# We support and encourage derived works from this project, please read | ||
# about our expectations at | ||
# | ||
# https://www.nipreps.org/community/licensing/ | ||
# | ||
|
||
import sys | ||
|
||
import pytest | ||
|
||
from eddymotion.__main__ import main | ||
|
||
|
||
@pytest.fixture(autouse=True) | ||
def set_command(monkeypatch): | ||
with monkeypatch.context() as m: | ||
m.setattr(sys, "argv", ["eddymotion"]) | ||
yield | ||
|
||
|
||
def test_help(capsys): | ||
with pytest.raises(SystemExit): | ||
main(["--help"]) | ||
captured = capsys.readouterr() | ||
assert captured.out.startswith("usage: eddymotion [-h]") | ||
|
||
|
||
def test_main(tmp_path, datadir): | ||
input_file = datadir / "dwi.h5" | ||
|
||
with pytest.raises(SystemExit): | ||
main([str(input_file), str(tmp_path)]) | ||
|
||
with pytest.raises(SystemExit): | ||
main( | ||
[ | ||
str(input_file), | ||
"--models", | ||
"b0", | ||
"--omp_nthreads", | ||
"1", | ||
"--n_jobs", | ||
"1", | ||
"--seed", | ||
"1234", | ||
"--output_dir", | ||
str(tmp_path), | ||
] | ||
) | ||
# assert Path(output_dir).joinpath("dwi.h5").exists() # Empty | ||
|
||
# Also, call python -m eddymotion or eddymotion from CircleCI ?? |