-
Notifications
You must be signed in to change notification settings - Fork 39
Take XIOS file frequency configuration from iodef.xml where possible #212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
EdHone
wants to merge
8
commits into
MetOffice:main
Choose a base branch
from
EdHone:171-iodef-files
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6c1886f
Add test framework for iodef.xml files
EdHone 1f519e7
New test and tweak for file functionality
EdHone de2bea2
fix tests and gitignore
EdHone b76ed1c
Remove original iodef.xml
EdHone a156a9c
Test tweaks)
EdHone acb8fcc
Make testing framework thread-safe
EdHone b8bcb9e
Testing framework fully fixed
EdHone 5f5620a
Sci/tech review comments
EdHone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
components/lfric-xios/integration-test/lfric_xios_temporal_iodef_test.f90
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| !----------------------------------------------------------------------------- | ||
| ! (C) Crown copyright 2025 Met Office. All rights reserved. | ||
| ! The file LICENCE, distributed with this code, contains details of the terms | ||
| ! under which the code may be used. | ||
| !----------------------------------------------------------------------------- | ||
|
|
||
| ! Tests the LFRic-XIOS temporal reading functionality using iodef file configuration. | ||
| ! Correct behaviour is to read only the minimal required time-entries from | ||
| ! input file at the correct times. The validity of the data written from this | ||
| ! test is checked against the input data in the python part of the test. | ||
| program lfric_xios_temporal_iodef_test | ||
|
|
||
| use constants_mod, only: r_def | ||
| use event_mod, only: event_action | ||
| use event_actor_mod, only: event_actor_type | ||
| use field_mod, only: field_type, field_proxy_type | ||
| use file_mod, only: FILE_MODE_READ, FILE_MODE_WRITE | ||
| use io_context_mod, only: callback_clock_arg | ||
| use lfric_xios_action_mod, only: advance | ||
| use lfric_xios_context_mod, only: lfric_xios_context_type | ||
| use lfric_xios_driver_mod, only: lfric_xios_initialise, lfric_xios_finalise | ||
| use lfric_xios_file_mod, only: lfric_xios_file_type, OPERATION_TIMESERIES | ||
| use linked_list_mod, only: linked_list_type | ||
| use log_mod, only: log_event, log_level_info | ||
| use test_db_mod, only: test_db_type | ||
|
|
||
| implicit none | ||
|
|
||
| type(test_db_type) :: test_db | ||
| type(lfric_xios_context_type), target, allocatable :: io_context | ||
|
|
||
| procedure(callback_clock_arg), pointer :: before_close | ||
| type(linked_list_type), pointer :: file_list | ||
| class(event_actor_type), pointer :: context_actor | ||
| procedure(event_action), pointer :: context_advance | ||
| type(field_type), pointer :: rfield | ||
| type(field_proxy_type) :: rproxy | ||
|
|
||
| call test_db%initialise() | ||
| call lfric_xios_initialise( "test", test_db%comm, .false. ) | ||
|
|
||
| ! =============================== Start test ================================ | ||
|
|
||
| allocate(io_context) | ||
| call io_context%initialise( "test_io_context", 1, 10 ) | ||
|
|
||
| file_list => io_context%get_filelist() | ||
| call file_list%insert_item( lfric_xios_file_type( "lfric_xios_temporal_input", & | ||
| xios_id="lfric_xios_temporal_input", & | ||
| io_mode=FILE_MODE_READ, & | ||
| operation=OPERATION_TIMESERIES, & | ||
| fields_in_file=test_db%temporal_fields ) ) | ||
| call file_list%insert_item( lfric_xios_file_type( "lfric_xios_temporal_output", & | ||
| xios_id="lfric_xios_temporal_output", & | ||
| io_mode=FILE_MODE_WRITE, & | ||
| operation=OPERATION_TIMESERIES, & | ||
| freq=1, & | ||
| fields_in_file=test_db%temporal_fields ) ) | ||
|
|
||
| before_close => null() | ||
| call io_context%initialise_xios_context( test_db%comm, & | ||
| test_db%chi, test_db%panel_id, & | ||
| test_db%clock, test_db%calendar, & | ||
| before_close ) | ||
|
|
||
|
|
||
| context_advance => advance | ||
| context_actor => io_context | ||
| call test_db%clock%add_event( context_advance, context_actor ) | ||
| call io_context%set_active(.true.) | ||
|
|
||
| do while (test_db%clock%tick()) | ||
| call test_db%temporal_fields%get_field("temporal_field", rfield) | ||
| rproxy = rfield%get_proxy() | ||
| call log_event("Valid data for this TS:", log_level_info) | ||
| print*,rproxy%data(1) | ||
| end do | ||
|
|
||
| deallocate(io_context) | ||
|
|
||
| ! ============================== Finish test ================================= | ||
|
|
||
| call lfric_xios_finalise() | ||
| call test_db%finalise() | ||
|
|
||
| end program lfric_xios_temporal_iodef_test |
113 changes: 113 additions & 0 deletions
113
components/lfric-xios/integration-test/lfric_xios_temporal_iodef_test.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,113 @@ | ||
| #!/usr/bin/env python3 | ||
| ############################################################################## | ||
| # (C) Crown copyright 2025 Met Office. All rights reserved. | ||
| # The file LICENCE, distributed with this code, contains details of the terms | ||
| # under which the code may be used. | ||
| ############################################################################## | ||
| """ | ||
| A set of tests which exercise the temporal reading functionality provided by | ||
| the LFRic-XIOS component. For these tests the file is configured mainly via | ||
| the iodef.xml file, rather than the fortran API. | ||
| The tests cover the reading of a piece of non-cyclic temporal data with data | ||
| points ranging from 15:01 to 15:10 in 10 1-minute intervals. The model start | ||
| time is changed to change how the model interacts with the data. | ||
| """ | ||
| from testframework import TestEngine, TestFailed | ||
| from xiostest import LFRicXiosTest | ||
| from pathlib import Path | ||
| import sys | ||
|
|
||
| ############################################################################### | ||
| class LfricXiosFullNonCyclicIodefTest(LFRicXiosTest): # pylint: disable=too-few-public-methods | ||
| """ | ||
| Tests the LFRic-XIOS temporal reading functionality for a full set of non-cyclic data | ||
| """ | ||
|
|
||
| def __init__(self): | ||
| super().__init__(command=[sys.argv[1], "non_cyclic_full.nml"], processes=1, iodef_file="iodef_temporal.xml") | ||
| self.gen_data('temporal_data.cdl', 'lfric_xios_temporal_input.nc') | ||
| self.gen_config( "non_cyclic_base.nml", "non_cyclic_full.nml", {} ) | ||
|
|
||
| def test(self, returncode: int, out: str, err: str): | ||
| """ | ||
| Test the output of the context test | ||
| """ | ||
|
|
||
| if returncode != 0: | ||
| print(out) | ||
| raise TestFailed(f"Unexpected failure of test executable: {returncode}\n" + | ||
| f"stderr:\n" + | ||
| f"{err}") | ||
| if not self.nc_data_match(Path(self.test_working_dir, 'lfric_xios_temporal_input.nc'), | ||
| Path(self.test_working_dir, 'lfric_xios_temporal_output.nc'), | ||
| 'temporal_field'): | ||
| raise TestFailed("Output data does not match input data for same time values") | ||
|
|
||
| return "Reading full set of non-cylic data okay..." | ||
|
|
||
|
|
||
| class LfricXiosFullNonCyclicIodefHighFreqTest(LFRicXiosTest): # pylint: disable=too-few-public-methods | ||
| """ | ||
| Tests the LFRic-XIOS temporal reading functionality for a full set of | ||
| non-cyclic data at higher model frequency | ||
| """ | ||
|
|
||
| def __init__(self): | ||
| super().__init__(command=[sys.argv[1], "non_cyclic_full.nml"], processes=1, iodef_file="iodef_temporal.xml") | ||
| self.gen_data('temporal_data.cdl', 'lfric_xios_temporal_input.nc') | ||
| self.gen_config( "non_cyclic_base.nml", "non_cyclic_full.nml", {"dt": 10.0, | ||
| "timestep_end": '60'} ) | ||
|
|
||
| def test(self, returncode: int, out: str, err: str): | ||
| """ | ||
| Test the output of the context test | ||
| """ | ||
|
|
||
| if returncode != 0: | ||
| print(out) | ||
| raise TestFailed(f"Unexpected failure of test executable: {returncode}\n" + | ||
| f"stderr:\n" + | ||
| f"{err}") | ||
| if not self.nc_data_match(Path(self.test_working_dir, 'lfric_xios_temporal_input.nc'), | ||
| Path(self.test_working_dir, 'lfric_xios_temporal_output.nc'), | ||
| 'temporal_field'): | ||
| raise TestFailed("Output data does not match input data for same time values") | ||
|
|
||
| return "Reading full set of non-cylic data okay..." | ||
|
|
||
|
|
||
| class LfricXiosFullNonCyclicIodefNoFreqTest(LFRicXiosTest): # pylint: disable=too-few-public-methods | ||
| """ | ||
| Tests the error handling for the case where there is no frequency set in either | ||
| the iodef or the fortran configuration. | ||
| """ | ||
|
|
||
| def __init__(self): | ||
| super().__init__(command=[sys.argv[1], "non_cyclic_full.nml"], processes=1) | ||
| self.gen_data('temporal_data.cdl', 'lfric_xios_temporal_input.nc') | ||
| self.gen_config( "non_cyclic_base.nml", "non_cyclic_full.nml", {} ) | ||
|
|
||
| def test(self, returncode: int, out: str, err: str): | ||
| """ | ||
| Test the output of the context test | ||
| """ | ||
|
|
||
| expected_xios_errs = ['In file "type_impl.hpp", function "void xios::CType<T>::_checkEmpty() const [with T = xios::CDuration]", line 210 -> Data is not initialized', | ||
| 'In file "type_impl.hpp", function "void xios::CType<xios::CDuration>::_checkEmpty() const [T = xios::CDuration]", line 210 -> Data is not initialized'] | ||
|
|
||
| if returncode == 134: | ||
| if self.xios_err[0].contents.strip() in expected_xios_errs: | ||
| return "Expected failure of test executable due to missing frequency setting." | ||
| else: | ||
| raise TestFailed("Test executable failed, but with unexpected error message.") | ||
| elif returncode == 0: | ||
| raise TestFailed("Test executable succeeded unexpectedly despite missing frequency setting.") | ||
| else: | ||
| raise TestFailed("Test executable failed with unexpected return code.") | ||
|
|
||
|
|
||
| ############################################################################## | ||
| if __name__ == "__main__": | ||
| TestEngine.run(LfricXiosFullNonCyclicIodefTest()) | ||
| TestEngine.run(LfricXiosFullNonCyclicIodefHighFreqTest()) | ||
| TestEngine.run(LfricXiosFullNonCyclicIodefNoFreqTest()) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not entirely comfortable with hard coding XIOS error messages like this, as will this error message be unique to unset frequency (?) However, I understand that XIOS does not throw succinct and meaningful error messages ! On balance it’s better to have this test than not!