diff --git a/tests/test_imagewrapper.py b/tests/test_imagewrapper.py index 65c790ce3f41300b13cc1dfec07b6f93c8a2e0dd..fc78da8460f3f1d7ed20364206d3ef12cbae0934 100644 --- a/tests/test_imagewrapper.py +++ b/tests/test_imagewrapper.py @@ -1173,8 +1173,10 @@ def test_3D_indexing(shape=None, img=None): # Test that a 3D image looks like a 3D image - if shape is None: shape = (21, 22, 23) - elif len(shape) == 2: shape = tuple(list(shape) + [1]) + if shape is None: + shape = (21, 22, 23) + elif len(shape) < 3: + shape = tuple(list(shape) + [1] * (3 - len(shape))) if img is None: data = np.random.random(shape) @@ -1264,8 +1266,10 @@ def test_3D_len_one_indexing(shape=None, img=None): # look like a 3D image, but should still # accept (valid) 2D slicing. - if shape is None: shape = (20, 20, 1) - elif len(shape) < 3: shape = tuple(list(shape) + [1]) + if shape is None: + shape = (20, 20, 1) + elif len(shape) < 3: + shape = tuple(list(shape) + [1] * (3 - len(shape))) if img is None: data = np.random.random(shape) @@ -1305,6 +1309,20 @@ def test_2D_indexing(): test_3D_len_one_indexing(shape, img) +def test_1D_indexing(): + + # Testing ImageWrapper for a 1D image - + # it should look just like a 3D image + # (the same as is tested above). + + shape = (20,) + data = np.random.random(shape) + nibImg = nib.Nifti1Image(data, np.eye(4)) + img = imagewrap.ImageWrapper(nibImg, loadData=True) + + test_3D_len_one_indexing(shape, img) + + def test_4D_indexing(shape=None, img=None): if shape is None: