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
Showing
with 134 additions and 10 deletions
{
"code": -32602,
"data": "account not found: `nonexisting`",
"message": "Invalid parameters"
}
{
"code": -32602,
"data": "Account nonexisting does not exist",
"message": "Invalid parameters"
}
---
test_name: Hivemind condenser_api.get_follow_count
marks:
- patterntest
- negative
includes:
- !include ../../common.yaml
stages:
- name: get_follow_count
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "condenser_api.get_follow_count"
params: {"account":"nonexisting"}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "bad_account"
directory: "condenser_api_negative/get_follow_count"
error_response: true
{
"code": -32602,
"data": "invalid account (not specified)",
"message": "Invalid parameters"
}
{
"code": -32602,
"data": "invalid account (not specified)",
"message": "Invalid parameters"
}
---
test_name: Hivemind condenser_api.get_follow_count
marks:
- patterntest
- negative
includes:
- !include ../../common.yaml
stages:
- name: get_follow_count
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "condenser_api.get_follow_count"
params: {"account":""}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "empty_account"
directory: "condenser_api_negative/get_follow_count"
error_response: true
{
"code": -32602,
"data": "'account' parameter lacking default value",
"message": "Invalid parameters"
}
{
"code": -32602,
"data": "missing a required argument: 'account'",
"message": "Invalid parameters"
}
---
test_name: Hivemind condenser_api.get_follow_count
marks:
- patterntest
- negative
includes:
- !include ../../common.yaml
stages:
- name: get_follow_count
request:
url: "{service.proto:s}://{service.server:s}:{service.port}/"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "condenser_api.get_follow_count"
params: {}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "no_account"
directory: "condenser_api_negative/get_follow_count"
error_response: true
{
"code": -32602,
"data": "limit = 251 outside valid range [1:250]",
"data": "limit = 0 outside valid range [1:250]",
"message": "Invalid parameters"
}
Gives content for given post.
Current version gives output matching that of old Fat Node (database_api style posts). Original get_content output
is still available through tags_api.get_discussion
method: "condenser_api.get_content"
params:
{
"account": "{account}", "permlink": {permlink},
"author": "{author}", "permlink": {permlink},
mandatory, points to valid post
author + permlink : mandatory, points to valid post
"observer": "{account}",
"observer": "{account}"
optional, used for muted votes and blacklists
optional, used for muted votes and blacklists
}
Lists replies for given post.
Current version gives output matching that of old Fat Node (database_api style posts). Original get_content_replies output
is still available through tags_api.get_content_replies
method: "condenser_api.get_content_replies"
params:
{
"author": "{author}", "permlink": {permlink},
"author": "{author}", "permlink": {permlink}
mandatory, points to valid post
author + permlink : mandatory, points to valid post
}
......@@ -5,6 +5,6 @@ params:
{
"account":"{account}",
mandatory, point on valid account
mandatory, points to valid account
}
\ No newline at end of file
......@@ -5,9 +5,9 @@ params:
{
"start_tag":"{tag}",
optional, when given has to point to valid tag; paging mechanism (cuts out this and more paying categories)
optional, when given has to point to valid tag; paging mechanism (cuts out this and more paying categories)
"limit":{number}
optional, 1..250, default = 250
optional, 1..250, default = 250
}
\ No newline at end of file