-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#3392: Add basic function and basic tests.
- Loading branch information
1 parent
e5705db
commit d68e821
Showing
3 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains 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
77 changes: 77 additions & 0 deletions
77
...ltool/utils/recipe_test_workflow/recipe_test_workflow/app/configure/bin/test_configure.py
This file contains 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,77 @@ | ||
import pytest | ||
from bin.configure import validate_user_config_file | ||
from esmvalcore.config._config_validators import ValidationError | ||
|
||
# Run tests with `pytest -c dev/null`. | ||
|
||
|
||
def test_validate_user_config_file(): | ||
mock_valid_config = { | ||
"output_dir": "~/esmvaltool_output", | ||
"auxiliary_data_dir": "~/auxiliary_data", | ||
"search_esgf": "never", | ||
"download_dir": "~/climate_data", | ||
"max_parallel_tasks": None, | ||
"log_level": "info", | ||
"exit_on_warning": True, | ||
"output_file_type": "png", | ||
} | ||
result = validate_user_config_file(mock_valid_config) | ||
assert result is None | ||
|
||
|
||
def test_validate_user_config_file_one_validation_error(): | ||
mock_one_invalid_config = { | ||
"output_dir": "~/esmvaltool_output", | ||
"auxiliary_data_dir": "~/auxiliary_data", | ||
"search_esgf": "never", | ||
"download_dir": "~/climate_data", | ||
"max_parallel_tasks": None, | ||
"log_level": "info", | ||
"exit_on_warning": 100, | ||
"output_file_type": "png", | ||
} | ||
with pytest.raises( | ||
ValidationError, | ||
match='Validation error for EXIT_ON_WARNING with value "100"\n' | ||
'ERROR: Could not convert `100` to `bool`\n'): | ||
validate_user_config_file(mock_one_invalid_config) | ||
|
||
|
||
def test_validate_user_config_file_two_validation_errors(): | ||
mock_two_invalids_config = { | ||
"output_dir": 111, | ||
"auxiliary_data_dir": "~/auxiliary_data", | ||
"search_esgf": "never", | ||
"download_dir": "~/climate_data", | ||
"max_parallel_tasks": None, | ||
"log_level": "info", | ||
"exit_on_warning": 100, | ||
"output_file_type": "png", | ||
} | ||
with pytest.raises( | ||
ValidationError, | ||
match='Validation error for OUTPUT_DIR with value "111"\nERROR: ' | ||
'Expected a path, but got 111\n\nValidation error for ' | ||
'EXIT_ON_WARNING with value "100"\nERROR: Could not convert `100` ' | ||
'to `bool`\n'): | ||
validate_user_config_file(mock_two_invalids_config) | ||
|
||
|
||
def test_validate_user_config_file_key_error(): | ||
mock_one_key_error = { | ||
"output_dir": "~/esmvaltool_output", | ||
"auxiliary_data_dir": "~/auxiliary_data", | ||
"search_esgf": "never", | ||
"download_dir": "~/climate_data", | ||
"one_rogue_field": 90210, | ||
"max_parallel_tasks": None, | ||
"log_level": "info", | ||
"exit_on_warning": True, | ||
"output_file_type": "png", | ||
} | ||
with pytest.raises( | ||
ValidationError, | ||
match="Key Error for ONE_ROGUE_FIELD. May not be a valid " | ||
"ESMValTool user configuration key\nERROR: 'one_rogue_field'\n"): | ||
validate_user_config_file(mock_one_key_error) |