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

TEST: Test loadVestFile

parent 767a4780
No related branches found
No related tags found
No related merge requests found
...@@ -6,17 +6,20 @@ ...@@ -6,17 +6,20 @@
# #
import os.path as op import os.path as op
import io import textwrap as tw
import shutil import io
import tempfile import shutil
import warnings import tempfile
import warnings
import numpy as np import numpy as np
import pytest import pytest
import fsl.data.vest as vest import fsl.data.vest as vest
from tests import tempdir
testfile1 = """%!VEST-LUT testfile1 = """%!VEST-LUT
%%BeginInstance %%BeginInstance
...@@ -248,3 +251,42 @@ def test_generateVest(): ...@@ -248,3 +251,42 @@ def test_generateVest():
assert expshape == gotshape assert expshape == gotshape
assert np.all(np.isclose(data, gotdata)) assert np.all(np.isclose(data, gotdata))
def test_loadVestFile():
def genvest(data, path, shapeOverride=None):
if shapeOverride is None:
nrows, ncols = data.shape
else:
nrows, ncols = shapeOverride
with open(path, 'wt') as f:
f.write(f'/NumWaves {ncols}\n')
f.write(f'/NumPoints {nrows}\n')
f.write( '/Matrix\n')
if np.issubdtype(data.dtype, np.integer): fmt = '%d'
else: fmt = '%0.12f'
np.savetxt(f, data, fmt=fmt)
with tempdir():
data = np.random.randint(1, 100, (10, 20))
genvest(data, 'data.vest')
assert np.all(data == vest.loadVestFile('data.vest'))
data = np.random.random((20, 10))
genvest(data, 'data.vest')
assert np.all(np.isclose(data, vest.loadVestFile('data.vest')))
# should pass
vest.loadVestFile('data.vest', ignoreHeader=False)
# invalid VEST header
genvest(data, 'data.vest', (10, 20))
# default behaviour - ignore header
assert np.all(np.isclose(data, vest.loadVestFile('data.vest')))
with pytest.raises(ValueError):
vest.loadVestFile('data.vest', ignoreHeader=False)
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