Skip to content
Snippets Groups Projects
Commit ce2a1dc5 authored by Petr Kalashnikov's avatar Petr Kalashnikov
Browse files

FSHO10: support filtering of batches in list from setra

parent 5162e916
No related branches found
No related tags found
2 merge requests!13Fsho12, del 1: mulighet å returnere en liste av batcher uten vouchere,!11FSHO10: support filtering of batches in list from setra
Pipeline #64640 passed
......@@ -181,16 +181,27 @@ class SetraClient(object):
return data
return cls.from_dict(data)
def get_batch(self, batch_id: int = None):
def get_batch(self,
batch_id: int = None,
min_created_date: str = None,
max_created_date: str = None,
batch_progress: str = None,
interface: str = None):
"""
GETs one or all batches from SETRA
"""
params = None
if batch_id is not None:
batch_id = str(batch_id)
else:
params = {'min_created_date': min_created_date,
'max_created_date': max_created_date,
'batch_progress': batch_progress,
'interface': interface}
url = self.urls.batch(batch_id)
response = self.get(url)
response = self.get(url, params=params)
return response.json()
def get_voucher(self, vouch_id: int = None):
......
......@@ -190,6 +190,15 @@ def test_successful_get_all_batches(client, requests_mock, baseurl):
assert response == {'foo': 'bar'}
def test_successful_get_batches_foltered_by_status(client, requests_mock, baseurl):
"""A working GET call should return HTTP 200, with json content"""
url = SetraEndpoints(baseurl).batch()
requests_mock.get(url, json={'foo': 'bar'}, status_code=200)
response = client.get_batch(batch_progress="ubw_import_ok")
assert response == {'foo': 'bar'}
def test_successfully_getting_single_batch(client, requests_mock, baseurl):
"""A working GET call should return HTTP 200, with json content"""
url = SetraEndpoints(baseurl).batch(batch_id='3')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment