From 0f7dc893ea1776515173dcd0bfe6826e963c90f3 Mon Sep 17 00:00:00 2001 From: brunoerg Date: Wed, 6 Apr 2022 17:59:37 -0300 Subject: [PATCH] test: compare `/chaininfo` response with `getblockchaininfo` RPC --- test/functional/interface_rest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/functional/interface_rest.py b/test/functional/interface_rest.py index 4f8676ec536..30c9e0c9cd2 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}"))