Skip to content
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

HARMONY-1762: Switch to passing variables in the query parameters #85

Merged
merged 1 commit into from
Jun 10, 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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,4 @@ examples/*.tif
__pypackages__/

.idea
.virtual_documents
9 changes: 5 additions & 4 deletions harmony/harmony.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,8 @@ class Request(BaseRequest):
shape: a file path to an ESRI Shapefile zip, GeoJSON file, or KML file to use for
spatial subsetting. Note: not all collections support shapefile subsetting

variables: The list of variables to subset

granule_id: The CMR Granule ID for the granule which should be retrieved

granule_name: The granule ur or provider id for the granule(s) to be retrieved
Expand Down Expand Up @@ -331,7 +333,8 @@ def __init__(self,
'skip_preview': 'skipPreview',
'ignore_errors': 'ignoreErrors',
'grid': 'grid',
'extend': 'extend'
'extend': 'extend',
'variables': 'variable'
}

self.spatial_validations = [
Expand Down Expand Up @@ -534,12 +537,10 @@ def _submit_url(self, request: BaseRequest) -> str:
if isinstance(request, CapabilitiesRequest):
return (f'{self.config.root_url}/capabilities')
else:
variables = [v.replace('/', '%2F') for v in request.variables]
vars = ','.join(variables)
return (
f'{self.config.root_url}'
f'/{request.collection.id}'
f'/ogc-api-coverages/1.0.0/collections/{vars}/coverage/rangeset'
f'/ogc-api-coverages/1.0.0/collections/parameter_vars/coverage/rangeset'
)

def _status_url(self, job_id: str, link_type: LinkType = LinkType.https) -> str:
Expand Down
17 changes: 10 additions & 7 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def examples_dir():

def expected_submit_url(collection_id, variables='all'):
return (f'https://harmony.earthdata.nasa.gov/{collection_id}'
f'/ogc-api-coverages/1.0.0/collections/{variables}/coverage/rangeset')
f'/ogc-api-coverages/1.0.0/collections/parameter_vars/coverage/rangeset')

def expected_status_url(job_id, link_type: LinkType = LinkType.https):
return f'https://harmony.earthdata.nasa.gov/jobs/{job_id}?linktype={link_type.value}'
Expand Down Expand Up @@ -122,7 +122,9 @@ def is_expected_url_and_form_encoded_body(harmony_request, http_request):
max = dim.max if dim.max is not None else '*'
dimension_params += [f'subset={name}({min}:{max})']

query_params = '&'.join(async_params + spatial_params + temporal_params + dimension_params)
variable_params = ['variable=all']

query_params = '&'.join(async_params + spatial_params + temporal_params + dimension_params + variable_params)
if harmony_request.format is not None:
query_params += f'&format{harmony_request.format}'
if harmony_request.skip_preview is not None:
Expand Down Expand Up @@ -203,11 +205,12 @@ def expected_job(collection_id, job_id, link_type: LinkType = LinkType.https, ex
],
'request': (
'https://harmony.earthdata.nasa.gov/{collection_id}/ogc-api-coverages/1.0.0'
'/collections/all/coverage/rangeset'
'/collections/parameter_vars/coverage/rangeset'
'?forceAsync=True'
'&subset=lat(52%3A77)'
'&subset=lon(-165%3A-140)'
'&subset=time(%222010-01-01T00%3A00%3A00%22%3A%222020-12-30T00%3A00%3A00%22)'
'&variable=all'
),
'numInputGranules': 32,
'jobID': f'{job_id}'
Expand Down Expand Up @@ -539,7 +542,7 @@ def test_post_request_has_user_agent_headers(examples_dir):

@responses.activate
def test_request_has_query_param(param, expected):
expected += '&forceAsync=true'
expected += '&forceAsync=true&variable=all'
collection = Collection('foobar')
request = Request(
collection=collection,
Expand Down Expand Up @@ -1485,7 +1488,7 @@ def test_request_as_curl_get():

curl_command = Client(should_validate_auth=False).request_as_curl(request)
assert f'https://harmony.earthdata.nasa.gov/{collection.id}' \
f'/ogc-api-coverages/1.0.0/collections/all/coverage/rangeset' in curl_command
f'/ogc-api-coverages/1.0.0/collections/parameter_vars/coverage/rangeset' in curl_command
assert '-X POST' in curl_command


Expand All @@ -1499,7 +1502,7 @@ def test_request_as_curl_post(examples_dir):

curl_command = Client(should_validate_auth=False).request_as_curl(request)
assert f'https://harmony.earthdata.nasa.gov/{collection.id}' \
f'/ogc-api-coverages/1.0.0/collections/all/coverage/rangeset' in curl_command
f'/ogc-api-coverages/1.0.0/collections/parameter_vars/coverage/rangeset' in curl_command
assert '-X POST' in curl_command

def test_request_as_url():
Expand All @@ -1510,7 +1513,7 @@ def test_request_as_url():
)

url = Client(should_validate_auth=False).request_as_url(request)
assert url == 'https://harmony.earthdata.nasa.gov/C1940468263-POCLOUD/ogc-api-coverages/1.0.0/collections/all/coverage/rangeset?forceAsync=true&subset=lat%2840%3A42%29&subset=lon%28-107%3A-105%29'
assert url == 'https://harmony.earthdata.nasa.gov/C1940468263-POCLOUD/ogc-api-coverages/1.0.0/collections/parameter_vars/coverage/rangeset?forceAsync=true&subset=lat%2840%3A42%29&subset=lon%28-107%3A-105%29&variable=all'

def test_request_with_shapefile_as_url(examples_dir):
collection = Collection(id='C1940468263-POCLOUD')
Expand Down
Loading