Conversation
An initial demonstration of how Xpublish EDR and other OGC APIs can become more complaint with full OGC specs. Uses https://github.com/xpublish-community/xpublish-ogc-core
for more information, see https://pre-commit.ci
Member
Author
|
This could let us use something like https://schemathesis.readthedocs.io/ to check for compliance to the OGC specs. https://schemathesis.readthedocs.io/en/stable/guides/python-apps/#integration-with-pytest-fixtures We should be able to use a pattern like import pytest
import schemathesis
from your_app import create_app
@pytest.fixture
def configured_app(database_session):
"""Set up your FastAPI app with dependencies"""
app = create_app()
app.state.db = database_session
return app
@pytest.fixture
def external_schema():
"""Load the external schema you need to conform to"""
return schemathesis.openapi.from_url(
"https://external-api.com/openapi.json"
)
@pytest.fixture
def api_schema(configured_app, external_schema):
"""Configure schema to test your app against external spec"""
# Use external schema but test against your app
external_schema.app = configured_app
return external_schema
schema = schemathesis.pytest.from_fixture("api_schema")
@schema.parametrize()
def test_operations(case):
case.call_and_validate() |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
An initial demonstration of how Xpublish EDR and other OGC APIs can become more complaint with full OGC specs.
Uses https://github.com/xpublish-community/xpublish-ogc-core