Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • hive/tests_api
1 result
Show changes
Commits on Source (4)
Showing
with 1147 additions and 0 deletions
{
"code": -32602,
"data": "invalid account (not specified)",
"message": "Invalid parameters"
}
---
test_name: Hivemind bridge_api.account_notifications empty account patterns test
marks:
- patterntest
- failing
includes:
- !include ../../common.yaml
stages:
- name: account_notifications empty account
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"", "min_score": 15, "limit":10}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "empty_account"
directory: "bridge_api_negative/account_notifications"
error_response: true
{
"code": -32602,
"data": "got an unexpected keyword argument 'extra_parameter'",
"message": "Invalid parameters"
}
---
test_name: Hivemind bridge_api.account_notifications extra parameter patterns test
marks:
- patterntest
- failing
includes:
- !include ../../common.yaml
stages:
- name: account_notifications extra parameter
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"", "min_score": 15, "limit":10, "extra_parameter": "vale"}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "extra_parameter"
directory: "bridge_api_negative/account_notifications"
error_response: true
{
"code": -32602,
"data": "invalid account char",
"message": "Invalid parameters"
}
---
test_name: Hivemind bridge_api.account_notifications invalid account patterns test
marks:
- patterntest
- failing
includes:
- !include ../../common.yaml
stages:
- name: account_notifications invalid account
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"invalid_account", "min_score": 15, "limit":10}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "invalid_account"
directory: "bridge_api_negative/account_notifications"
error_response: true
{
"code": -32602,
"data": "limit = 101 outside valid range [1:100]",
"message": "Invalid parameters"
}
---
test_name: Hivemind bridge_api.account_notifications over limit patterns test
marks:
- patterntest
- failing
includes:
- !include ../../common.yaml
stages:
- name: account_notifications over limit
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"steemit", "min_score": 15, "limit":101}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "over_limit"
directory: "bridge_api_negative/account_notifications"
error_response: true
\ No newline at end of file
{
"code": -32602,
"data": "score = 101 outside valid range [0:100]",
"message": "Invalid parameters"
}
---
test_name: Hivemind bridge_api.account_notifications over score patterns test
marks:
- patterntest
- failing
includes:
- !include ../../common.yaml
stages:
- name: account_notifications over score
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"steemit", "min_score": 101, "limit":10}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "over_score"
directory: "bridge_api_negative/account_notifications"
error_response: true
\ No newline at end of file
{
"code": -32602,
"data": "limit = 0 outside valid range [1:100]",
"message": "Invalid parameters"
}
---
test_name: Hivemind bridge_api.account_notifications under limit patterns test
marks:
- patterntest
- failing
includes:
- !include ../../common.yaml
stages:
- name: account_notifications under limit
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"steemit", "min_score": 15, "limit":0}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "under_limit"
directory: "bridge_api_negative/account_notifications"
error_response: true
{
"code": -32602,
"data": "score = -1 outside valid range [0:100]",
"message": "Invalid parameters"
}
---
test_name: Hivemind bridge_api.account_notifications under score patterns test
marks:
- patterntest
- failing
includes:
- !include ../../common.yaml
stages:
- name: account_notifications under score
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"steemit", "min_score": -1, "limit":10}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "under_score"
directory: "bridge_api_negative/account_notifications"
error_response: true
\ No newline at end of file
---
test_name: Hivemind bridge_api.account_notifications max limit patterns test
marks:
- patterntest
includes:
- !include ../../common.yaml
stages:
- name: account_notifications max limit
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"steemit", "min_score": 15, "limit":100}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "max_limit"
directory: "bridge_api_patterns/account_notifications"
---
test_name: Hivemind bridge_api.account_notifications max score patterns test
marks:
- patterntest
- failing
- xfail # very different result
includes:
- !include ../../common.yaml
stages:
- name: account_notifications max score
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"ozchartart", "min_score": 100, "limit":20}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "max_score"
directory: "bridge_api_patterns/account_notifications"
[
{
"date": "2016-09-15T17:25:48",
"id": 21465409027898066,
"msg": "@steempowerwhale mentioned you",
"score": 50,
"type": "mention",
"url": "@steempowerwhale/for-steemit-authors-how-likely-do-posts-receive-a-reward-on-steemit-look-at-the-stats"
}
]
---
test_name: Hivemind bridge_api.account_notifications min limit patterns test
marks:
- patterntest
includes:
- !include ../../common.yaml
stages:
- name: account_notifications min limit
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "bridge.account_notifications"
params: {"account":"steemit", "min_score": 15, "limit":1}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "min_limit"
directory: "bridge_api_patterns/account_notifications"