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
|
# THIS FILE IS PART OF THE CYLC WORKFLOW ENGINE.
# Copyright (C) NIWA & British Crown (Met Office) & Contributors.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from pathlib import Path
import pytest
try:
from cylc.flow.main_loop.log_data_store import (
_dump,
_plot,
_iter_data_store
)
except ModuleNotFoundError as exc:
if exc.name == 'pympler':
pytest.skip(
'pympler required for these tests',
allow_module_level=True
)
else:
raise
@pytest.fixture()
def test_data():
return {
'times': [1, 2, 3],
'objects': {
'foo': [4, 5, 6]
},
'size': {
'foo': [7, 8, 9]
}
}
def test_dump(test_data, tmp_path):
"""Ensure the data is serialiseable."""
assert _dump(test_data, tmp_path)
assert list(tmp_path.iterdir()) == [
Path(tmp_path, 'cylc.flow.main_loop.log_data_store.json')
]
def test_plot_no_data(tmp_path):
"""Ensure plotting skips if data insufficient."""
assert not _plot({'times': [1]}, tmp_path)
def test_plot(test_data, tmp_path):
"""Ensure the plotting mechanism doesn't raise errors."""
pytest.importorskip('matplotlib', reason='requires matplotlib')
assert _plot(test_data, tmp_path)
assert list(tmp_path.iterdir()) == [
Path(tmp_path, 'cylc.flow.main_loop.log_data_store.pdf')
]
def test_iter_data_store():
assert (
list(_iter_data_store({'x': {'a': 1, 'workflow': 2, 'c': 3}}))
) == [
('a', 1), ('c', 3)
]
|