-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -122,6 +122,9 @@ venv.bak/ | |
# Rope project settings | ||
.ropeproject | ||
|
||
# ruff | ||
.ruff_cache/ | ||
|
||
# mkdocs documentation | ||
/site | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import asdf | ||
from asdf.extension import Extension | ||
from asdf.schema import check_schema, load_schema | ||
|
||
from asdf_pydantic import AsdfPydanticConverter | ||
from asdf_pydantic.examples.shapes import AsdfRectangle | ||
|
||
|
||
def setup_module(): | ||
AsdfPydanticConverter.add_models(AsdfRectangle) | ||
|
||
class TestExtension(Extension): | ||
extension_uri = "asdf://asdf-pydantic/examples/extensions/test-1.0.0" # type: ignore | ||
|
||
tags = [*AsdfPydanticConverter().tags] # type: ignore | ||
converters = [AsdfPydanticConverter()] # type: ignore | ||
|
||
# HACK: The schema URI should be referenced from `AsdfRectangle._schema`. | ||
# Then there should be a way to automatically add the schema to ASDF | ||
# resources perhaps during AsdfPydanticConverter.add_models(). Further | ||
# abstracting can be done later, perhaps defining a | ||
# AsdfPydanticExtension. | ||
asdf.get_config().add_resource_mapping( | ||
{ | ||
"asdf://asdf-pydantic/shapes/schemas/rectangle-1.0.0": ( | ||
AsdfRectangle.schema_asdf().encode("utf-8") | ||
) | ||
} | ||
) | ||
asdf.get_config().add_extension(TestExtension()) | ||
|
||
|
||
def test_schema(): | ||
schema = load_schema("asdf://asdf-pydantic/shapes/schemas/rectangle-1.0.0") | ||
|
||
check_schema(schema) | ||
|
||
assert schema["$schema"] == "http://stsci.edu/schemas/asdf/asdf-schema-1.0.0" | ||
assert schema["title"] == "AsdfRectangle" | ||
assert schema["id"] == "asdf://asdf-pydantic/examples/tags/rectangle-1.0.0" | ||
assert schema["tag"] == "tag:asdf-pydantic/examples/tags/rectangle-1.0.0" | ||
assert schema["type"] == "object" | ||
assert schema["properties"] == { | ||
"width": { | ||
"type": "number", | ||
"title": "Width", | ||
}, | ||
"height": { | ||
"type": "number", | ||
"title": "Height", | ||
}, | ||
} | ||
|
||
assert schema["required"] == ["width", "height"] |
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