diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-04-11 11:04:17 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-04-11 11:04:21 +0200 |
commit | 4a58b6acd28f6c42330517dfad91601160d71690 (patch) | |
tree | 3568c77a1ce6f029ea634c6fae7aeb393448dd46 /test/functional | |
parent | 747cdf1d652d8587e9f2e3d4436c3ecdbf56d0a5 (diff) | |
parent | 0f7dc893ea1776515173dcd0bfe6826e963c90f3 (diff) |
Merge bitcoin/bitcoin#24797: test: compare `/chaininfo` response with `getblockchaininfo` RPC
0f7dc893ea1776515173dcd0bfe6826e963c90f3 test: compare `/chaininfo` response with `getblockchaininfo` RPC (brunoerg)
Pull request description:
The `/chaininfo` REST endpoint gets its infos from `getblockchaininfo` RPC, so this PR adds an `assert_equal` (in `interface_rest`) to ensure both responses are the same. Obs: other endpoints do the same for their respective RPC.
ACKs for top commit:
0xB10C:
Concept and Code Review ACK 0f7dc893ea1776515173dcd0bfe6826e963c90f3. Belts-and-spenders.
Tree-SHA512: 51cbcf988090272e406a47dc869710740b74e2222af29c05ddcbf53bd49765cdc59efb525e970867f091b3d2efec4fb13371a342d9e484e51144b760265bc5b8
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/interface_rest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/interface_rest.py b/test/functional/interface_rest.py index 4f8676ec53..30c9e0c9cd 100755 --- a/test/functional/interface_rest.py +++ b/test/functional/interface_rest.py @@ -361,6 +361,10 @@ class RESTTest (BitcoinTestFramework): json_obj = self.test_rest_request("/chaininfo") assert_equal(json_obj['bestblockhash'], bb_hash) + # Compare with normal RPC getblockchaininfo response + blockchain_info = self.nodes[0].getblockchaininfo() + assert_equal(blockchain_info, json_obj) + # Test compatibility of deprecated and newer endpoints self.log.info("Test compatibility of deprecated and newer endpoints") assert_equal(self.test_rest_request(f"/headers/{bb_hash}", query_params={"count": 1}), self.test_rest_request(f"/headers/1/{bb_hash}")) |