Skip to content

Support extensions defining top-level properties on collections #191

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

Merged
merged 6 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed

- Allow additional top-level properties on collections [#191](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/191)
- Exclude unset fields in search response [#166](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/166)
- Upgrade stac-fastapi to v2.4.9 [#172](https://github.com/stac-utils/stac-fastapi-elasticsearch/pull/172)
- Set correct default filter-lang for GET /search requests [#179](https://github.com/stac-utils/stac-fastapi-elasticsearch/issues/179)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Serializers."""
import abc
from copy import deepcopy
from typing import Any

import attr
Expand Down Expand Up @@ -121,18 +122,24 @@ def db_to_stac(cls, collection: dict, base_url: str) -> stac_types.Collection:
Returns:
stac_types.Collection: The STAC collection object.
"""
# Use dictionary unpacking to extract values from the collection dictionary
# Avoid modifying the input dict in-place ... doing so breaks some tests
collection = deepcopy(collection)

# Set defaults
collection_id = collection.get("id")
stac_extensions = collection.get("stac_extensions", [])
stac_version = collection.get("stac_version", "")
title = collection.get("title", "")
description = collection.get("description", "")
keywords = collection.get("keywords", [])
license = collection.get("license", "")
providers = collection.get("providers", {})
summaries = collection.get("summaries", {})
extent = collection.get("extent", {})
collection_assets = collection.get("assets", {})
collection.setdefault("type", "Collection")
collection.setdefault("stac_extensions", [])
collection.setdefault("stac_version", "")
collection.setdefault("title", "")
collection.setdefault("description", "")
collection.setdefault("keywords", [])
collection.setdefault("license", "")
collection.setdefault("providers", [])
collection.setdefault("summaries", {})
collection.setdefault(
"extent", {"spatial": {"bbox": []}, "temporal": {"interval": []}}
)
collection.setdefault("assets", {})

# Create the collection links using CollectionLinks
collection_links = CollectionLinks(
Expand All @@ -143,20 +150,7 @@ def db_to_stac(cls, collection: dict, base_url: str) -> stac_types.Collection:
original_links = collection.get("links")
if original_links:
collection_links += resolve_links(original_links, base_url)
collection["links"] = collection_links

# Return the stac_types.Collection object
return stac_types.Collection(
type="Collection",
id=collection_id,
stac_extensions=stac_extensions,
stac_version=stac_version,
title=title,
description=description,
keywords=keywords,
license=license,
providers=providers,
summaries=summaries,
extent=extent,
links=collection_links,
assets=collection_assets,
)
return stac_types.Collection(**collection)
42 changes: 42 additions & 0 deletions stac_fastapi/elasticsearch/tests/resources/test_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@

from ..conftest import create_collection, delete_collections_and_items, refresh_indices

CORE_COLLECTION_PROPS = [
"id",
"type",
"stac_extensions",
"stac_version",
"title",
"description",
"keywords",
"license",
"providers",
"summaries",
"extent",
"links",
"assets",
]


@pytest.mark.asyncio
async def test_create_and_delete_collection(app_client, load_test_data):
Expand Down Expand Up @@ -84,6 +100,32 @@ async def test_returns_valid_collection(ctx, app_client):
collection.validate()


@pytest.mark.asyncio
async def test_collection_extensions(ctx, app_client):
"""Test that extensions can be used to define additional top-level properties"""
ctx.collection.get("stac_extensions", []).append(
"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json"
)
test_asset = {"title": "test", "description": "test", "type": "test"}
ctx.collection["item_assets"] = {"test": test_asset}
resp = await app_client.put("/collections", json=ctx.collection)

assert resp.status_code == 200
assert resp.json().get("item_assets", {}).get("test") == test_asset


@pytest.mark.asyncio
async def test_collection_defaults(app_client):
"""Test that properties omitted by client are populated w/ default values"""
minimal_coll = {"id": str(uuid.uuid4())}
resp = await app_client.post("/collections", json=minimal_coll)

assert resp.status_code == 200
resp_json = resp.json()
for prop in CORE_COLLECTION_PROPS:
assert prop in resp_json.keys()


@pytest.mark.asyncio
async def test_pagination_collection(app_client, ctx, txn_client):
"""Test collection pagination links"""
Expand Down