-
Couldn't load subscription status.
- Fork 1
sofar: Update dimension handling #119
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
Draft
Parent:
Release sofar 1.2.0
f-brinkmann
wants to merge
5
commits into
develop
Choose a base branch
from
update_dimension_handling
base: develop
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.
Draft
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
118bc6a
update tests for changed names of optional variables
f-brinkmann 387aa5f
add tests for consistency of dimensions
f-brinkmann 52b5999
fix ruff
f-brinkmann 3b01e0e
Update test_conventions_dimensions_consistency.py
f-brinkmann fee8bf0
Merge branch 'develop' into update_dimension_handling
f-brinkmann 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| """ | ||
| This tests for consistent dimensions in the convention files. | ||
|
|
||
| All dimensions must be of the same length. E.g., the set of dimensions 'M, ME' | ||
| is invalid and should be 'MI, 'ME'. | ||
|
|
||
| This cannot be done as part of Sofa.verify, because it would make it impossible | ||
| to read SOFA files written with deprecated conventions that are containing | ||
| inconsistent dimensions. | ||
| """ | ||
| import sofar as sf | ||
| import numpy as np | ||
| import pytest | ||
| import json | ||
|
|
||
| convention_paths = sf.utils._get_conventions('path') | ||
|
|
||
|
|
||
| def check_dimensions_consistency(convention_path): | ||
| """ | ||
| Check for consistent dimensions. | ||
|
|
||
| Parameters | ||
| ---------- | ||
| convention_path : str | ||
| path to the SOFA convention to be checked. Must be a json file. | ||
|
|
||
| Raises | ||
| ------ | ||
| ValueError if one or more inconsistent dimensions are found. | ||
| """ | ||
|
|
||
| with open(convention_path, "r") as file: | ||
| convention = json.load(file) | ||
|
|
||
| name = convention['GLOBAL:SOFAConventions']['default'] + ' v' + \ | ||
| convention['GLOBAL:SOFAConventionsVersion']['default'] | ||
|
|
||
| errors = [] | ||
|
|
||
| for key, value in convention.items(): | ||
|
|
||
| dimensions = value['dimensions'] | ||
|
|
||
| if dimensions is None: | ||
| continue | ||
|
|
||
| dim_length = [len(dim) for dim in dimensions.split(", ")] | ||
| if len(np.unique(dim_length)) > 1: | ||
|
|
||
| # get verbose string for error message containing the number of | ||
| # dimensions and the actual dimensions, e.g., 2 (MR), 3 (MRE) | ||
| dim_length_string = [] | ||
| for length, dim in zip(dim_length, dimensions.split(", ")): | ||
| dim_length_string.append(f'{length} ({dim})') | ||
|
|
||
| errors.append(f'{key}: {", ".join(dim_length_string)}') | ||
|
|
||
| # raise error at the end in case there are multiple inconsistencies | ||
| if len(errors): | ||
| raise ValueError((f'Found dimensions of unequal length for {name}: ' | ||
| f'{"; ".join(errors)}')) | ||
|
|
||
|
|
||
| @pytest.mark.parametrize('convention_path', convention_paths) | ||
| def test_dimensions_consistency(convention_path): | ||
| """ | ||
| Check up to date conventions and skip deprecated. | ||
| This must not raise errors. | ||
| """ | ||
|
|
||
| if 'deprecated' in convention_path: | ||
| return 0 | ||
|
|
||
| check_dimensions_consistency(convention_path) | ||
|
|
||
|
|
||
| def test_dimensions_consistency_error(): | ||
| """Check selected deprecated convention. This must raise and error.""" | ||
|
|
||
| for convention_path in convention_paths: | ||
| if convention_path.endswith('FreeFieldDirectivityTF_1.0.json'): | ||
| break | ||
|
|
||
| with pytest.raises(ValueError, match='Found dimensions of unequal length'): | ||
| check_dimensions_consistency(convention_path) | ||
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.