Skip to content
Snippets Groups Projects
Commit 290d4dbe authored by Michal Zander's avatar Michal Zander
Browse files

Add patterns for REST API

parent a0a3e69a
No related branches found
No related tags found
1 merge request!98Add pattern tests for REST API
---
name: Common test values
description: Common values for tests
variables:
service:
proto: http
server: "{tavern.env_vars.REPTRACKER_ADDRESS}"
port: "{tavern.env_vars.REPTRACKER_PORT}"
5000000
\ No newline at end of file
---
test_name: reptracker PostgREST
marks:
- patterntest
includes:
- !include ../common.yaml
stages:
- name: test
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/rpc/get_rep_last_synced_block"
method: POST
headers:
content-type: application/json
accept: application/json
response:
status_code: 200
verify_response_with:
function: validate_response:compare_rest_response_with_pattern
69
\ No newline at end of file
---
test_name: reptracker PostgREST
marks:
- patterntest
includes:
- !include ../common.yaml
stages:
- name: test
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/rpc/get_account_reputation"
method: POST
headers:
content-type: application/json
accept: application/json
json:
account-name: "blocktrades"
response:
status_code: 200
verify_response_with:
function: validate_response:compare_rest_response_with_pattern
\ No newline at end of file
57
\ No newline at end of file
---
test_name: reptracker PostgREST
marks:
- patterntest
includes:
- !include ../common.yaml
stages:
- name: test
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/rpc/get_account_reputation"
method: POST
headers:
content-type: application/json
accept: application/json
json:
account-name: "gtg"
response:
status_code: 200
verify_response_with:
function: validate_response:compare_rest_response_with_pattern
\ No newline at end of file
{
"code": "P0001",
"details": null,
"hint": null,
"message": "Account 'themarkymark' does not exist"
}
\ No newline at end of file
---
test_name: reptracker PostgREST
marks:
- patterntest
- negative
includes:
- !include ../common.yaml
stages:
- name: test
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/rpc/get_account_reputation"
method: POST
headers:
content-type: application/json
accept: application/json
json:
account-name: "themarkymark"
response:
status_code: 400
verify_response_with:
function: validate_response:compare_rest_response_with_pattern
extra_kwargs:
error_response: true
[pytest]
markers =
patterntest: Mark tests using patterns to compare results
negative: Mark error tests
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