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
e985dd1f
Commit
e985dd1f
authored
5 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
TEST: fslsub tests
parent
91315505
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_fslsub.py
+101
-1
101 additions, 1 deletion
tests/test_fslsub.py
with
101 additions
and
1 deletion
tests/test_fslsub.py
+
101
−
1
View file @
e985dd1f
...
@@ -3,9 +3,70 @@
...
@@ -3,9 +3,70 @@
# test_fslsub.py - Tests functions in the fsl.utils.fslsub module.
# test_fslsub.py - Tests functions in the fsl.utils.fslsub module.
#
#
# Author: Michiel Cottaar <Michiel.Cottaar@ndcn.ox.ac.uk>
# Author: Michiel Cottaar <Michiel.Cottaar@ndcn.ox.ac.uk>
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
#
from
fsl.utils
import
fslsub
import
os
import
os.path
as
op
import
sys
import
textwrap
as
tw
import
contextlib
from
fsl.utils
import
fslsub
from
fsl.utils.tempdir
import
tempdir
from
.
import
mockFSLDIR
mock_fsl_sub
=
f
"""
#!
{
sys
.
executable
}
import random
import os
import os.path as op
import sys
import subprocess as sp
import fsl
args = sys.argv[1:]
for i in range(len(args)):
a = args[i]
if a[0] ==
'
-
'
:
if a[1] ==
'
s
'
:
i += 2
elif a[1] not in (
'
F
'
,
'
v
'
):
i += 1
continue
else:
break
args = args[i:]
env = dict(os.environ)
env[
'
PYTHONPATH
'
] = op.join(op.dirname(fsl.__file__),
'
..
'
)
cmd = op.basename(args[0])
jobid = random.randint(1, 9999)
with open(f
'
{{cmd}}.o{{jobid}}
'
,
'
w
'
) as stdout,
\
open(f
'
{{cmd}}.e{{jobid}}
'
,
'
w
'
) as stderr:
result = sp.run(args, stdout=stdout, stderr=stderr, env=env)
print(str(jobid))
sys.exit(0)
"""
.
strip
()
@contextlib.contextmanager
def
fslsub_mockFSLDIR
():
with
mockFSLDIR
()
as
fsldir
:
fslsubbin
=
op
.
join
(
fsldir
,
'
bin
'
,
'
fsl_sub
'
)
with
open
(
fslsubbin
,
'
wt
'
)
as
f
:
f
.
write
(
mock_fsl_sub
)
os
.
chmod
(
fslsubbin
,
0o755
)
yield
fsldir
def
test_flatten_jobids
():
def
test_flatten_jobids
():
...
@@ -18,3 +79,42 @@ def test_flatten_jobids():
...
@@ -18,3 +79,42 @@ def test_flatten_jobids():
assert
fslsub
.
_flatten_job_ids
([
job_ids
[:
2
],
job_ids
[
2
:]])
==
res
assert
fslsub
.
_flatten_job_ids
([
job_ids
[:
2
],
job_ids
[
2
:]])
==
res
assert
fslsub
.
_flatten_job_ids
([
set
(
job_ids
[:
2
]),
job_ids
[
2
:]])
==
res
assert
fslsub
.
_flatten_job_ids
([
set
(
job_ids
[:
2
]),
job_ids
[
2
:]])
==
res
assert
fslsub
.
_flatten_job_ids
(((
job_ids
,
),
job_ids
+
job_ids
))
==
res
assert
fslsub
.
_flatten_job_ids
(((
job_ids
,
),
job_ids
+
job_ids
))
==
res
def
test_submit
():
script
=
tw
.
dedent
(
"""
#!/usr/bin/env bash
echo
"
standard output
"
echo
"
standard error
"
>&2
exit 0
"""
).
strip
()
with
fslsub_mockFSLDIR
(),
tempdir
():
cmd
=
op
.
join
(
'
.
'
,
'
myscript
'
)
with
open
(
cmd
,
'
wt
'
)
as
f
:
f
.
write
(
script
)
os
.
chmod
(
cmd
,
0o755
)
jid
=
fslsub
.
submit
(
cmd
)
fslsub
.
wait
(
jid
)
stdout
,
stderr
=
fslsub
.
output
(
jid
)
assert
stdout
.
strip
()
==
'
standard output
'
assert
stderr
.
strip
()
==
'
standard error
'
def
myfunc
():
print
(
'
standard output
'
)
print
(
'
standard error
'
,
file
=
sys
.
stderr
)
def
test_func_to_cmd
():
with
fslsub_mockFSLDIR
(),
tempdir
():
cmd
=
fslsub
.
func_to_cmd
(
myfunc
,
(),
{})
jid
=
fslsub
.
submit
(
cmd
)
fslsub
.
wait
(
jid
)
stdout
,
stderr
=
fslsub
.
output
(
jid
)
assert
stdout
.
strip
()
==
'
standard output
'
assert
stderr
.
strip
()
==
'
standard error
'
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