File: test_search.py

package info (click to toggle)
stac-pydantic 3.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,332 kB
  • sloc: python: 1,849; makefile: 4
file content (215 lines) | stat: -rw-r--r-- 6,913 bytes parent folder | download
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
from datetime import datetime, timedelta, timezone

import pytest
from pydantic import ValidationError
from shapely.geometry import Polygon, shape

from stac_pydantic.api.search import Search


def test_search():
    Search(collections=["collection1", "collection2"])


def test_search_by_id():
    Search(collections=["collection1", "collection2"], ids=["id1", "id2"])


def test_spatial_search():
    # Search with bbox
    Search(collections=["collection1", "collection2"], bbox=[-180, -90, 180, 90])

    # Search with geojson
    search = Search(
        collections=["collection1", "collection2"],
        intersects={"type": "Point", "coordinates": [0, 0]},
    )
    shape(search.intersects)

    # Search GeometryCollection
    search = Search(
        collections=["collection1", "collection2"],
        intersects={
            "type": "GeometryCollection",
            "geometries": [{"type": "Point", "coordinates": [0, 0]}],
        },
    )


def test_invalid_spatial_search():
    # bbox and intersects are mutually exclusive
    with pytest.raises(ValidationError):
        Search(
            collections=["collection1", "collection2"],
            intersects={"type": "Point", "coordinates": [0, 0]},
            bbox=[-180, -90, 180, 90],
        )

    # Invalid geojson
    with pytest.raises(ValidationError):
        Search(
            collections=["collection1", "collection2"],
            intersects={"type": "Polygon", "coordinates": [0]},
        )


def test_temporal_search_single_tailed():
    # Test single tailed
    utcnow = datetime.now(timezone.utc)
    utcnow_str = utcnow.isoformat()
    search = Search(collections=["collection1"], datetime=utcnow_str)
    assert search.start_date == utcnow
    assert search.end_date == utcnow


def test_datetime_clean():
    # ref: https://github.com/stac-utils/stac-pydantic/issues/170
    utcnow = datetime.now(timezone.utc)
    utcnow_str = utcnow.isoformat()
    search = Search(datetime=utcnow_str)
    assert search.start_date == utcnow
    assert search.end_date == utcnow

    search = Search()
    assert not search.start_date
    assert not search.end_date


def test_temporal_search_two_tailed():
    # Test two tailed
    utcnow = datetime.now(timezone.utc)
    utcnow_str = utcnow.isoformat()
    search = Search(collections=["collection1"], datetime=f"{utcnow_str}/{utcnow_str}")
    assert search.start_date == search.end_date == utcnow

    search = Search(collections=["collection1"], datetime=f"{utcnow_str}/..")
    assert search.start_date == utcnow
    assert search.end_date is None

    search = Search(collections=["collection1"], datetime=f"{utcnow_str}/")
    assert search.start_date == utcnow
    assert search.end_date is None

    search = Search(collections=["collection1"], datetime=f"../{utcnow_str}")
    assert search.start_date is None
    assert search.end_date == utcnow

    search = Search(collections=["collection1"], datetime=f"/{utcnow_str}")
    assert search.start_date is None
    assert search.end_date == utcnow


def test_temporal_search_open():
    # Test open date range
    search = Search(collections=["collection1"], datetime="../..")
    assert search.start_date is None
    assert search.end_date is None


def test_invalid_temporal_search_date():
    # Just a date, no time
    utcnow = datetime.now(timezone.utc).strftime("%Y-%m-%d")
    with pytest.raises(ValidationError):
        Search(collections=["collection1"], datetime=utcnow)


def test_invalid_temporal_search_too_many():
    # Too many dates
    t1 = datetime.now(timezone.utc)
    t2 = t1 + timedelta(seconds=100)
    t3 = t2 + timedelta(seconds=100)
    with pytest.raises(ValidationError):
        Search(
            collections=["collection1"],
            datetime=f"{t1.isoformat()}/{t2.isoformat()}/{t3.isoformat()}",
        )


def test_invalid_temporal_search_date_wrong_order():
    # End date is before start date
    start = datetime.now(timezone.utc)
    end = start - timedelta(seconds=100)
    with pytest.raises(ValidationError):
        Search(
            collections=["collection1"],
            datetime=f"{start.isoformat()}/{end.isoformat()}",
        )


def test_search_geometry_bbox():
    search = Search(collections=["foo", "bar"], bbox=[0, 0, 1, 1])
    geom1 = shape(search.spatial_filter)
    geom2 = Polygon.from_bounds(*search.bbox)
    assert (geom1.intersection(geom2).area / geom1.union(geom2).area) == 1.0


@pytest.mark.parametrize(
    "bbox",
    [
        (100.0, 1.0),  # 1D Coordinates
        (100.0, 1.0, 105.0, 0.0),  # ymin greater than ymax
        (100.0, 0.0, 5.0, 105.0, 1.0, 4.0),  # min elev greater than max elev
        (-200.0, 0.0, 105.0, 1.0),  # xmin is invalid WGS84
        (
            105.0,
            0.0,
            100.0,
            1.0,
        ),  # xmin greater than xmax but not crossing Antimeridian
        (100.0, -100, 105.0, 1.0),  # ymin is invalid WGS84
        (100.0, 0.0, 190.0, 1.0),  # xmax is invalid WGS84
        (100.0, 0.0, 190.0, 100.0),  # ymax is invalid WGS84
        (-200.0, 0.0, 0.0, 105.0, 1.0, 4.0),  # xmin is invalid WGS84 (3d)
        (100.0, -100, 0.0, 105.0, 1.0, 4.0),  # ymin is invalid WGS84 (3d)
        (100.0, 0.0, 0.0, 190.0, 1.0, 4.0),  # xmax is invalid WGS84 (3d)
        (100.0, 0.0, 0.0, 190.0, 100.0, 4.0),  # ymax is invalid WGS84 (3d)
    ],
)
def test_search_invalid_bbox(bbox):
    with pytest.raises(ValidationError):
        Search(collections=["foo"], bbox=bbox)


def test_search_none_datetime() -> None:
    Search(datetime=None)


@pytest.mark.parametrize(
    "dt,start,end",
    [
        # unique datetime, start/end == datetime
        ["1985-04-12T23:20:50.52Z", False, False],
        # start datetime is None
        ["../1985-04-12T23:20:50.52Z", True, False],
        ["/1985-04-12T23:20:50.52Z", True, False],
        # end datetime is None
        ["1985-04-12T23:20:50.52Z/..", False, True],
        ["1985-04-12T23:20:50.52Z/", False, True],
        # Both start/end datetime are available
        ["1985-04-12T23:20:50.52Z/1986-04-12T23:20:50.52Z", False, False],
        ["1985-04-12T23:20:50.52+01:00/1986-04-12T23:20:50.52+01:00", False, False],
        ["1985-04-12T23:20:50.52-01:00/1986-04-12T23:20:50.52-01:00", False, False],
    ],
)
def test_search_datetime(dt, start, end):
    s = Search(datetime=dt)
    assert s.datetime is not None
    assert (s.start_date is None) == start
    assert (s.end_date is None) == end


@pytest.mark.parametrize(
    "dt",
    [
        "/"
        "../"
        "/.."
        "../.."
        "/1984-04-12T23:20:50.52Z/1985-04-12T23:20:50.52Z",  # extra start /
        "1984-04-12T23:20:50.52Z/1985-04-12T23:20:50.52Z/",  # extra end /
        "1986-04-12T23:20:50.52Z/1985-04-12T23:20:50.52Z",  # start > end
    ],
)
def test_search_invalid_datetime(dt):
    with pytest.raises(ValidationError):
        Search(datetime=dt)