Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Setra Client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
it-bott-integrasjoner
Setra Client
Commits
feeab4ce
Commit
feeab4ce
authored
4 years ago
by
rha104
Browse files
Options
Downloads
Patches
Plain Diff
Added tests for post multi object
parent
17e17138
No related branches found
No related tags found
1 merge request
!4
Added lots of tests. And fixed some issues with the client, discovered while testing
Pipeline
#51253
passed
4 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_client.py
+22
-1
22 additions, 1 deletion
tests/test_client.py
with
22 additions
and
1 deletion
tests/test_client.py
+
22
−
1
View file @
feeab4ce
...
@@ -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.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment