forked from rom-py/rompy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_basemodel.py
82 lines (67 loc) · 2.04 KB
/
test_basemodel.py
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
from pathlib import Path
from datetime import datetime
import pytest
from utils import compare_files
from rompy.model import ModelRun
from rompy.core import BaseConfig, TimeRange
here = Path(__file__).parent
@pytest.fixture
def model(tmpdir):
return ModelRun(
run_id="test_base",
output_dir=str(tmpdir),
config=BaseConfig(arg1="foo", arg2="bar"),
# template=BaseConfig(),
)
@pytest.fixture
def gitlab_template(tmpdir):
return ModelRun(
output_dir=str(tmpdir),
template=BaseConfig(
template="[email protected]:oceanum/models/test-rompy-template.git",
)
)
def test_datetime_parse(tmpdir):
end = datetime(2022, 2, 21, 4)
for format in [
"%Y%m%d.%H%M%S",
"%Y%m%d.%H%M",
"%Y%m%dT%H%M%S",
"%Y%m%dT%H%M",
]:
model = ModelRun(
period=TimeRange(end=end.strftime(format), duration="1d"),
output_dir=str(tmpdir),
)
for period in ["year", "month", "day", "hour"]:
assert getattr(model.period.end, period) == getattr(end, period)
def test_datetime_parse_fail(tmpdir):
end = datetime(2022, 2, 21, 4)
for format in [
"%Y%m%d.%Hhello",
"%Y%m%dhello",
]:
try:
ModelRun(
period=TimeRange(end=end.strftime(format), duration="1d"),
output_dir=str(tmpdir),
)
except ValueError:
pass
else:
raise ValueError("Should not be able to parse {format}")
# test generate
def test_generate(model):
model.generate()
compare_files(
Path(model.output_dir) / model.run_id / "INPUT",
here / "simulations/test_base_ref/INPUT",
)
# repeat suite for gitlab template
@pytest.mark.skip(reason="gitlab template not ready following restructure")
def test_gitlab_template(gitlab_template):
gitlab_template.generate()
compare_files(
Path(gitlab_template.output_dir) / gitlab_template.run_id / "INPUT",
here / "simulations/test_base_ref/INPUT",
)