Skip to content

OGC core for compliance#97

Draft
abkfenris wants to merge 2 commits into
mainfrom
ogc-core
Draft

OGC core for compliance#97
abkfenris wants to merge 2 commits into
mainfrom
ogc-core

Conversation

@abkfenris
Copy link
Copy Markdown
Member

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

abkfenris and others added 2 commits January 2, 2026 14:01
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
@abkfenris
Copy link
Copy Markdown
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()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant