mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
Assert that there is no ID metadata entry in definition containers
This commit is contained in:
parent
d561810024
commit
985aac9e60
1 changed files with 14 additions and 2 deletions
|
@ -58,7 +58,7 @@ def assertIsDefinitionValid(definition_container, path, file_name):
|
|||
# definition that defines a "value", the "default_value" is ineffective. This
|
||||
# test fails on those things.
|
||||
@pytest.mark.parametrize("file_name", machine_filepaths)
|
||||
def test_validateOverridingDefaultValue(file_name):
|
||||
def test_validateOverridingDefaultValue(file_name: str):
|
||||
definition_path = os.path.join(os.path.dirname(__file__), "..", "..", "resources", "definitions", file_name)
|
||||
with open(definition_path, encoding = "utf-8") as f:
|
||||
doc = json.load(f)
|
||||
|
@ -124,4 +124,16 @@ def merge_dicts(base: Dict[str, Any], overrides: Dict[str, Any]) -> Dict[str, An
|
|||
result[key] = merge_dicts(result[key], val)
|
||||
else:
|
||||
result[key] = val
|
||||
return result
|
||||
return result
|
||||
|
||||
## Verifies that definition contains don't have an ID field.
|
||||
#
|
||||
# ID fields are legacy. They should not be used any more. This is legacy that
|
||||
# people don't seem to be able to get used to.
|
||||
@pytest.mark.parametrize("file_name", machine_filepaths)
|
||||
def test_noId(file_name):
|
||||
definition_path = os.path.join(os.path.dirname(__file__), "..", "..", "resources", "definitions", file_name)
|
||||
with open(definition_path, encoding = "utf-8") as f:
|
||||
doc = json.load(f)
|
||||
|
||||
assert "id" not in doc, "Definitions should not have an ID field."
|
Loading…
Add table
Add a link
Reference in a new issue