Skip to content
Snippets Groups Projects
Commit 8a9b2c75 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: Missed assert; make sure fileorthing handles cmdonly, and cmdonly works

when combining fileorthing and cmdwrapper
parent df13ddbd
No related branches found
No related tags found
No related merge requests found
...@@ -714,13 +714,15 @@ def test_fileOrThing_chained_outprefix(): ...@@ -714,13 +714,15 @@ def test_fileOrThing_chained_outprefix():
assert np.all(res['out_array'] == exparr) assert np.all(res['out_array'] == exparr)
def test_fileOrThing_submit(): def test_fileOrThing_submit_cmdonly():
@wutils.fileOrImage('input', 'output') @wutils.fileOrImage('input', 'output')
def func(input, output, submit=False): def func(input, output, submit=False, cmdonly=False):
if submit: if submit:
return 'submitted!' return 'submitted!'
if cmdonly:
return 'cmdonly!'
img = nib.load(input) img = nib.load(input)
img = nib.nifti1.Nifti1Image(np.asanyarray(img.dataobj) * 2, np.eye(4)) img = nib.nifti1.Nifti1Image(np.asanyarray(img.dataobj) * 2, np.eye(4))
...@@ -735,7 +737,8 @@ def test_fileOrThing_submit(): ...@@ -735,7 +737,8 @@ def test_fileOrThing_submit():
result = func(img, wutils.LOAD) result = func(img, wutils.LOAD)
assert np.all(np.asanyarray(result['output'].dataobj) == exp) assert np.all(np.asanyarray(result['output'].dataobj) == exp)
assert func('input.nii.gz', 'output.nii.gz', submit=True) == 'submitted!' assert func('input.nii.gz', 'output.nii.gz', submit=True) == 'submitted!'
assert func('input.nii.gz', 'output.nii.gz', cmdonly=True) == 'cmdonly!'
with pytest.raises(ValueError): with pytest.raises(ValueError):
func(img, wutils.LOAD, submit=True) func(img, wutils.LOAD, submit=True)
...@@ -766,7 +769,7 @@ def test_fslwrapper(): ...@@ -766,7 +769,7 @@ def test_fslwrapper():
with run.dryrun(): with run.dryrun():
assert func(1, 2)[0] == expected assert func(1, 2)[0] == expected
func(1, 2, cmdonly=True)[0] == list(shlex.split(expected)) assert func(1, 2, cmdonly=True) == list(shlex.split(expected))
_test_script = textwrap.dedent(""" _test_script = textwrap.dedent("""
...@@ -840,3 +843,21 @@ def test_fslwrapper_submit(): ...@@ -840,3 +843,21 @@ def test_fslwrapper_submit():
assert stdout.strip() == 'test_script running: 1 2' assert stdout.strip() == 'test_script running: 1 2'
assert stderr.strip() == experr assert stderr.strip() == experr
@pytest.mark.unixtest
def test_cmdwrapper_fileorthing_cmdonly():
test_func = wutils.fileOrImage('a')(wutils.cmdwrapper(_test_script_func))
newpath = op.pathsep.join(('.', os.environ['PATH']))
with tempdir.tempdir(), \
mock.patch.dict(os.environ, {'PATH' : newpath}):
with open('test_script', 'wt') as f:
f.write(_test_script)
os.chmod('test_script', 0o755)
ran = test_func('1', '2')
cmd = test_func('1', '2', cmdonly=True)
assert ran.stdout[0].strip() == 'test_script running: 1 2'
assert cmd == ['test_script', '1', '2']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment