Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fslpy
Commits
73831ea5
Commit
73831ea5
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Reduce/change dicom test data file size
parent
ac5d8ccd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/test_dicom.py
+20
-19
20 additions, 19 deletions
tests/test_dicom.py
tests/testdata/example_dicom.tbz2
+0
-0
0 additions, 0 deletions
tests/testdata/example_dicom.tbz2
with
20 additions
and
19 deletions
tests/test_dicom.py
+
20
−
19
View file @
73831ea5
...
@@ -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
,
exp
Shape
in
zip
(
series
,
exp
Shape
s
):
for
s
,
exp
len
in
zip
(
series
,
exp
len
s
):
img
=
fsldcm
.
loadSeries
(
s
)
img
s
=
fsldcm
.
loadSeries
(
s
)
assert
len
(
img
)
==
1
assert
len
(
img
s
)
==
explen
img
=
img
[
0
]
for
img
in
img
s
:
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
()
This diff is collapsed.
Click to expand it.
tests/testdata/example_dicom.tbz2
+
0
−
0
View file @
73831ea5
No preview for this file type
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment