1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
|
import posixpath
from collections.abc import Callable
from datetime import datetime, timedelta
import pytest
import pystac
from pystac.collection import Collection
from pystac.layout import (
APILayoutStrategy,
AsIsLayoutStrategy,
BestPracticesLayoutStrategy,
CustomLayoutStrategy,
LayoutTemplate,
TemplateLayoutStrategy,
)
from tests.utils import (
ARBITRARY_BBOX,
ARBITRARY_GEOM,
TestCases,
path_includes_drive_letter,
)
class TestLayoutTemplate:
def test_templates_item_datetime(self) -> None:
year = 2020
month = 11
day = 3
date = "2020-11-03"
dt = datetime(year, month, day, 18, 30)
template = LayoutTemplate("${year}/${month}/${day}/${date}/item.json")
item = pystac.Item(
"test",
geometry=ARBITRARY_GEOM,
bbox=ARBITRARY_BBOX,
datetime=dt,
properties={},
)
parts = template.get_template_values(item)
assert set(parts) == {"year", "month", "day", "date"}
assert parts["year"] == year
assert parts["month"] == month
assert parts["day"] == day
assert parts["date"] == date
path = template.substitute(item)
assert path == "2020/11/3/2020-11-03/item.json"
def test_templates_item_start_datetime(self) -> None:
year = 2020
month = 11
day = 3
date = "2020-11-03"
dt = datetime(year, month, day, 18, 30)
template = LayoutTemplate("${year}/${month}/${day}/${date}/item.json")
item = pystac.Item(
"test",
geometry=ARBITRARY_GEOM,
bbox=ARBITRARY_BBOX,
datetime=None,
properties={
"start_datetime": dt.isoformat(),
"end_datetime": (dt + timedelta(days=1)).isoformat(),
},
)
parts = template.get_template_values(item)
assert set(parts) == {"year", "month", "day", "date"}
assert parts["year"] == year
assert parts["month"] == month
assert parts["day"] == day
assert parts["date"] == date
path = template.substitute(item)
assert path == "2020/11/3/2020-11-03/item.json"
def test_templates_item_collection(self) -> None:
template = LayoutTemplate("${collection}/item.json")
collection = TestCases.case_4().get_child("acc")
assert collection is not None
item = next(collection.get_items())
assert item.collection_id is not None
parts = template.get_template_values(item)
assert len(parts) == 1
assert "collection" in parts
assert parts["collection"] == item.collection_id
path = template.substitute(item)
assert path == f"{item.collection_id}/item.json"
def test_throws_for_no_collection(self) -> None:
template = LayoutTemplate("${collection}/item.json")
collection = TestCases.case_4().get_child("acc")
assert collection is not None
item = next(collection.get_items())
item.set_collection(None)
assert item.collection_id is None
with pytest.raises(pystac.TemplateError):
template.get_template_values(item)
def test_nested_properties(self) -> None:
dt = datetime(2020, 11, 3, 18, 30)
template = LayoutTemplate("${test.prop}/${ext:extra.test.prop}/item.json")
item = pystac.Item(
"test",
geometry=ARBITRARY_GEOM,
bbox=ARBITRARY_BBOX,
datetime=dt,
properties={"test": {"prop": 4326}},
extra_fields={"ext:extra": {"test": {"prop": 3857}}},
)
parts = template.get_template_values(item)
assert set(parts) == {"test.prop", "ext:extra.test.prop"}
assert parts["test.prop"] == 4326
assert parts["ext:extra.test.prop"] == 3857
path = template.substitute(item)
assert path == "4326/3857/item.json"
def test_substitute_with_colon_properties(self) -> None:
dt = datetime(2020, 11, 3, 18, 30)
template = LayoutTemplate("${ext:prop}/item.json")
item = pystac.Item(
"test",
geometry=ARBITRARY_GEOM,
bbox=ARBITRARY_BBOX,
datetime=dt,
properties={"ext:prop": 1},
)
path = template.substitute(item)
assert path == "1/item.json"
def test_defaults(self) -> None:
template = LayoutTemplate(
"${doesnotexist}/collection.json", defaults={"doesnotexist": "yes"}
)
catalog = TestCases.case_4().get_child("acc")
assert catalog is not None
catalog.extra_fields = {"one": "two"}
path = template.substitute(catalog)
assert path == "yes/collection.json"
def test_docstring_examples(self) -> None:
item = pystac.Item.from_file(
TestCases.get_path(
"data-files/examples/1.0.0-beta.2/item-spec/"
"examples/landsat8-sample.json"
)
)
item.common_metadata.license = "CC-BY-3.0"
# Uses the year, month and day of the item
template1 = LayoutTemplate("${year}/${month}/${day}")
path1 = template1.substitute(item)
assert path1 == "2014/6/2"
# Uses a custom extension properties found on in the item properties.
template2 = LayoutTemplate("${landsat:path}/${landsat:row}")
path2 = template2.substitute(item)
assert path2 == "107/18"
# Uses the collection ID and a common metadata property for an item.
template3 = LayoutTemplate("${collection}/${common_metadata.license}")
path3 = template3.substitute(item)
assert path3 == "landsat-8-l1/CC-BY-3.0"
class TestCustomLayoutStrategy:
def get_custom_catalog_func(self) -> Callable[[pystac.Catalog, str, bool], str]:
def fn(cat: pystac.Catalog, parent_dir: str, is_root: bool) -> str:
return posixpath.join(parent_dir, f"cat/{is_root}/{cat.id}.json")
return fn
def get_custom_collection_func(
self,
) -> Callable[[pystac.Collection, str, bool], str]:
def fn(col: pystac.Collection, parent_dir: str, is_root: bool) -> str:
return posixpath.join(parent_dir, f"col/{is_root}/{col.id}.json")
return fn
def get_custom_item_func(self) -> Callable[[pystac.Item, str], str]:
def fn(item: pystac.Item, parent_dir: str) -> str:
return posixpath.join(parent_dir, f"item/{item.id}.json")
return fn
def test_produces_layout_for_catalog(self) -> None:
strategy = CustomLayoutStrategy(catalog_func=self.get_custom_catalog_func())
cat = pystac.Catalog(id="test", description="test desc")
href = strategy.get_href(cat, parent_dir="http://example.com", is_root=True)
assert href == "http://example.com/cat/True/test.json"
def test_produces_fallback_layout_for_catalog(self) -> None:
fallback = BestPracticesLayoutStrategy()
strategy = CustomLayoutStrategy(
collection_func=self.get_custom_collection_func(),
item_func=self.get_custom_item_func(),
fallback_strategy=fallback,
)
cat = pystac.Catalog(id="test", description="test desc")
href = strategy.get_href(cat, parent_dir="http://example.com")
expected = fallback.get_href(cat, parent_dir="http://example.com")
assert href == expected
def test_produces_layout_for_collection(self) -> None:
strategy = CustomLayoutStrategy(
collection_func=self.get_custom_collection_func()
)
collection = TestCases.case_8()
href = strategy.get_href(collection, parent_dir="http://example.com")
assert href == f"http://example.com/col/False/{collection.id}.json"
def test_produces_fallback_layout_for_collection(self) -> None:
fallback = BestPracticesLayoutStrategy()
strategy = CustomLayoutStrategy(
catalog_func=self.get_custom_catalog_func(),
item_func=self.get_custom_item_func(),
fallback_strategy=fallback,
)
collection = TestCases.case_8()
href = strategy.get_href(collection, parent_dir="http://example.com")
expected = fallback.get_href(collection, parent_dir="http://example.com")
assert href == expected
def test_produces_layout_for_item(self) -> None:
strategy = CustomLayoutStrategy(item_func=self.get_custom_item_func())
collection = TestCases.case_8()
item = next(collection.get_items(recursive=True))
href = strategy.get_href(item, parent_dir="http://example.com")
assert href == f"http://example.com/item/{item.id}.json"
def test_produces_fallback_layout_for_item(self) -> None:
fallback = BestPracticesLayoutStrategy()
strategy = CustomLayoutStrategy(
catalog_func=self.get_custom_catalog_func(),
collection_func=self.get_custom_collection_func(),
fallback_strategy=fallback,
)
collection = TestCases.case_8()
item = next(collection.get_items(recursive=True))
href = strategy.get_href(item, parent_dir="http://example.com")
expected = fallback.get_href(item, parent_dir="http://example.com")
assert href == expected
class TestTemplateLayoutStrategy:
TEST_CATALOG_TEMPLATE = "cat/${id}/${description}"
TEST_COLLECTION_TEMPLATE = "col/${id}/${license}"
TEST_ITEM_TEMPLATE = "item/${collection}/${id}.json"
def _get_collection(self) -> Collection:
result = TestCases.case_4().get_child("acc")
assert isinstance(result, Collection)
return result
def test_produces_layout_for_catalog(self) -> None:
strategy = TemplateLayoutStrategy(catalog_template=self.TEST_CATALOG_TEMPLATE)
cat = pystac.Catalog(id="test", description="test-desc")
href = strategy.get_href(cat, parent_dir="http://example.com")
assert href == "http://example.com/cat/test/test-desc/catalog.json"
def test_produces_layout_for_catalog_with_filename(self) -> None:
template = "cat/${id}/${description}/${id}.json"
strategy = TemplateLayoutStrategy(catalog_template=template)
cat = pystac.Catalog(id="test", description="test-desc")
href = strategy.get_href(cat, parent_dir="http://example.com")
assert href == "http://example.com/cat/test/test-desc/test.json"
def test_produces_fallback_layout_for_catalog(self) -> None:
fallback = BestPracticesLayoutStrategy()
strategy = TemplateLayoutStrategy(
collection_template=self.TEST_COLLECTION_TEMPLATE,
item_template=self.TEST_ITEM_TEMPLATE,
fallback_strategy=fallback,
)
cat = pystac.Catalog(id="test", description="test desc")
href = strategy.get_href(cat, parent_dir="http://example.com")
expected = fallback.get_href(cat, parent_dir="http://example.com")
assert href == expected
def test_produces_layout_for_collection(self) -> None:
strategy = TemplateLayoutStrategy(
collection_template=self.TEST_COLLECTION_TEMPLATE
)
collection = self._get_collection()
href = strategy.get_href(collection, parent_dir="http://example.com")
assert href == "http://example.com/col/{}/{}/collection.json".format(
collection.id, collection.license
)
def test_produces_layout_for_collection_with_filename(self) -> None:
template = "col/${id}/${license}/col.json"
strategy = TemplateLayoutStrategy(collection_template=template)
collection = self._get_collection()
href = strategy.get_href(collection, parent_dir="http://example.com")
assert href == "http://example.com/col/{}/{}/col.json".format(
collection.id, collection.license
)
def test_produces_fallback_layout_for_collection(self) -> None:
fallback = BestPracticesLayoutStrategy()
strategy = TemplateLayoutStrategy(
catalog_template=self.TEST_CATALOG_TEMPLATE,
item_template=self.TEST_ITEM_TEMPLATE,
fallback_strategy=fallback,
)
collection = self._get_collection()
href = strategy.get_href(collection, parent_dir="http://example.com")
expected = fallback.get_href(collection, parent_dir="http://example.com")
assert href == expected
def test_produces_layout_for_item(self) -> None:
strategy = TemplateLayoutStrategy(item_template=self.TEST_ITEM_TEMPLATE)
collection = self._get_collection()
item = next(collection.get_items())
href = strategy.get_href(item, parent_dir="http://example.com")
assert href == f"http://example.com/item/{item.collection_id}/{item.id}.json"
def test_produces_layout_for_item_without_filename(self) -> None:
template = "item/${collection}"
strategy = TemplateLayoutStrategy(item_template=template)
collection = self._get_collection()
item = next(collection.get_items())
href = strategy.get_href(item, parent_dir="http://example.com")
assert href == f"http://example.com/item/{item.collection_id}/{item.id}.json"
def test_produces_fallback_layout_for_item(self) -> None:
fallback = BestPracticesLayoutStrategy()
strategy = TemplateLayoutStrategy(
catalog_template=self.TEST_CATALOG_TEMPLATE,
collection_template=self.TEST_COLLECTION_TEMPLATE,
fallback_strategy=fallback,
)
collection = self._get_collection()
item = next(collection.get_items())
href = strategy.get_href(item, parent_dir="http://example.com")
expected = fallback.get_href(item, parent_dir="http://example.com")
assert href == expected
class TestBestPracticesLayoutStrategy:
def test_produces_layout_for_root_catalog(self) -> None:
strategy = BestPracticesLayoutStrategy()
cat = pystac.Catalog(id="test", description="test desc")
href = strategy.get_href(cat, parent_dir="http://example.com", is_root=True)
assert href == "http://example.com/catalog.json"
def test_produces_layout_for_child_catalog(self) -> None:
strategy = BestPracticesLayoutStrategy()
cat = pystac.Catalog(id="test", description="test desc")
href = strategy.get_href(cat, parent_dir="http://example.com")
assert href == "http://example.com/test/catalog.json"
def test_produces_layout_for_root_collection(self) -> None:
strategy = BestPracticesLayoutStrategy()
collection = TestCases.case_8()
href = strategy.get_href(
collection, parent_dir="http://example.com", is_root=True
)
assert href == "http://example.com/collection.json"
def test_produces_layout_for_child_collection(self) -> None:
strategy = BestPracticesLayoutStrategy()
collection = TestCases.case_8()
href = strategy.get_href(collection, parent_dir="http://example.com")
assert href == f"http://example.com/{collection.id}/collection.json"
def test_produces_layout_for_item(self) -> None:
strategy = BestPracticesLayoutStrategy()
collection = TestCases.case_8()
item = next(collection.get_items(recursive=True))
href = strategy.get_href(item, parent_dir="http://example.com")
expected = f"http://example.com/{item.id}/{item.id}.json"
assert href == expected
class TestAsIsLayoutStrategy:
def test_catalog(self) -> None:
strategy = AsIsLayoutStrategy()
expected_local_href = (
"/an/href" if not path_includes_drive_letter() else "D:/an/href"
)
cat = pystac.Catalog(id="test", description="test desc")
with pytest.raises(ValueError):
strategy.get_href(cat, parent_dir="http://example.com", is_root=True)
cat.set_self_href("/an/href")
href = strategy.get_href(cat, parent_dir="https://example.com", is_root=True)
assert href == expected_local_href
def test_collection(self) -> None:
strategy = AsIsLayoutStrategy()
expected_local_href = (
"/an/href" if not path_includes_drive_letter() else "D:/an/href"
)
collection = TestCases.case_8()
collection.set_self_href(None)
with pytest.raises(ValueError):
strategy.get_href(collection, parent_dir="http://example.com", is_root=True)
collection.set_self_href("/an/href")
href = strategy.get_href(
collection, parent_dir="https://example.com", is_root=True
)
assert href == expected_local_href
def test_item(self) -> None:
strategy = AsIsLayoutStrategy()
expected_local_href = (
"/an/href" if not path_includes_drive_letter() else "D:/an/href"
)
collection = TestCases.case_8()
item = next(collection.get_items(recursive=True))
item.set_self_href(None)
with pytest.raises(ValueError):
strategy.get_href(item, parent_dir="http://example.com")
item.set_self_href("/an/href")
href = strategy.get_href(item, parent_dir="http://example.com")
assert href == expected_local_href
class TestAPILayoutStrategy:
def test_produces_layout_for_root_catalog(self) -> None:
strategy = APILayoutStrategy()
cat = pystac.Catalog(id="test", description="test desc")
href = strategy.get_href(cat, parent_dir="http://example.com", is_root=True)
assert href == "http://example.com"
def test_produces_layout_for_root_catalog_str(self) -> None:
strategy = APILayoutStrategy()
cat = pystac.Catalog(id="test", description="test desc")
href = strategy.get_catalog_href(
cat.id, parent_dir="http://example.com", is_root=True
)
assert href == "http://example.com"
def test_produces_layout_for_child_catalog(self) -> None:
strategy = APILayoutStrategy()
cat = pystac.Catalog(id="test", description="test desc")
href = strategy.get_href(cat, parent_dir="http://example.com")
assert href == "http://example.com/test"
def test_produces_layout_for_child_catalog_str(self) -> None:
strategy = APILayoutStrategy()
cat = pystac.Catalog(id="test", description="test desc")
href = strategy.get_catalog_href(
cat.id, parent_dir="http://example.com", is_root=False
)
assert href == "http://example.com/test"
def test_cannot_produce_layout_for_root_collection(self) -> None:
strategy = APILayoutStrategy()
collection = TestCases.case_8()
with pytest.raises(ValueError):
strategy.get_href(collection, parent_dir="http://example.com", is_root=True)
def test_produces_layout_for_child_collection(self) -> None:
strategy = APILayoutStrategy()
collection = TestCases.case_8()
href = strategy.get_href(collection, parent_dir="http://example.com")
assert href == f"http://example.com/collections/{collection.id}"
def test_produces_layout_for_child_collection_str(self) -> None:
strategy = APILayoutStrategy()
collection = TestCases.case_8()
href = strategy.get_collection_href(
collection.id, parent_dir="http://example.com", is_root=False
)
assert href == f"http://example.com/collections/{collection.id}"
def test_produces_layout_for_item(self) -> None:
strategy = APILayoutStrategy()
collection = TestCases.case_8()
col_href = strategy.get_href(collection, parent_dir="http://example.com")
item = next(collection.get_items(recursive=True))
href = strategy.get_href(item, parent_dir=col_href)
expected = f"http://example.com/collections/{collection.id}/items/{item.id}"
assert href == expected
def test_produces_layout_for_item_str(self) -> None:
strategy = APILayoutStrategy()
collection = TestCases.case_8()
col_href = strategy.get_href(collection, parent_dir="http://example.com")
item = next(collection.get_items(recursive=True))
href = strategy.get_item_href(item.id, parent_dir=col_href)
expected = f"http://example.com/collections/{collection.id}/items/{item.id}"
assert href == expected
def test_produces_normalized_layout(self) -> None:
strategy = APILayoutStrategy()
cat = pystac.Catalog(id="test_catalog", description="Test Catalog")
col = pystac.Collection(
id="test_collection",
description="Test Collection",
extent=pystac.Extent(
spatial=pystac.SpatialExtent([[-180.0, -90.0, 180.0, 90.0]]),
temporal=pystac.TemporalExtent(
[[datetime(2023, 1, 1), datetime(2023, 12, 31)]]
),
),
)
item = pystac.Item(
id="test_item",
geometry={
"type": "Polygon",
"coordinates": [
[
[180.0, -90.0],
[180.0, 90.0],
[-180.0, 90.0],
[-180.0, -90.0],
[180.0, -90.0],
]
],
},
bbox=[-180, -90, 180, 90],
datetime=datetime(2023, 1, 1),
properties={},
assets={
"data": pystac.Asset(
href="http://example.com/assets/data.tif",
roles=["data"],
title="DATA",
)
},
)
cat.add_child(col)
col.add_item(item)
cat.normalize_hrefs("http://example.com", strategy=strategy)
assert cat.self_href == "http://example.com"
assert col.self_href == "http://example.com/collections/test_collection"
assert (
item.self_href
== "http://example.com/collections/test_collection/items/test_item"
)
def test_produces_layout_for_search(self) -> None:
strategy = APILayoutStrategy()
href = strategy.get_search_href(parent_dir="http://example.com")
assert href == "http://example.com/search"
def test_produces_layout_for_conformance(self) -> None:
strategy = APILayoutStrategy()
href = strategy.get_conformance_href(parent_dir="http://example.com")
assert href == "http://example.com/conformance"
def test_produces_layout_for_service_description(self) -> None:
strategy = APILayoutStrategy()
href = strategy.get_service_desc_href(parent_dir="http://example.com")
assert href == "http://example.com/api"
def test_produces_layout_for_service_doc(self) -> None:
strategy = APILayoutStrategy()
href = strategy.get_service_doc_href(parent_dir="http://example.com")
assert href == "http://example.com/api.html"
|