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

Reduce/change dicom test data file size

parent ac5d8ccd
No related branches found
No related tags found
No related merge requests found
...@@ -14,8 +14,6 @@ import pytest ...@@ -14,8 +14,6 @@ import pytest
import fsl.data.dicom as fsldcm import fsl.data.dicom as fsldcm
import fsl.utils.tempdir as tempdir import fsl.utils.tempdir as tempdir
from . import tempdir
datadir = op.join(op.dirname(__file__), 'testdata') datadir = op.join(op.dirname(__file__), 'testdata')
...@@ -64,7 +62,7 @@ def test_enabled(): ...@@ -64,7 +62,7 @@ def test_enabled():
def test_scanDir(): def test_scanDir():
with tempdir() as td: with tempdir.tempdir() as td:
series = fsldcm.scanDir(td) series = fsldcm.scanDir(td)
assert len(series) == 0 assert len(series) == 0
...@@ -78,34 +76,37 @@ def test_scanDir(): ...@@ -78,34 +76,37 @@ def test_scanDir():
assert len(series) == 2 assert len(series) == 2
for s in series: for s in series:
assert s['PatientName'] == 'MCCARTHY_PAUL' assert (s['PatientName'] == 'MCCARTHY_PAUL' or
s['PatientName'] == 'MCCARTHY_PAUL_2')
def test_loadSeries(): def test_loadSeries():
with tempdir() as td: with tempdir.tempdir() as td:
datafile = op.join(datadir, 'example_dicom.tbz2') datafile = op.join(datadir, 'example_dicom.tbz2')
with tarfile.open(datafile) as f: with tarfile.open(datafile) as f:
f.extractall() f.extractall()
series = fsldcm.scanDir(td) series = fsldcm.scanDir(td)
expShape = (512, 512, 1)
expShapes = [(512, 512, 25), explens = [1, 2]
(512, 512, 29)]
for s, expShape in zip(series, expShapes): for s, explen in zip(series, explens):
img = fsldcm.loadSeries(s) imgs = fsldcm.loadSeries(s)
assert len(img) == 1 assert len(imgs) == explen
img = img[0] for img in imgs:
assert img.shape == expShape assert img.shape == expShape
assert img[:].shape == expShape assert img[:].shape == expShape
assert img.get('PatientName') == 'MCCARTHY_PAUL' assert img.get('PatientName') == 'MCCARTHY_PAUL' or \
assert 'PatientName' in img.keys() img.get('PatientName') == 'MCCARTHY_PAUL_2'
assert 'MCCARTHY_PAUL' in img.values() assert 'PatientName' in img.keys()
assert ('PatientName', 'MCCARTHY_PAUL') in img.items() assert 'MCCARTHY_PAUL' in img.values() or \
'MCCARTHY_PAUL_2' in img.values()
assert ('PatientName', 'MCCARTHY_PAUL') in img.items() or \
('PatientName', 'MCCARTHY_PAUL_2') in img.items()
No preview for this file type
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