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

TEST: make tests pyfeeds compatible

parent 64af0808
No related branches found
No related tags found
1 merge request!12Rf/createwrapper macos
#!/usr/bin/env bash
fslpython ./test_create_remove_wrapper.py ${FSLDIR}
\ No newline at end of file
#!/usr/bin/env python #!/usr/bin/env python
# #
# test_create_remove_wrapper.py - Test the createFSLWrapper.sh and # test_create_remove_wrapper.py - Test the createFSLWrapper.sh and
# removeFSLWrapper.sh scripts. Requires Python 3.7. # removeFSLWrapper.sh scripts. Requires Python>=3.7.
# #
# Author: Paul McCarthy <pauldmccarthy@gmail.com> # Author: Paul McCarthy <pauldmccarthy@gmail.com>
# #
import sys
import os.path as op import os.path as op
import subprocess as sp import subprocess as sp
import textwrap as tw import textwrap as tw
...@@ -18,6 +19,11 @@ import contextlib ...@@ -18,6 +19,11 @@ import contextlib
from unittest import mock from unittest import mock
# Paths to create/remove wrapper scripts, when
# running from an in-source version. These may
# be overwritten within the __main__ clause at
# the bottom, where BASE_DIR may be provided
# as a command-line argument.
BASE_DIR = op.abspath(op.join(op.dirname(__file__), '..')) BASE_DIR = op.abspath(op.join(op.dirname(__file__), '..'))
CREATE_WRAPPER = op.join(BASE_DIR, 'share', 'fsl', 'sbin', 'createFSLWrapper') CREATE_WRAPPER = op.join(BASE_DIR, 'share', 'fsl', 'sbin', 'createFSLWrapper')
REMOVE_WRAPPER = op.join(BASE_DIR, 'share', 'fsl', 'sbin', 'removeFSLWrapper') REMOVE_WRAPPER = op.join(BASE_DIR, 'share', 'fsl', 'sbin', 'removeFSLWrapper')
...@@ -176,3 +182,19 @@ def test_create_remove_wrappers(): ...@@ -176,3 +182,19 @@ def test_create_remove_wrappers():
assert not op.exists(op.join(wrapperdir, 'test_script1')) assert not op.exists(op.join(wrapperdir, 'test_script1'))
assert not op.exists(op.join(wrapperdir, 'test_script2')) assert not op.exists(op.join(wrapperdir, 'test_script2'))
if __name__ == '__main__':
# base dir can be speecified on command line
if len(sys.argv) > 1:
BASE_DIR = sys.argv[1]
SBIN_DIR = op.join(BASE_DIR, 'share', 'fsl', 'sbin')
CREATE_WRAPPER = op.join(SBIN_DIR, 'createFSLWrapper')
REMOVE_WRAPPER = op.join(SBIN_DIR, 'removeFSLWrapper')
thismod = sys.modules[__name__]
for test in dir(thismod):
if test.startswith('test_'):
test = getattr(thismod, test)
if callable(test):
test()
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