Skip to content
Snippets Groups Projects
Commit feeab4ce authored by rha104's avatar rha104
Browse files

Added tests for post multi object

parent 17e17138
No related branches found
No related tags found
1 merge request!4Added lots of tests. And fixed some issues with the client, discovered while testing
Pipeline #51253 passed
...@@ -4,6 +4,7 @@ from requests import HTTPError ...@@ -4,6 +4,7 @@ from requests import HTTPError
from setra_client.client import SetraEndpoints from setra_client.client import SetraEndpoints
from setra_client.client import SetraClient from setra_client.client import SetraClient
from json.decoder import JSONDecodeError from json.decoder import JSONDecodeError
from setra_client.models import Multi
@pytest.fixture @pytest.fixture
...@@ -255,6 +256,26 @@ def test_failing_to_get_all_transactions(client, requests_mock, baseurl): ...@@ -255,6 +256,26 @@ def test_failing_to_get_all_transactions(client, requests_mock, baseurl):
assert response == {'error': 'some json error message'} assert response == {'error': 'some json error message'}
# Test post_multi method
def test_successfully_post_multi(client, multi_fixture, requests_mock, baseurl):
"""A working GET call should return HTTP 200, with json content"""
url = SetraEndpoints(baseurl).post_multi()
multi = Multi.from_dict(multi_fixture)
requests_mock.post(url, json={'somestatus': 'ok'}, status_code=200, request_headers={"Content-Type": "application/json"})
response = client.post_multi(multi) # we only get json back
assert response == {'somestatus': 'ok'}
def test_successfully_post_multi_with_response(client, multi_fixture, requests_mock, baseurl):
"""A working POST multi call with return_response=True,
should return the response with HTTP 200, with json content"""
url = SetraEndpoints(baseurl).post_multi()
requests_mock.post(url, json={'somestatus': 'ok'}, status_code=200, request_headers={"Content-Type": "application/json"}) #expect json content
multi = Multi.from_dict(multi_fixture)
response = client.post_multi(multi, return_response=True) # we get a response back
assert response.json() == {'somestatus': 'ok'}
assert response.status_code == 200
# get_voucher,get_transaction,post_multi.
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