Skip to content
Snippets Groups Projects
Commit 22f45273 authored by Cyril Danilevski's avatar Cyril Danilevski :scooter:
Browse files

Add test to get_dir_creation_date

parent 90b592c6
No related branches found
No related tags found
1 merge request!364Sanitize cal_tools.tools.get_creation_date
...@@ -12,6 +12,7 @@ from typing import Optional ...@@ -12,6 +12,7 @@ from typing import Optional
from urllib.parse import urljoin from urllib.parse import urljoin
import dateutil.parser import dateutil.parser
import h5py
import ipykernel import ipykernel
from metadata_client.metadata_client import MetadataClient from metadata_client.metadata_client import MetadataClient
from notebook.notebookapp import list_running_servers from notebook.notebookapp import list_running_servers
...@@ -264,12 +265,12 @@ def get_dir_creation_date(directory: str, run: int, ...@@ -264,12 +265,12 @@ def get_dir_creation_date(directory: str, run: int,
try: try:
dates = [] dates = []
for f in directory.glob('*.h5'): 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 = fin['METADATA/creationDate'][0].decode()
cdate = datetime.datetime.strptime(cdate, "%Y%m%dT%H%M%SZ") cdate = datetime.datetime.strptime(cdate, "%Y%m%dT%H%M%SZ")
dates.append(cdate) dates.append(cdate)
return min(dates) return min(dates)
except IOError: except (IOError, ValueError):
ntries -= 1 ntries -= 1
msg = 'Could not get the creation time from the directory' msg = 'Could not get the creation time from the directory'
......
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'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment