Files
ndbioimage/tests/test_open.py
Wim Pomp ff6c1aa8a8 - base & view model for imread
- transforms bugfix
- implement (nan)var and (nan)std
- add tests
2023-08-18 18:10:42 +02:00

26 lines
838 B
Python

import pickle
import pytest
from pathlib import Path
from multiprocessing import active_children
from ndbioimage import Imread, ReaderNotFoundError
@pytest.mark.parametrize('file', (Path(__file__).parent / 'files').iterdir())
def test_open(file):
try:
with Imread(file) as im:
mean = im[dict(c=0, z=0, t=0)].mean()
b = pickle.dumps(im)
jm = pickle.loads(b)
assert jm[dict(c=0, z=0, t=0)].mean() == mean
v = im.view()
assert v[dict(c=0, z=0, t=0)].mean() == mean
b = pickle.dumps(v)
w = pickle.loads(b)
assert w[dict(c=0, z=0, t=0)].mean() == mean
except ReaderNotFoundError:
assert len(Imread.__subclasses__()), 'No subclasses for Imread found.'
for child in active_children():
child.kill()