Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michiel Cottaar
fslpy
Commits
8a9b2c75
Commit
8a9b2c75
authored
4 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
TEST: Missed assert; make sure fileorthing handles cmdonly, and cmdonly works
when combining fileorthing and cmdwrapper
parent
df13ddbd
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_wrappers/test_wrapperutils.py
+25
-4
25 additions, 4 deletions
tests/test_wrappers/test_wrapperutils.py
with
25 additions
and
4 deletions
tests/test_wrappers/test_wrapperutils.py
+
25
−
4
View file @
8a9b2c75
...
@@ -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
'
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment