forked from rom-py/rompy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_templates.py
52 lines (42 loc) · 1.21 KB
/
test_templates.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
from pathlib import Path
from datetime import datetime
import pytest
from utils import compare_files
from rompy import TEMPLATES_DIR
from rompy.model import ModelRun
from rompy.core import BaseConfig, TimeRange
here = Path(__file__).parent
@pytest.fixture
def template():
return BaseConfig(
template="../rompy/templates/base",
)
# def test_template():
# config = BaseConfig()
# assert config.template == os.path.join(TEMPLATES_DIR, "base")
def test_newbaseconfig(tmpdir):
"""Test the swantemplate function."""
config = BaseConfig(arg1="foo", arg2="bar")
runtime = ModelRun(
run_id="test_base",
output_dir=str(tmpdir),
config=config,
)
runtime.generate()
compare_files(
tmpdir / runtime.run_id / "INPUT",
here / "simulations" / "test_base_ref" / "INPUT",
)
def test_custom_template(tmpdir):
config = BaseConfig(arg1="foo", arg2="bar")
runtime = ModelRun(
run_id="test_base",
output_dir=str(tmpdir),
template="simple_templates/base",
config=config,
)
runtime.generate()
compare_files(
here / "simulations" / "test_base_ref" / "INPUT",
tmpdir / runtime.run_id / "INPUT",
)