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
Select Git revision
  • 2mln_blocks_test
  • abw_rshares_experiment
  • bridge_get_account_posts
  • bw_ci_validating_test
  • bw_list_comments_by_permlink_opt_patterns
  • dk-5e6-patterns
  • dk-database-api-tests-001
  • dk-diff-log
  • dk-fix-order-in-some-tests
  • dk-follow-item-overwrite-fix
  • dk-follow-refactor
  • dk-functional-example
  • dk-list-votes-pre24
  • dk-mock-follow-tests
  • dk-mock-follow-tests-2
  • dk-mock-vops-tests
  • dk-pytest-benchmark
  • follow_api_tests
  • get_accounts
  • get_blog_entries
  • get_ranked_posts
  • issue_37_trend_and_hot
  • jsalyers-more-blacklist-updates
  • klesniak-api-tests-pyresttests
  • km_hafah_MR15
  • km_issue_151_revert
  • kmochocki/add-slow-call
  • kmochocki/ci
  • kmochocki/hivemind-testing
  • kudmich/prepare_tavern_tests_to_working_with_postgrest
  • master
  • mi_correct_notif_cache_update
  • mi_mention_date_changed
  • mi_notifications_in_cache
  • mi_test_for_bridge_get_ranked_posts
  • msochacki_tests
  • mt-47
  • mt-find-list-votes
  • mt-further-pids-refactoring
  • mt-further-pids-refactoring-old
  • mt-get-pids-fix
  • mt-get-profile-new-patterns
  • mt-grayed
  • mt-lack-of-post-forces-empty-pattern
  • mt-list-comments-fix
  • mt-main-unit
  • mt-pids-performance-refactoring
  • mz-hivemind-benchmark-parser
  • pczempiel_community
  • pczempiel_date_changes
  • pczempiel_new_tests
  • pmaniora_account_notifications_tests
  • pmaniora_communities_sql
  • pmaniora_community_fixes
  • pmaniora_fullsync_slow_calls
  • pmaniora_new_tests
  • request-execution-time
  • revert-36610d67
  • tmp
59 results

Target

Select target project
  • hive/tests_api
1 result
Select Git revision
  • 2mln_blocks_test
  • abw_rshares_experiment
  • bridge_get_account_posts
  • bw_ci_validating_test
  • bw_list_comments_by_permlink_opt_patterns
  • dk-5e6-patterns
  • dk-database-api-tests-001
  • dk-diff-log
  • dk-fix-order-in-some-tests
  • dk-follow-item-overwrite-fix
  • dk-follow-refactor
  • dk-functional-example
  • dk-list-votes-pre24
  • dk-mock-follow-tests
  • dk-mock-follow-tests-2
  • dk-mock-vops-tests
  • dk-pytest-benchmark
  • follow_api_tests
  • get_accounts
  • get_blog_entries
  • get_ranked_posts
  • issue_37_trend_and_hot
  • jsalyers-more-blacklist-updates
  • klesniak-api-tests-pyresttests
  • km_hafah_MR15
  • km_issue_151_revert
  • kmochocki/add-slow-call
  • kmochocki/ci
  • kmochocki/hivemind-testing
  • kudmich/prepare_tavern_tests_to_working_with_postgrest
  • master
  • mi_correct_notif_cache_update
  • mi_mention_date_changed
  • mi_notifications_in_cache
  • mi_test_for_bridge_get_ranked_posts
  • msochacki_tests
  • mt-47
  • mt-find-list-votes
  • mt-further-pids-refactoring
  • mt-further-pids-refactoring-old
  • mt-get-pids-fix
  • mt-get-profile-new-patterns
  • mt-grayed
  • mt-lack-of-post-forces-empty-pattern
  • mt-list-comments-fix
  • mt-main-unit
  • mt-pids-performance-refactoring
  • mz-hivemind-benchmark-parser
  • pczempiel_community
  • pczempiel_date_changes
  • pczempiel_new_tests
  • pmaniora_account_notifications_tests
  • pmaniora_communities_sql
  • pmaniora_community_fixes
  • pmaniora_fullsync_slow_calls
  • pmaniora_new_tests
  • request-execution-time
  • revert-36610d67
  • tmp
59 results
Show changes
Showing
with 843 additions and 0 deletions
---
test_name: Hived account_history_api get_transaction camilla
marks:
- patterntest
includes:
- !include ../../common.yaml
stages:
- name: account_history_api get_transaction gtg
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account": "camilla","start": 0,"limit": 1}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "camilla"
directory: "account_history_api_patterns/get_account_history"
{
"history": []
}
\ No newline at end of file
---
test_name: Hived account_history_api cancel_transfer_from_savings_operation
marks:
- patterntest # no noempty result in 5mln blocks
includes:
- !include ../../common.yaml
stages:
- name: account_history_api cancel_transfer_from_savings_operation
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account":"blocktrades", "operation_filter_low": 17179869184, "start": 1000, "limit": 1000}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "cancel_transfer_from_savings_operation"
directory: "account_history_api_patterns/get_account_history"
{
"history": [
[
90,
{
"block": 3291975,
"op": {
"type": "change_recovery_account_operation",
"value": {
"account_to_recover": "barrie",
"extensions": [],
"new_recovery_account": "boombastic"
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-07-18T03:38:33",
"trx_id": "f1a629b702ed5552959f5a629d37314e1da2e80c",
"trx_in_block": 0,
"virtual_op": 0
}
]
]
}
---
test_name: Hived account_history_api change_recovery_account_operation
marks:
- patterntest
includes:
- !include ../../common.yaml
stages:
- name: account_history_api change_recovery_account_operation
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account":"barrie", "operation_filter_low": 67108864, "start": 90, "limit": 1}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "change_recovery_account_operation"
directory: "account_history_api_patterns/get_account_history"
---
test_name: Hived account_history_api get_account_history filter to claim_account_operation
marks:
- patterntest # no noempty result
includes:
- !include ../../common.yaml
stages:
- name: account_history_api get_account_history claim_account_operation
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account":"blocktrades","operation_filter_low": 4194304,"start": 1000,"limit": 1000}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "claim_account_operation"
directory: "account_history_api_patterns/get_account_history"
{
"history": []
}
\ No newline at end of file
---
test_name: Hived account_history_api claim_reward_balance2_operation
marks:
- patterntest # no noempty result in 5mln blocks
# only if HIVE_ENABLE_SMT
includes:
- !include ../../common.yaml
stages:
- name: account_history_api claim_reward_balance2_operation
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account":"blocktrades", "operation_filter_low": 281474976710656, "start": 1000, "limit": 1000}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "claim_reward_balance2_operation"
directory: "account_history_api_patterns/get_account_history"
{
"history": []
}
\ No newline at end of file
---
test_name: Hived account_history_api claim_reward_balance_operation
marks:
- patterntest # no noempty result in 5mln blocks
includes:
- !include ../../common.yaml
stages:
- name: account_history_api claim_reward_balance_operation
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account":"blocktrades", "operation_filter_low": 549755813888, "start": 1000, "limit": 1000}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "claim_reward_balance_operation"
directory: "account_history_api_patterns/get_account_history"
{
"history": [
[
205196,
{
"block": 4982094,
"op": {
"type": "comment_operation",
"value": {
"author": "quigua",
"body": "At first, I couldn't see more than 4 points at the same time. But, then I follow all points with the eyes making a circle pattern during 15 seconds, and surprising!. I can see the 12 points, and now I can not see the blinking points again. That is really crazy...",
"json_metadata": "{\"tags\":[\"optical\"]}",
"parent_author": "blocktrades",
"parent_permlink": "re-ilovesteemit-can-you-see-all-twelve-dots-in-this-image-nope-you-cannot-20160915t034947752z",
"permlink": "re-blocktrades-re-ilovesteemit-can-you-see-all-twelve-dots-in-this-image-nope-you-cannot-20160915t044305573z",
"title": ""
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-15T04:43:09",
"trx_id": "40ae1f796b8d0409a799fe62b3b423972b83c9e5",
"trx_in_block": 1,
"virtual_op": 0
}
],
[
205222,
{
"block": 4982610,
"op": {
"type": "comment_operation",
"value": {
"author": "blocktrades",
"body": "I tried that same pattern, but the most I could see was 4 at a time. So now I wonder, is your brain remembering what it saw and assuming it's still there, or is there enough information that your brain is now better able to interpret what it's seeing in your peripheral vision...",
"json_metadata": "{\"tags\":[\"optical\"]}",
"parent_author": "quigua",
"parent_permlink": "re-blocktrades-re-ilovesteemit-can-you-see-all-twelve-dots-in-this-image-nope-you-cannot-20160915t044305573z",
"permlink": "re-quigua-re-blocktrades-re-ilovesteemit-can-you-see-all-twelve-dots-in-this-image-nope-you-cannot-20160915t050900278z",
"title": ""
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-15T05:08:57",
"trx_id": "e363ad2c2c7e8aab96952e772446b177e7ee1624",
"trx_in_block": 0,
"virtual_op": 0
}
],
[
205229,
{
"block": 4982731,
"op": {
"type": "comment_operation",
"value": {
"author": "blocktrades",
"body": "Hmm, it may be an actual function of my weak vision. When I get further from the screen, it gets hard for me to see any of the dots. So next I tried to get very close to the screen (normally I keep my monitor pretty far away) and I was able to see about 8 of them at once. I'm guessing having a smaller monitor might help too, based on the article, since I suppose they would be less in our peripheral vision then.",
"json_metadata": "{\"tags\":[\"optical\"]}",
"parent_author": "quigua",
"parent_permlink": "re-blocktrades-re-ilovesteemit-can-you-see-all-twelve-dots-in-this-image-nope-you-cannot-20160915t044305573z",
"permlink": "re-quigua-re-blocktrades-re-ilovesteemit-can-you-see-all-twelve-dots-in-this-image-nope-you-cannot-20160915t051505312z",
"title": ""
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-15T05:15:00",
"trx_id": "e1a1c74b9c999a20381d4eafefd3ad0f4467a0cc",
"trx_in_block": 0,
"virtual_op": 0
}
],
[
205261,
{
"block": 4983394,
"op": {
"type": "comment_operation",
"value": {
"author": "quigua",
"body": "I am not sure, but it is not funny anymore because I see the 12 points every time. Maybe my brain just recorded the pattern and remember it. I can not switch back again.\nAlso is truth that I work with crystal simetry pattern daily, so, maybe my brain is trained to see patterns and keep it. Also, in this occasion, I knew what was looking for...\nThis make me think how different we perceive the universe around us... Even when everybody is seeing the same thing...",
"json_metadata": "{\"tags\":[\"optical\"]}",
"parent_author": "blocktrades",
"parent_permlink": "re-quigua-re-blocktrades-re-ilovesteemit-can-you-see-all-twelve-dots-in-this-image-nope-you-cannot-20160915t050900278z",
"permlink": "re-blocktrades-re-quigua-re-blocktrades-re-ilovesteemit-can-you-see-all-twelve-dots-in-this-image-nope-you-cannot-20160915t054809925z",
"title": ""
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-15T05:48:12",
"trx_id": "5824e046a9235be9ba99440e3e8eb99860e8a63a",
"trx_in_block": 0,
"virtual_op": 0
}
],
[
205902,
{
"block": 4995964,
"op": {
"type": "comment_operation",
"value": {
"author": "piedpiper",
"body": "It just occurred to me that witness updates like this could make for interesting video material. Maybe a segment in our SteemSmart show?",
"json_metadata": "{\"tags\":[\"witness-category\"]}",
"parent_author": "blocktrades",
"parent_permlink": "witness-report-for-blocktrades-for-last-week-of-august",
"permlink": "re-blocktrades-witness-report-for-blocktrades-for-last-week-of-august-20160915t161707257z",
"title": ""
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-15T16:18:12",
"trx_id": "3ae419f4d37860c7d2dabec530ccf3ad79e79784",
"trx_in_block": 2,
"virtual_op": 0
}
],
[
206145,
{
"block": 4999840,
"op": {
"type": "comment_operation",
"value": {
"author": "blocktrades",
"body": "When will the t-shirt ship?",
"json_metadata": "{\"tags\":[\"steem\"]}",
"parent_author": "cryptojoy.com",
"parent_permlink": "help-steem-buy-steemit-apparel-day-2",
"permlink": "re-cryptojoycom-help-steem-buy-steemit-apparel-day-2-20160915t193858376z",
"title": ""
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-15T19:38:48",
"trx_id": "ef94aba27f9875d6da33b26dae44ee63f06f89a2",
"trx_in_block": 1,
"virtual_op": 0
}
]
]
}
---
test_name: Hived account_history_api get_account_history filter to comment_operation
marks:
- patterntest
includes:
- !include ../../common.yaml
stages:
- name: account_history_api get_account_history comment_operation
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account":"blocktrades","operation_filter_low": 2, "start": 206145, "limit": 6}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "comment_operation"
directory: "account_history_api_patterns/get_account_history"
{
"history": [
[
723,
{
"block": 4973993,
"op": {
"type": "comment_options_operation",
"value": {
"allow_curation_rewards": true,
"allow_votes": true,
"author": "djangothegod",
"extensions": [],
"max_accepted_payout": {
"amount": "1000000000",
"nai": "@@000000013",
"precision": 3
},
"percent_hbd": 0,
"permlink": "i-did-mean-it-in-no-bad-way"
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-14T21:57:48",
"trx_id": "3ca1ef0fc0d035222245327ef524e724bc5d7de5",
"trx_in_block": 4,
"virtual_op": 0
}
],
[
789,
{
"block": 4987662,
"op": {
"type": "comment_options_operation",
"value": {
"allow_curation_rewards": true,
"allow_votes": true,
"author": "djangothegod",
"extensions": [],
"max_accepted_payout": {
"amount": "1000000000",
"nai": "@@000000013",
"precision": 3
},
"percent_hbd": 0,
"permlink": "we-haven-t-been-able-to-grow"
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-15T09:22:24",
"trx_id": "10a97c80d2b757d6215f56740548360b87171b3b",
"trx_in_block": 1,
"virtual_op": 0
}
],
[
795,
{
"block": 4988323,
"op": {
"type": "comment_options_operation",
"value": {
"allow_curation_rewards": true,
"allow_votes": true,
"author": "djangothegod",
"extensions": [],
"max_accepted_payout": {
"amount": "1000000000",
"nai": "@@000000013",
"precision": 3
},
"percent_hbd": 0,
"permlink": "you-want-godzilla-roll"
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-15T09:55:45",
"trx_id": "ec31328dd62df34b8d3f934a94064dd7a9003da0",
"trx_in_block": 3,
"virtual_op": 0
}
],
[
808,
{
"block": 4989612,
"op": {
"type": "comment_options_operation",
"value": {
"allow_curation_rewards": true,
"allow_votes": true,
"author": "djangothegod",
"extensions": [],
"max_accepted_payout": {
"amount": "1000000000",
"nai": "@@000000013",
"precision": 3
},
"percent_hbd": 0,
"permlink": "high-rollers-influencing-california-s-ballot"
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-09-15T11:00:15",
"trx_id": "8f232a3f417e916bf1dd0890db1f23e1c8b6e505",
"trx_in_block": 3,
"virtual_op": 0
}
]
]
}
---
test_name: Hived account_history_api get_account_history filter to comment_options_operation
marks:
- patterntest
includes:
- !include ../../common.yaml
stages:
- name: account_history_api get_account_history comment_options_operation
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account":"djangothegod","operation_filter_low": 524288,"start": 808,"limit": 4}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "comment_options_operation"
directory: "account_history_api_patterns/get_account_history"
{
"history": [
[
18070,
{
"block": 3426457,
"op": {
"type": "comment_reward_operation",
"value": {
"author": "xeroc",
"author_rewards": 13,
"beneficiary_payout_value": {
"amount": "0",
"nai": "@@000000013",
"precision": 3
},
"curator_payout_value": {
"amount": "388196",
"nai": "@@000000013",
"precision": 3
},
"payout": {
"amount": "45",
"nai": "@@000000013",
"precision": 3
},
"permlink": "this-piston-rocks-public-steem-steem-api-for-piston-users-and-developers",
"total_payout_value": {
"amount": "967021",
"nai": "@@000000013",
"precision": 3
}
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-07-22T20:47:30",
"trx_id": "0000000000000000000000000000000000000000",
"trx_in_block": 4294967295,
"virtual_op": 3
}
],
[
18083,
{
"block": 3426576,
"op": {
"type": "comment_reward_operation",
"value": {
"author": "xeroc",
"author_rewards": 16,
"beneficiary_payout_value": {
"amount": "0",
"nai": "@@000000013",
"precision": 3
},
"curator_payout_value": {
"amount": "1595",
"nai": "@@000000013",
"precision": 3
},
"payout": {
"amount": "56",
"nai": "@@000000013",
"precision": 3
},
"permlink": "changelog-python-steem-0-2rc1",
"total_payout_value": {
"amount": "11630",
"nai": "@@000000013",
"precision": 3
}
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-07-22T20:53:33",
"trx_id": "0000000000000000000000000000000000000000",
"trx_in_block": 4294967295,
"virtual_op": 3
}
],
[
18186,
{
"block": 3427233,
"op": {
"type": "comment_reward_operation",
"value": {
"author": "xeroc",
"author_rewards": 16,
"beneficiary_payout_value": {
"amount": "0",
"nai": "@@000000013",
"precision": 3
},
"curator_payout_value": {
"amount": "63453",
"nai": "@@000000013",
"precision": 3
},
"payout": {
"amount": "55",
"nai": "@@000000013",
"precision": 3
},
"permlink": "python-steem-0-1",
"total_payout_value": {
"amount": "63510",
"nai": "@@000000013",
"precision": 3
}
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-07-22T21:26:42",
"trx_id": "0000000000000000000000000000000000000000",
"trx_in_block": 4294967295,
"virtual_op": 3
}
],
[
18604,
{
"block": 3431278,
"op": {
"type": "comment_reward_operation",
"value": {
"author": "xeroc",
"author_rewards": 11,
"beneficiary_payout_value": {
"amount": "0",
"nai": "@@000000013",
"precision": 3
},
"curator_payout_value": {
"amount": "493",
"nai": "@@000000013",
"precision": 3
},
"payout": {
"amount": "38",
"nai": "@@000000013",
"precision": 3
},
"permlink": "steem-api",
"total_payout_value": {
"amount": "2135",
"nai": "@@000000013",
"precision": 3
}
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-07-23T00:50:54",
"trx_id": "0000000000000000000000000000000000000000",
"trx_in_block": 4294967295,
"virtual_op": 3
}
],
[
18935,
{
"block": 3436603,
"op": {
"type": "comment_reward_operation",
"value": {
"author": "xeroc",
"author_rewards": 601,
"beneficiary_payout_value": {
"amount": "0",
"nai": "@@000000013",
"precision": 3
},
"curator_payout_value": {
"amount": "677",
"nai": "@@000000013",
"precision": 3
},
"payout": {
"amount": "2755",
"nai": "@@000000013",
"precision": 3
},
"permlink": "re-thecryptodrive-steemit-whales-stockpile-sp-government-spending-analogy-and-the-solution-revealed-20160722t051308630z",
"total_payout_value": {
"amount": "2077",
"nai": "@@000000013",
"precision": 3
}
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-07-23T05:19:36",
"trx_id": "0000000000000000000000000000000000000000",
"trx_in_block": 4294967295,
"virtual_op": 279
}
]
]
}
---
test_name: Hived account_history_api comment_reward_operation
marks:
- patterntest # virtual
includes:
- !include ../../common.yaml
stages:
- name: account_history_api comment_reward_operation
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account":"xeroc", "operation_filter_low": 2251799813685248, "start": 18935, "limit": 5}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "comment_reward_operation"
directory: "account_history_api_patterns/get_account_history"
{
"history": [
[
188,
{
"block": 2912870,
"op": {
"type": "convert_operation",
"value": {
"amount": {
"amount": "127144",
"nai": "@@000000013",
"precision": 3
},
"owner": "gtg",
"requestid": 1467663446
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-07-04T20:18:00",
"trx_id": "8930ea36f61aef6fa7c5c79922cc9892f2d7373b",
"trx_in_block": 0,
"virtual_op": 0
}
],
[
189,
{
"block": 2912956,
"op": {
"type": "convert_operation",
"value": {
"amount": {
"amount": "2",
"nai": "@@000000013",
"precision": 3
},
"owner": "gtg",
"requestid": 1467663726
}
},
"op_in_trx": 0,
"operation_id": 0,
"timestamp": "2016-07-04T20:22:18",
"trx_id": "804339e4617544b47018e165d7a8ed45ac38f002",
"trx_in_block": 0,
"virtual_op": 0
}
]
]
}
---
test_name: Hived account_history_api get_account_history filter to convert_operation
marks:
- patterntest
includes:
- !include ../../common.yaml
stages:
- name: account_history_api get_account_history convert_operation
request:
url: "{service.url:s}"
method: POST
headers:
content-type: application/json
json:
jsonrpc: "2.0"
id: 1
method: "account_history_api.get_account_history"
params: {"account":"gtg","operation_filter_low": 256,"start": 1000,"limit": 1000}
response:
status_code: 200
verify_response_with:
function: validate_response:compare_response_with_pattern
extra_kwargs:
method: "convert_operation"
directory: "account_history_api_patterns/get_account_history"