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

TEST: Test loadData behaviour

parent 33a09260
No related branches found
No related tags found
No related merge requests found
...@@ -321,3 +321,26 @@ def _test_image_calcRange(threaded): ...@@ -321,3 +321,26 @@ def _test_image_calcRange(threaded):
if threaded: if threaded:
img.getImageWrapper().getTaskThread().waitUntilIdle() img.getImageWrapper().getTaskThread().waitUntilIdle()
assert img.dataRange == (0, 1) assert img.dataRange == (0, 1)
# sanity check - make sure data is not loaded
# when loadData is False (fsl/fslpy#374)
def test_Image_loadData():
with tests.testdir() as testdir:
filename = 'image.nii.gz'
# Data range grows with volume
data = np.zeros((50, 50, 50, 50))
for vol in range(data.shape[-1]):
data[..., vol] = vol
fslimage.Image(data).save(filename)
img = fslimage.Image(filename, loadData=False)
assert not img.getImageWrapper().dataIsLoaded
img = fslimage.Image(filename, loadData=False, calcRange=False)
assert not img.getImageWrapper().dataIsLoaded
img = fslimage.Image(filename, loadData=False, calcRange=True)
assert not img.getImageWrapper().dataIsLoaded
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