From 22f452738f23389b7baeaa6429fff67388f65de2 Mon Sep 17 00:00:00 2001 From: Cyril Danilevski <cyril.danilevski@xfel.eu> Date: Tue, 20 Oct 2020 17:46:15 +0200 Subject: [PATCH] Add test to get_dir_creation_date --- cal_tools/cal_tools/tools.py | 5 +++-- tests/test_cal_tools.py | 17 +++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 tests/test_cal_tools.py diff --git a/cal_tools/cal_tools/tools.py b/cal_tools/cal_tools/tools.py index a22a89cb1..49febfd9f 100644 --- a/cal_tools/cal_tools/tools.py +++ b/cal_tools/cal_tools/tools.py @@ -12,6 +12,7 @@ from typing import Optional from urllib.parse import urljoin import dateutil.parser +import h5py import ipykernel from metadata_client.metadata_client import MetadataClient from notebook.notebookapp import list_running_servers @@ -264,12 +265,12 @@ def get_dir_creation_date(directory: str, run: int, try: dates = [] for f in directory.glob('*.h5'): - with h5py.File(f) as fin: + with h5py.File(f, 'r') as fin: cdate = fin['METADATA/creationDate'][0].decode() cdate = datetime.datetime.strptime(cdate, "%Y%m%dT%H%M%SZ") dates.append(cdate) return min(dates) - except IOError: + except (IOError, ValueError): ntries -= 1 msg = 'Could not get the creation time from the directory' diff --git a/tests/test_cal_tools.py b/tests/test_cal_tools.py new file mode 100644 index 000000000..e93a75174 --- /dev/null +++ b/tests/test_cal_tools.py @@ -0,0 +1,17 @@ +from datetime import datetime +from pathlib import Path + +import pytest +from cal_tools.tools import get_dir_creation_date + + +def test_dir_creation_date(): + folder = "/gpfs/exfel/exp/DETLAB/202031/p900172/raw" + + date = get_dir_creation_date(folder, 10) + assert isinstance(date, datetime) + assert str(date) == '2020-07-20 10:39:03' + + with pytest.raises(ValueError) as e: + assert get_dir_creation_date(folder, 4) + assert e.value.args[1] == Path(folder) / 'r0004' -- GitLab