1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Project: Fable Input Output
# https://github.com/silx-kit/fabio
#
# Copyright (C) European Synchrotron Radiation Facility, Grenoble, France
#
# Principal author: Jérôme Kieffer (Jerome.Kieffer@ESRF.eu)
#
# 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.
#
"""
Unittest to read edf files as originally specified by expg.
"""
import unittest
import os
import numpy
import logging
logger = logging.getLogger(__name__)
import fabio
from ..utilstest import UtilsTest
# logging.basicConfig(level=logging.DEBUG)
# logging.basicConfig(level=logging.WARNING)
# logging.basicConfig(level=logging.INFO)
# logging.debug('This will get logged')
# logging.warning('This will get logged')
# logging.info('This will get logged')
def open_frame(filename, frameno):
logging.debug("fopen(filename={},frameno={})".format(filename, frameno))
image = fabio.open(filename)
if frameno is None:
frameno = 0
nframes = image.nframes
# if image.classname == "EdfImage":
if hasattr(image, "npsdframes"):
npsdframes = image.npsdframes
nerrorframes = image.nerrorframes
else:
npsdframes = nframes
nerrorframes = 0
if frameno >= npsdframes:
logging.warning("Psd frame {} out of range: 0 <= {} < {}".format(frameno, frameno, npsdframes))
if frameno < 0:
if -frameno > nerrorframes:
logging.warning("Error frame {} out of range: {} <= {} < 0 ".format(frameno, -nerrorframes, frameno))
frameno += nframes
frame = None
if frameno in range(nframes):
if nframes > 1:
frame = image.getframe(frameno)
data = frame.data
header = frame.header
else:
# Single frame
data = image.data
header = image.header
frame = fabio.fabioimage.FabioFrame(data=data, header=header)
else:
raise IOError("fopen: Cannot access frame: {} (0<=frame<{})".format(frameno, nframes))
return frame
def get_data_counts(shape=None):
'''
Counts all items specified by shape
'''
if shape is None:
shape = ()
counts = 1
for ishape in range(0, len(shape)):
counts *= shape[ishape]
return(counts)
#============================================
# Hint: Must be defined outside the test case class, otherwise used as test
def test_00(cls, filename, avglist=None, keylist=None):
"""
Checks the correct shape of the data arrays.
Compares the mean value of each data frame array, with the number given in avglist.
filename: name of file to test
avglist: list of average values for each frame, stops, if not equal
keylist: list of keys to read, stops, if not available
If avglist or keylist is shorter than frameno, the last value in the list is used.
"""
image = fabio.open(filename)
nframes = image.nframes
if hasattr(image, "npsdframes"):
npsdframes = image.npsdframes
nerrorframes = image.nerrorframes
else:
npsdframes = image.nframes
nerrorframes = 0
# To avoid warnings make different loops over psd data and error data
# psd data
for frameno in range(0, npsdframes):
frame = open_frame(filename, frameno)
# check data shape
counts = get_data_counts(frame.shape)
data_counts = get_data_counts(frame.data.shape)
cls.assertEqual(counts, data_counts, "A:filename={},frameno={}: inconsistent data shapes: header.{},data.{}".
format(filename, frameno, frame.shape, frame.data.shape))
# calculate mean value
fsum = numpy.sum(frame.data)
fmean = fsum / counts
logging.debug("filename={},frameno={},sum={},counts={},fmean={}".format(filename, frameno, fsum, counts, fmean))
# read known mean value from avglist
if avglist is not None:
if len(avglist) > frameno:
avg = avglist[frameno]
else:
avg = avglist[-1]
cls.assertLessEqual(abs(fmean - avg), abs(fmean + avg) * 5e-6, "B:filename={},frameno={}: unexpected average value: calculated {}, expected {}".
format(filename, frameno, fmean, avg))
# read a key to read from keylist
if keylist is not None:
if len(keylist) > frameno:
key = keylist[frameno]
else:
key = keylist[-1]
if key in frame.header:
logging.debug("filename={}, frameno={}: '{}' = {}".format(filename, frameno, key, frame.header[key]))
else:
logging.debug("filename={}, frameno={}: '{}' = None".format(filename, frameno, key))
cls.assertIn(key, frame.header, "C:filename={},frameno={}: Missing expected header key '{}'".format(filename, frameno, key))
# error data
for frameno in range(0, nerrorframes):
frame = open_frame(filename, -frameno - 1)
# check data shape
counts = get_data_counts(frame.shape)
data_counts = get_data_counts(frame.data.shape)
cls.assertEqual(counts, data_counts, "D:filename={},frameno={}: inconsistent data shapes: header.{},data.{}".
format(filename, frameno, frame.shape, frame.data.shape))
# calculate mean value
fsum = numpy.sum(frame.data)
fmean = sum / counts
logging.debug("filename={},frameno={},sum={},counts={},fmean={}".format(filename, frameno, fsum, counts, fmean))
# read known mean value from avglist
if avglist is not None:
# error frames are taken from the end
if len(avglist) > nframes - frameno - 1:
avg = avglist[nframes - frameno - 1]
else:
avg = avglist[-1]
cls.assertLessEqual(abs(fmean - avg), abs(fmean + avg) * 5e-6,
"E:filename={},frameno={}: unexpected average value: calculated {}, expected {}".
format(filename, frameno, fmean, avg))
# read a key to read from keylist
if keylist is not None:
if len(keylist) > nframes - frameno - 1:
key = keylist[nframes - frameno - 1]
else:
key = keylist[-1]
if key in frame.header:
logging.debug("filename={},frameno={}: key='{}'".format(filename, frameno, key, frame.header[key]))
else:
logging.debug("filename={},frameno={}: key=None".format(filename, frameno, key))
cls.assertIn(key, frame.header, "F:filename={},frameno={}: Missing expected header key '{}'".format(filename, frameno, key))
class EdfBlockBoundaryCases(unittest.TestCase):
"""
Test some special cases
"""
def setUp(self):
unittest.TestCase.setUp(self)
self.files = UtilsTest.resources.getdir("ehf_images2.tar.bz2")
self.root = os.path.join(self.files[0], "..")
def test_edfblocktypes(self):
"""
Test reading (gzipped) extended edf multi frame data files with and without a general block
The files have been prepared with make_multiedfs.sh.
The pixel values of each frame are equal to the frame number for checking reading the correct data.
multi5.edf.gz: 5 frames without general block, preset frameno
multi5+gblk.edf.gz: 5 frames starting with general block, preset to frameno,
DefaultKey added to the general block, it must be available for all frames
multi5_gzip.edf : like multi5.edf.gz, but with internal compression
multi5+gblk_gzip.edf : like multi5+gblk.edf.gz, but with internal compression
"""
avglist = [0., 1., 2., 3., 4.]
filename = os.path.join(self.root, "00_edfblocktypes/multi5.edf.gz")
test_00(self, filename, avglist)
keylist = ["DefaultKey"] # the defaultkey is coming from the general block
filename = os.path.join(self.root, "00_edfblocktypes/multi5+gblk.edf.gz")
test_00(self, filename, avglist, keylist)
filename = os.path.join(self.root, "00_edfblocktypes/multi5+gblk_gzip.edf")
test_00(self, filename, avglist)
filename = os.path.join(self.root, "00_edfblocktypes/multi5_gzip.edf")
test_00(self, filename, avglist)
def test_edfsingle_raw_bf_gblk(self):
"""
Reading an uncompressed edf-single-frame-file with references to data
in externally saved dataframes.
Check average data value, and verify that the key ExperimentInfo is
correctly read from the general block.
"""
avglist = [25743.2]
filename = os.path.join(self.root, "01_single_raw_bf_gblk/pj19_frelon_00028_raw.ehf")
keylist = ["ExperimentInfo"]
test_00(self, filename, avglist, keylist)
def test_edfmulti_raw_bf_gblk(self):
"""
Reading an uncompressed edf-multi-frame-file with references to data
in externally saved dataframes and checking the average of each frame.
Some header values are modified for checking the robustness.
frames 0..16: Test reading from a multi frame edf file with links to
external binary files (ehf)
frame 17: Test reading without EDF_BinaryFileSize => must be
estimated from data size
frame 18: Test reading with EDF_BinaryFileSize bigger than required
=> currently an unnecessary info is given
"""
avglist = [9584.23, 9592.64, 9591.69, 9599.7, 9602.51, 9604.29,
9610.97, 9609.86, 9614.14, 9610.52, 9603.12, 9603.27,
9600.22, 9606.86, 9605.26, 9601.37, 9606.09, 9604.51,
9604.45, 9617.5]
filename = os.path.join(self.root, "02_multi_raw_bf_gblk/rh28a_saxs_00022_raw_binned.ehf")
test_00(self, filename, avglist)
def test_edfmulti_raw_dark_raw_bf_gblk(self):
"""
Linking data of several frames to different parts of a single external
binary file.
rh28a_saxs_00003_dark_binned.ehf:
WARNING:fabio.edfimage:Under-short header frame 2: only 311 bytes
=> this should disappear when reading EDF_BlockBoundary
INFO:fabio.edfimage:Data stream is padded : 29184 > required 28800 bytes
=> unnecessary, it cannot be avoided, e.g. for saving byte arrays of odd length
rh28a_saxs_00003_raw_binned.ehf:
INFO:fabio.edfimage:Data stream is padded : 29184 > required 28800 bytes
=> unnecessary, feature, e.g. for saving byte arrays of odd length
"""
avglist = [2487.36, 2488.28, 2488.11]
filename = os.path.join(self.root, "03_multi_raw_dark_bf_gblk/rh28a_saxs_00003_dark_binned.ehf")
test_00(self, filename, avglist)
avglist = [9651.25]
filename = os.path.join(self.root, "03_multi_raw_dark_bf_gblk/rh28a_saxs_00003_raw_binned.ehf")
test_00(self, filename, avglist)
def test_edfsingle_raw_bf_gblk_gz(self):
"""
Test reading gzipped data files linking to an external binary data file.
Check that the extension .gz is added to the name of the external binary
data file if it cannot be opened with the binary file name found in the
header. Both files are gzipped.
"""
avglist = [25743.2]
filename = os.path.join(self.root, "04_single_raw_bf_gblk_gz/pj19_frelon_00028_raw.ehf.gz")
test_00(self, filename, avglist)
def test_edf6_single_raw_bf_gblk_gz(self):
"""
Test reading gzipped data files linking to an external binary data file.
Check that the extension .gz is added to the name of the external binary
data file if it cannot be opened with the binary file name found in the
header. Only the binary data file is gzipped.
"""
avglist = [25743.2]
filename = os.path.join(self.root, "06_single_raw_bf_gblk_gz/pj19_frelon_00028_raw.ehf")
test_00(self, filename, avglist)
def test_edfmulti_raw_bf_gblk_gz(self):
"""
Test reading the files of the test test_edfmulti_raw_bf_gblk after
gzipping.
Test reading from multi frame files, like test_edfmulti_raw_bf_gblk, but
but with all files gzipped.
frames 0..16: Test reading from a multi frame edf file with links to
external binary files (ehf)
frame 17: Test reading without EDF_BinaryFileSize => should be
estimated from data size
frame 18: Test reading with EDF_BinaryFileSize bigger than required
=> currently an unnecessary info is given
frame 19: Test reading with a wrong EDF_BinaryFileSize that excceeds
the real file size. => data must only be read to the end
of the binary data file.
"""
avglist = [9584.23, 9592.64, 9591.69, 9599.7, 9602.51, 9604.29,
9610.97, 9609.86, 9614.14, 9610.52, 9603.12, 9603.27,
9600.22, 9606.86, 9605.26, 9601.37, 9606.09, 9604.51,
9604.45, 9617.5]
filename = os.path.join(self.root, "07_multi_raw_bf_gblk_gz/rh28a_saxs_00022_raw_binned.ehf.gz")
test_00(self, filename, avglist)
def test_pitfalls(self):
"""
multi5+headerblob_edf1.edf.gz
multi5+headerblob+headerendinheader_edf1.edf.gz
multi5+pitfalls_edf1.edf.gz
multi5+headerblob_edf0.edf.gz
multi5+headerblob+headerendinheader_edf0.edf.gz
multi5+pitfalls_edf0.edf.gz
"""
# edf1 file => must always work
avglist = [0, 1, 2, 3, 4]
filename = os.path.join(self.root, "08_pitfalls/multi5+pitfalls_edf1.edf.gz")
test_00(self, filename, avglist)
# edf1 file with header end pattern in binary blob => must always work
avglist = [18312, 18312, 18312, 18312, 18312]
filename = os.path.join(self.root, "08_pitfalls/multi5+headerblob_edf1.edf.gz")
test_00(self, filename, avglist)
# edf1 file with header end pattern in Title value and binary blob
# => must always work
filename = os.path.join(self.root, "08_pitfalls/multi5+headerblob+headerendinheader_edf1.edf.gz")
test_00(self, filename, avglist)
# edf0 file => must always work
avglist = [0, 1, 2, 3, 4]
filename = os.path.join(self.root, "08_pitfalls/multi5+pitfalls_edf0.edf.gz")
test_00(self, filename, avglist)
# edf0 file with header end pattern in binary blob => must always work
avglist = [18312, 18312, 18312, 18312, 18312]
filename = os.path.join(self.root, "08_pitfalls/multi5+headerblob_edf0.edf.gz")
test_00(self, filename, avglist)
# edf0 file with header end pattern in Title value and binary blob
# => usually fails, because the header end pattern is searched
# by parsing each byte of the header.
# The next test usually fails, because the value of the header key
# "Title" contains a header end pattern.
# There is no safe way of reading such files.
# When writing the files it must be checked that no special
# characters are written to header values, especially
# not '{', '}', ';'.
# Searching the end_marker in a header in steps of BLOCKSIZE
# instead of searching through the whole header byte for
# byte would allow reading most of such files, but success is not
# guaranteed. => Do not write special character to the header
# test_00(self,"08_pitfalls/multi5+headerblob+headerendinheader_edf0.edf.gz",avglist)
def test_special(self):
"""
09_special/face_ok.edf.gz
09_special/face_headerendatboundary1.edf.gz
09_special/face_headerendatboundary2.edf.gz
09_special/face_headerendatboundary3.edf.gz
09_special/face_tooshort.edf.gz
"""
avglist = [0.178897]
filename = os.path.join(self.root, "09_special/face_ok.edf.gz")
test_00(self, filename, avglist)
# The next 3 tests check that edf files can be
# read where the header end pattern spreads over a
# BLOCKSIZE boundary. This is usually not a problem
# for header blocks that are padded to multiples of BLOCKSIZE
# and that are aligned to BLOCKSIZE boundaries.
# This error can happen if edf header are modified with
# an editor.
# The following tests will fail if distributed header end
# patterns are not recognized.
avglist = [0.178897]
# header end character '}' at BLOCKSIZE-1 followed by '\n' at BLOCKSIZE
filename = os.path.join(self.root, "09_special/face_headerendatboundary1.edf.gz")
test_00(self, filename, avglist)
# first part of header end pattern '}\r' at BLOCKSIZE-2 followed by '\n' at BLOCKSIZE
filename = os.path.join(self.root, "09_special/face_headerendatboundary2.edf.gz")
test_00(self, filename, avglist)
# header end character '}' at BLOCKSIZE-1 followed by '\n' at BLOCKSIZE
filename = os.path.join(self.root, "09_special/face_headerendatboundary3.edf.gz")
test_00(self, filename, avglist)
# Here, the binary blob is too short
# like 09_special/face_headerendatboundary1.edf.gz, but in addition
# the binary blob is too short by 1 byte.
# Currently, an error message is shown and the data
# is truncated
# avglist=[0.178897]
# filename = os.path.join(self.root,"09_special/face_tooshort.edf.gz")
# test_00(self,filename,avglist)
# test files 10 and 11 for testing with to be copied and added later
def suite():
loadTests = unittest.defaultTestLoader.loadTestsFromTestCase
testsuite = unittest.TestSuite()
testsuite.addTest(loadTests(EdfBlockBoundaryCases))
return testsuite
if __name__ == '__main__':
runner = unittest.TextTestRunner()
runner.run(suite())
|