Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tomotools
tomoscan
Commits
80d43e3a
Commit
80d43e3a
authored
Aug 21, 2020
by
payno
Committed by
payno
Sep 03, 2020
Browse files
[test] add test on MockHDF5
parent
f821d720
Changes
2
Hide whitespace changes
Inline
Side-by-side
tomoscan/esrf/test/__init__.py
View file @
80d43e3a
...
...
@@ -25,18 +25,20 @@
__authors__
=
[
"H.Payno"
]
__license__
=
"MIT"
__date__
=
"1
6
/0
9
/20
19
"
__date__
=
"
2
1/0
8
/20
20
"
import
unittest
from
.test_hdf5scan
import
suite
as
h5_test_suite
from
.test_edfscan
import
suite
as
scan_test_suite
from
.test_edfscan
import
suite
as
edf_test_suite
from
.test_mock
import
suite
as
mock_test_suite
def
suite
():
test_suite
=
unittest
.
TestSuite
()
test_suite
.
addTest
(
h5_test_suite
())
test_suite
.
addTest
(
scan_test_suite
())
test_suite
.
addTest
(
edf_test_suite
())
test_suite
.
addTest
(
mock_test_suite
())
return
test_suite
tomoscan/esrf/test/test_mock.py
0 → 100644
View file @
80d43e3a
# coding: utf-8
# /*##########################################################################
#
# Copyright (c) 2017 European Synchrotron Radiation Facility
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
# ###########################################################################*/
__authors__
=
[
"H. Payno"
]
__license__
=
"MIT"
__date__
=
"21/08/2020"
import
unittest
import
os
import
tempfile
from
tomoscan.esrf.mock
import
MockHDF5
from
tomoscan.esrf.hdf5scan
import
HDF5TomoScan
class
TestMockHDF5
(
unittest
.
TestCase
):
"""Test the MockHDF5 file"""
def
test_creation
(
self
):
folder
=
tempfile
.
mkdtemp
()
mock
=
MockHDF5
(
scan_path
=
folder
,
n_proj
=
10
,
n_ini_proj
=
10
)
self
.
assertEqual
(
mock
.
scan_master_file
,
os
.
path
.
join
(
folder
,
os
.
path
.
basename
(
folder
)
+
".h5"
),
)
tomoScan
=
HDF5TomoScan
(
mock
.
scan_path
,
entry
=
mock
.
scan_entry
)
self
.
assertEqual
(
len
(
HDF5TomoScan
.
get_valid_entries
(
mock
.
scan_master_file
)),
1
)
tomoScan
.
update
()
self
.
assertEqual
(
tomoScan
.
scan_range
,
360
)
self
.
assertEqual
(
len
(
tomoScan
.
projections
),
10
)
def
suite
():
test_suite
=
unittest
.
TestSuite
()
for
ui
in
(
TestMockHDF5
,):
test_suite
.
addTest
(
unittest
.
defaultTestLoader
.
loadTestsFromTestCase
(
ui
))
return
test_suite
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
"suite"
)
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment