Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
calibration
pycalibration
Commits
22f45273
Commit
22f45273
authored
4 years ago
by
Cyril Danilevski
Browse files
Options
Downloads
Patches
Plain Diff
Add test to get_dir_creation_date
parent
90b592c6
No related branches found
No related tags found
1 merge request
!364
Sanitize cal_tools.tools.get_creation_date
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cal_tools/cal_tools/tools.py
+3
-2
3 additions, 2 deletions
cal_tools/cal_tools/tools.py
tests/test_cal_tools.py
+17
-0
17 additions, 0 deletions
tests/test_cal_tools.py
with
20 additions
and
2 deletions
cal_tools/cal_tools/tools.py
+
3
−
2
View file @
22f45273
...
@@ -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
'
...
...
This diff is collapsed.
Click to expand it.
tests/test_cal_tools.py
0 → 100644
+
17
−
0
View file @
22f45273
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
'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment