LCOV - code coverage report
Current view: top level - src/test - rpc_tests.cpp (source / functions) Coverage Total Hit
Test: test_bitcoin_coverage.info Lines: 99.5 % 437 435
Test Date: 2025-10-25 04:38:23 Functions: 100.0 % 37 37
Branches: 45.1 % 3854 1739

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2012-2022 The Bitcoin Core developers
       2                 :             : // Distributed under the MIT software license, see the accompanying
       3                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       4                 :             : 
       5                 :             : #include <core_io.h>
       6                 :             : #include <interfaces/chain.h>
       7                 :             : #include <node/context.h>
       8                 :             : #include <rpc/blockchain.h>
       9                 :             : #include <rpc/client.h>
      10                 :             : #include <rpc/server.h>
      11                 :             : #include <rpc/util.h>
      12                 :             : #include <test/util/setup_common.h>
      13                 :             : #include <univalue.h>
      14                 :             : #include <util/time.h>
      15                 :             : 
      16                 :             : #include <any>
      17                 :             : #include <string_view>
      18                 :             : 
      19                 :             : #include <boost/test/unit_test.hpp>
      20                 :             : 
      21                 :             : using util::SplitString;
      22                 :             : 
      23                 :          14 : static UniValue JSON(std::string_view json)
      24                 :             : {
      25         [ +  - ]:          14 :     UniValue value;
      26   [ +  -  +  -  :          28 :     BOOST_CHECK(value.read(json));
                   +  - ]
      27                 :          14 :     return value;
      28                 :           0 : }
      29                 :             : 
      30                 :           0 : class HasJSON
      31                 :             : {
      32                 :             : public:
      33                 :           6 :     explicit HasJSON(std::string json) : m_json(std::move(json)) {}
      34                 :           6 :     bool operator()(const UniValue& value) const
      35                 :             :     {
      36                 :           6 :         std::string json{value.write()};
      37   [ +  -  +  - ]:           6 :         BOOST_CHECK_EQUAL(json, m_json);
      38                 :           6 :         return json == m_json;
      39                 :           6 :     };
      40                 :             : 
      41                 :             : private:
      42                 :             :     const std::string m_json;
      43                 :             : };
      44                 :             : 
      45                 :          28 : class RPCTestingSetup : public TestingSetup
      46                 :             : {
      47                 :             : public:
      48                 :             :     UniValue TransformParams(const UniValue& params, std::vector<std::pair<std::string, bool>> arg_names) const;
      49                 :             :     UniValue CallRPC(std::string args);
      50                 :             : };
      51                 :             : 
      52                 :          12 : UniValue RPCTestingSetup::TransformParams(const UniValue& params, std::vector<std::pair<std::string, bool>> arg_names) const
      53                 :             : {
      54         [ +  - ]:          12 :     UniValue transformed_params;
      55         [ +  - ]:          12 :     CRPCTable table;
      56   [ +  -  +  -  :          19 :     CRPCCommand command{"category", "method", [&](const JSONRPCRequest& request, UniValue&, bool) -> bool { transformed_params = request.params; return true; }, arg_names, /*unique_id=*/0};
                   +  - ]
      57   [ +  -  +  - ]:          12 :     table.appendCommand("method", &command);
      58                 :          12 :     JSONRPCRequest request;
      59         [ +  - ]:          12 :     request.strMethod = "method";
      60         [ +  - ]:          12 :     request.params = params;
      61   [ +  -  +  +  :          12 :     if (RPCIsInWarmup(nullptr)) SetRPCWarmupFinished();
                   +  - ]
      62         [ +  + ]:          12 :     table.execute(request);
      63                 :          14 :     return transformed_params;
      64                 :          22 : }
      65                 :             : 
      66                 :          60 : UniValue RPCTestingSetup::CallRPC(std::string args)
      67                 :             : {
      68         [ -  + ]:          60 :     std::vector<std::string> vArgs{SplitString(args, ' ')};
      69         [ -  + ]:          60 :     std::string strMethod = vArgs[0];
      70                 :          60 :     vArgs.erase(vArgs.begin());
      71                 :          60 :     JSONRPCRequest request;
      72                 :          60 :     request.context = &m_node;
      73         [ +  - ]:          60 :     request.strMethod = strMethod;
      74         [ +  + ]:          60 :     request.params = RPCConvertValues(strMethod, vArgs);
      75   [ +  -  +  +  :          55 :     if (RPCIsInWarmup(nullptr)) SetRPCWarmupFinished();
                   +  - ]
      76                 :          55 :     try {
      77         [ +  + ]:          55 :         UniValue result = tableRPC.execute(request);
      78                 :          36 :         return result;
      79                 :             :     }
      80         [ -  + ]:          19 :     catch (const UniValue& objError) {
      81   [ +  -  +  -  :          19 :         throw std::runtime_error(objError.find_value("message").get_str());
                   +  - ]
      82                 :          19 :     }
      83                 :          84 : }
      84                 :             : 
      85                 :             : 
      86                 :             : BOOST_FIXTURE_TEST_SUITE(rpc_tests, RPCTestingSetup)
      87                 :             : 
      88   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_namedparams)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
      89                 :             : {
      90   [ +  +  -  - ]:           6 :     const std::vector<std::pair<std::string, bool>> arg_names{{"arg1", false}, {"arg2", false}, {"arg3", false}, {"arg4", false}, {"arg5", false}};
      91                 :             : 
      92                 :             :     // Make sure named arguments are transformed into positional arguments in correct places separated by nulls
      93   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(TransformParams(JSON(R"({"arg2": 2, "arg4": 4})"), arg_names).write(), "[null,2,null,4]");
          +  -  +  -  +  
                -  +  - ]
      94                 :             : 
      95                 :             :     // Make sure named argument specified multiple times raises an exception
      96   [ +  -  +  -  :           5 :     BOOST_CHECK_EXCEPTION(TransformParams(JSON(R"({"arg2": 2, "arg2": 4})"), arg_names), UniValue,
          +  -  -  +  -  
          -  -  -  -  +  
          +  -  +  -  +  
                -  +  - ]
      97                 :             :                           HasJSON(R"({"code":-8,"message":"Parameter arg2 specified multiple times"})"));
      98                 :             : 
      99                 :             :     // Make sure named and positional arguments can be combined.
     100   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(TransformParams(JSON(R"({"arg5": 5, "args": [1, 2], "arg4": 4})"), arg_names).write(), "[1,2,null,4,5]");
          +  -  +  -  +  
                -  +  - ]
     101                 :             : 
     102                 :             :     // Make sure a unknown named argument raises an exception
     103   [ +  -  +  -  :           5 :     BOOST_CHECK_EXCEPTION(TransformParams(JSON(R"({"arg2": 2, "unknown": 6})"), arg_names), UniValue,
          +  -  -  +  -  
          -  -  -  -  +  
          +  -  +  -  +  
                -  +  - ]
     104                 :             :                           HasJSON(R"({"code":-8,"message":"Unknown named parameter unknown"})"));
     105                 :             : 
     106                 :             :     // Make sure an overlap between a named argument and positional argument raises an exception
     107   [ +  -  +  -  :           5 :     BOOST_CHECK_EXCEPTION(TransformParams(JSON(R"({"args": [1,2,3], "arg4": 4, "arg2": 2})"), arg_names), UniValue,
          +  -  -  +  -  
          -  -  -  -  +  
          +  -  +  -  +  
                -  +  - ]
     108                 :             :                           HasJSON(R"({"code":-8,"message":"Parameter arg2 specified twice both as positional and named argument"})"));
     109                 :             : 
     110                 :             :     // Make sure extra positional arguments can be passed through to the method implementation, as long as they don't overlap with named arguments.
     111   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(TransformParams(JSON(R"({"args": [1,2,3,4,5,6,7,8,9,10]})"), arg_names).write(), "[1,2,3,4,5,6,7,8,9,10]");
          +  -  +  -  +  
                -  +  - ]
     112   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(TransformParams(JSON(R"([1,2,3,4,5,6,7,8,9,10])"), arg_names).write(), "[1,2,3,4,5,6,7,8,9,10]");
          +  -  +  -  +  
                -  +  - ]
     113   [ +  -  +  -  :           2 : }
          +  -  +  -  +  
             -  -  +  -  
                      - ]
     114                 :             : 
     115   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_namedonlyparams)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     116                 :             : {
     117   [ +  +  -  - ]:           6 :     const std::vector<std::pair<std::string, bool>> arg_names{{"arg1", false}, {"arg2", false}, {"opt1", true}, {"opt2", true}, {"options", false}};
     118                 :             : 
     119                 :             :     // Make sure optional parameters are really optional.
     120   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(TransformParams(JSON(R"({"arg1": 1, "arg2": 2})"), arg_names).write(), "[1,2]");
          +  -  +  -  +  
                -  +  - ]
     121                 :             : 
     122                 :             :     // Make sure named-only parameters are passed as options.
     123   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(TransformParams(JSON(R"({"arg1": 1, "arg2": 2, "opt1": 10, "opt2": 20})"), arg_names).write(), R"([1,2,{"opt1":10,"opt2":20}])");
          +  -  +  -  +  
                -  +  - ]
     124                 :             : 
     125                 :             :     // Make sure options can be passed directly.
     126   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(TransformParams(JSON(R"({"arg1": 1, "arg2": 2, "options":{"opt1": 10, "opt2": 20}})"), arg_names).write(), R"([1,2,{"opt1":10,"opt2":20}])");
          +  -  +  -  +  
                -  +  - ]
     127                 :             : 
     128                 :             :     // Make sure options and named parameters conflict.
     129   [ +  -  +  -  :           5 :     BOOST_CHECK_EXCEPTION(TransformParams(JSON(R"({"arg1": 1, "arg2": 2, "opt1": 10, "options":{"opt1": 10}})"), arg_names), UniValue,
          +  -  -  +  -  
          -  -  -  -  +  
          +  -  +  -  +  
                -  +  - ]
     130                 :             :                           HasJSON(R"({"code":-8,"message":"Parameter options conflicts with parameter opt1"})"));
     131                 :             : 
     132                 :             :     // Make sure options object specified through args array conflicts.
     133   [ +  -  +  -  :           5 :     BOOST_CHECK_EXCEPTION(TransformParams(JSON(R"({"args": [1, 2, {"opt1": 10}], "opt2": 20})"), arg_names), UniValue,
          +  -  -  +  -  
          -  -  -  -  +  
          +  -  +  -  +  
                -  +  - ]
     134                 :             :                           HasJSON(R"({"code":-8,"message":"Parameter options specified twice both as positional and named argument"})"));
     135   [ +  -  +  -  :           2 : }
          +  -  +  -  +  
             -  -  +  -  
                      - ]
     136                 :             : 
     137   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_rawparams)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     138                 :             : {
     139                 :             :     // Test raw transaction API argument handling
     140         [ +  - ]:           1 :     UniValue r;
     141                 :             : 
     142   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("getrawtransaction"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     143   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("getrawtransaction not_hex"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     144   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("getrawtransaction a3b807410df0b60fcb9736768df5823938b2f838694939ba45f3c0a1bff150ed not_int"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     145                 :             : 
     146   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("createrawtransaction"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     147   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("createrawtransaction null null"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     148   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("createrawtransaction not_array"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     149   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("createrawtransaction {} {}"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     150   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC("createrawtransaction [] {}"));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     151   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("createrawtransaction [] {} extra"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     152                 :             : 
     153   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("decoderawtransaction"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     154   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("decoderawtransaction null"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     155   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("decoderawtransaction DEADBEEF"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     156         [ +  - ]:           1 :     std::string rawtx = "0100000001a15d57094aa7a21a28cb20b59aab8fc7d1149a3bdbcddba9c622e4f5f6a99ece010000006c493046022100f93bb0e7d8db7bd46e40132d1f8242026e045f03a0efe71bbb8e3f475e970d790221009337cd7f1f929f00cc6ff01f03729b069a7c21b59b1736ddfee5db5946c5da8c0121033b9b137ee87d5a812d6f506efdd37f0affa7ffc310711c06c7f3e097c9447c52ffffffff0100e1f505000000001976a9140389035a9225b3839e2bbf32d826a1e222031fd888ac00000000";
     157   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("decoderawtransaction ")+rawtx));
          +  -  +  -  +  
          -  -  -  -  -  
                   -  - ]
     158   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(r.get_obj().find_value("size").getInt<int>(), 193);
          +  -  +  -  +  
                      - ]
     159   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(r.get_obj().find_value("version").getInt<int>(), 1);
          +  -  +  -  +  
                      - ]
     160   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(r.get_obj().find_value("locktime").getInt<int>(), 0);
          +  -  +  -  +  
                      - ]
     161   [ +  -  +  -  :           6 :     BOOST_CHECK_THROW(CallRPC(std::string("decoderawtransaction ")+rawtx+" extra"), std::runtime_error);
          +  -  -  +  -  
          -  -  -  -  +  
             +  -  +  - ]
     162   [ +  -  +  -  :           3 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("decoderawtransaction ")+rawtx+" false"));
          +  -  +  -  +  
          -  -  -  -  -  
                   -  - ]
     163   [ +  -  +  -  :           6 :     BOOST_CHECK_THROW(r = CallRPC(std::string("decoderawtransaction ")+rawtx+" false extra"), std::runtime_error);
          +  -  -  +  -  
          -  -  -  -  +  
             +  -  +  - ]
     164                 :             : 
     165                 :             :     // Only check failure cases for sendrawtransaction, there's no network to send to...
     166   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("sendrawtransaction"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     167   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("sendrawtransaction null"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     168   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("sendrawtransaction DEADBEEF"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     169   [ +  -  +  -  :           6 :     BOOST_CHECK_THROW(CallRPC(std::string("sendrawtransaction ")+rawtx+" extra"), std::runtime_error);
          +  -  -  +  -  
          -  -  -  -  +  
             +  -  +  - ]
     170                 :           1 : }
     171                 :             : 
     172   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_togglenetwork)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     173                 :             : {
     174         [ +  - ]:           1 :     UniValue r;
     175                 :             : 
     176   [ +  -  +  - ]:           1 :     r = CallRPC("getnetworkinfo");
     177   [ +  -  +  -  :           1 :     bool netState = r.get_obj().find_value("networkactive").get_bool();
                   +  - ]
     178   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(netState, true);
     179                 :             : 
     180   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC("setnetworkactive false"));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     181   [ +  -  +  - ]:           1 :     r = CallRPC("getnetworkinfo");
     182   [ +  -  +  -  :           1 :     int numConnection = r.get_obj().find_value("connections").getInt<int>();
                   +  - ]
     183   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(numConnection, 0);
     184                 :             : 
     185   [ +  -  +  -  :           1 :     netState = r.get_obj().find_value("networkactive").get_bool();
                   +  - ]
     186   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(netState, false);
     187                 :             : 
     188   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC("setnetworkactive true"));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     189   [ +  -  +  - ]:           1 :     r = CallRPC("getnetworkinfo");
     190   [ +  -  +  -  :           1 :     netState = r.get_obj().find_value("networkactive").get_bool();
                   +  - ]
     191   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(netState, true);
     192                 :           1 : }
     193                 :             : 
     194   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_rawsign)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     195                 :             : {
     196         [ +  - ]:           1 :     UniValue r;
     197                 :             :     // input is a 1-of-2 multisig (so is output):
     198                 :           1 :     std::string prevout =
     199                 :             :       "[{\"txid\":\"b4cc287e58f87cdae59417329f710f3ecd75a4ee1d2872b7248f50977c8493f3\","
     200                 :             :       "\"vout\":1,\"scriptPubKey\":\"a914b10c9df5f7edf436c697f02f1efdba4cf399615187\","
     201         [ +  - ]:           1 :       "\"redeemScript\":\"512103debedc17b3df2badbcdd86d5feb4562b86fe182e5998abd8bcd4f122c6155b1b21027e940bb73ab8732bfdf7f9216ecefca5b94d6df834e77e108f68e66f126044c052ae\"}]";
     202   [ +  -  +  -  :           3 :     r = CallRPC(std::string("createrawtransaction ")+prevout+" "+
                   +  - ]
     203         [ +  - ]:           1 :       "{\"3HqAe9LtNBjnsfM4CyYaWTnvCaUYT7v4oZ\":11}");
     204   [ +  -  -  + ]:           1 :     std::string notsigned = r.get_str();
     205         [ +  - ]:           1 :     std::string privkey1 = "\"KzsXybp9jX64P5ekX1KUxRQ79Jht9uzW7LorgwE65i5rWACL6LQe\"";
     206         [ +  - ]:           1 :     std::string privkey2 = "\"Kyhdf5LuKTRx4ge69ybABsiUAWjVRK4XGxAKk2FQLp2HjGMy87Z4\"";
     207   [ +  -  +  -  :           2 :     r = CallRPC(std::string("signrawtransactionwithkey ")+notsigned+" [] "+prevout);
             +  -  +  - ]
     208   [ +  -  +  -  :           2 :     BOOST_CHECK(r.get_obj().find_value("complete").get_bool() == false);
          +  -  +  -  +  
                -  +  - ]
     209   [ +  -  +  -  :           4 :     r = CallRPC(std::string("signrawtransactionwithkey ")+notsigned+" ["+privkey1+","+privkey2+"] "+prevout);
          +  -  +  -  +  
                -  +  - ]
     210   [ +  -  +  -  :           2 :     BOOST_CHECK(r.get_obj().find_value("complete").get_bool() == true);
          +  -  +  -  +  
                      - ]
     211                 :           1 : }
     212                 :             : 
     213   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_createraw_op_return)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     214                 :             : {
     215   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC("createrawtransaction [{\"txid\":\"a3b807410df0b60fcb9736768df5823938b2f838694939ba45f3c0a1bff150ed\",\"vout\":0}] {\"data\":\"68656c6c6f776f726c64\"}"));
          +  -  +  -  -  
                -  -  - ]
     216                 :             : 
     217                 :             :     // Key not "data" (bad address)
     218   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("createrawtransaction [{\"txid\":\"a3b807410df0b60fcb9736768df5823938b2f838694939ba45f3c0a1bff150ed\",\"vout\":0}] {\"somedata\":\"68656c6c6f776f726c64\"}"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     219                 :             : 
     220                 :             :     // Bad hex encoding of data output
     221   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("createrawtransaction [{\"txid\":\"a3b807410df0b60fcb9736768df5823938b2f838694939ba45f3c0a1bff150ed\",\"vout\":0}] {\"data\":\"12345\"}"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     222   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(CallRPC("createrawtransaction [{\"txid\":\"a3b807410df0b60fcb9736768df5823938b2f838694939ba45f3c0a1bff150ed\",\"vout\":0}] {\"data\":\"12345g\"}"), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     223                 :             : 
     224                 :             :     // Data 81 bytes long
     225   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC("createrawtransaction [{\"txid\":\"a3b807410df0b60fcb9736768df5823938b2f838694939ba45f3c0a1bff150ed\",\"vout\":0}] {\"data\":\"010203040506070809101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081\"}"));
          +  -  +  -  -  
                -  -  - ]
     226                 :           1 : }
     227                 :             : 
     228   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_format_monetary_values)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     229                 :             : {
     230   [ +  -  +  -  :           2 :     BOOST_CHECK(ValueFromAmount(0LL).write() == "0.00000000");
                   +  - ]
     231   [ +  -  +  -  :           2 :     BOOST_CHECK(ValueFromAmount(1LL).write() == "0.00000001");
                   +  - ]
     232   [ +  -  +  -  :           2 :     BOOST_CHECK(ValueFromAmount(17622195LL).write() == "0.17622195");
                   +  - ]
     233   [ +  -  +  -  :           2 :     BOOST_CHECK(ValueFromAmount(50000000LL).write() == "0.50000000");
                   +  - ]
     234   [ +  -  +  -  :           2 :     BOOST_CHECK(ValueFromAmount(89898989LL).write() == "0.89898989");
                   +  - ]
     235   [ +  -  +  -  :           2 :     BOOST_CHECK(ValueFromAmount(100000000LL).write() == "1.00000000");
                   +  - ]
     236   [ +  -  +  -  :           2 :     BOOST_CHECK(ValueFromAmount(2099999999999990LL).write() == "20999999.99999990");
                   +  - ]
     237   [ +  -  +  -  :           2 :     BOOST_CHECK(ValueFromAmount(2099999999999999LL).write() == "20999999.99999999");
                   +  - ]
     238                 :             : 
     239   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(0).write(), "0.00000000");
     240   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount((COIN/10000)*123456789).write(), "12345.67890000");
     241   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(-COIN).write(), "-1.00000000");
     242   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(-COIN/10).write(), "-0.10000000");
     243                 :             : 
     244   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN*100000000).write(), "100000000.00000000");
     245   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN*10000000).write(), "10000000.00000000");
     246   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN*1000000).write(), "1000000.00000000");
     247   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN*100000).write(), "100000.00000000");
     248   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN*10000).write(), "10000.00000000");
     249   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN*1000).write(), "1000.00000000");
     250   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN*100).write(), "100.00000000");
     251   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN*10).write(), "10.00000000");
     252   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN).write(), "1.00000000");
     253   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN/10).write(), "0.10000000");
     254   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN/100).write(), "0.01000000");
     255   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN/1000).write(), "0.00100000");
     256   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN/10000).write(), "0.00010000");
     257   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN/100000).write(), "0.00001000");
     258   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN/1000000).write(), "0.00000100");
     259   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN/10000000).write(), "0.00000010");
     260   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(COIN/100000000).write(), "0.00000001");
     261                 :             : 
     262   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(std::numeric_limits<CAmount>::max()).write(), "92233720368.54775807");
     263   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(std::numeric_limits<CAmount>::max() - 1).write(), "92233720368.54775806");
     264   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(std::numeric_limits<CAmount>::max() - 2).write(), "92233720368.54775805");
     265   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(std::numeric_limits<CAmount>::max() - 3).write(), "92233720368.54775804");
     266                 :             :     // ...
     267   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(std::numeric_limits<CAmount>::min() + 3).write(), "-92233720368.54775805");
     268   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(std::numeric_limits<CAmount>::min() + 2).write(), "-92233720368.54775806");
     269   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(std::numeric_limits<CAmount>::min() + 1).write(), "-92233720368.54775807");
     270   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ValueFromAmount(std::numeric_limits<CAmount>::min()).write(), "-92233720368.54775808");
     271                 :           1 : }
     272                 :             : 
     273                 :          27 : static UniValue ValueFromString(const std::string& str) noexcept
     274                 :             : {
     275         [ -  + ]:          27 :     UniValue value;
     276         [ -  + ]:          54 :     value.setNumStr(str);
     277                 :          27 :     return value;
     278                 :             : }
     279                 :             : 
     280   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_parse_monetary_values)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     281                 :             : {
     282   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(AmountFromValue(ValueFromString("-0.00000001")), UniValue);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     283   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0")), 0LL);
     284   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.00000000")), 0LL);
     285   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.00000001")), 1LL);
     286   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.17622195")), 17622195LL);
     287   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.5")), 50000000LL);
     288   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.50000000")), 50000000LL);
     289   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.89898989")), 89898989LL);
     290   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("1.00000000")), 100000000LL);
     291   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("20999999.9999999")), 2099999999999990LL);
     292   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("20999999.99999999")), 2099999999999999LL);
     293                 :             : 
     294   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("1e-8")), COIN/100000000);
     295   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.1e-7")), COIN/100000000);
     296   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.01e-6")), COIN/100000000);
     297   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.00000000000000000000000000000000000001e+30")), 1);
     298   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.0000000000000000000000000000000000000000000000000000000000000000000000000001e+68")), COIN/100000000);
     299   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("10000000000000000000000000000000000000000000000000000000000000000e-64")), COIN);
     300   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000e64")), COIN);
     301                 :             : 
     302   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(AmountFromValue(ValueFromString("1e-9")), UniValue); //should fail
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     303   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(AmountFromValue(ValueFromString("0.000000019")), UniValue); //should fail
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     304   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.00000001000000")), 1LL); //should pass, cut trailing 0
     305   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(AmountFromValue(ValueFromString("19e-9")), UniValue); //should fail
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     306   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(AmountFromValue(ValueFromString("0.19e-6")), 19); //should pass, leading 0 is present
     307   [ +  -  +  -  :           4 :     BOOST_CHECK_EXCEPTION(AmountFromValue(".19e-6"), UniValue, HasJSON(R"({"code":-3,"message":"Invalid amount"})")); //should fail, no leading 0
          -  +  -  -  -  
          -  -  +  +  -  
          +  -  +  -  +  
                      - ]
     308                 :             : 
     309   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(AmountFromValue(ValueFromString("92233720368.54775808")), UniValue); //overflow error
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     310   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(AmountFromValue(ValueFromString("1e+11")), UniValue); //overflow error
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     311   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(AmountFromValue(ValueFromString("1e11")), UniValue); //overflow error signless
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     312   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(AmountFromValue(ValueFromString("93e+9")), UniValue); //overflow error
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     313                 :           1 : }
     314                 :             : 
     315   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_ban)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     316                 :             : {
     317   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC(std::string("clearbanned")));
          +  -  +  -  -  
                -  -  - ]
     318                 :             : 
     319         [ +  - ]:           1 :     UniValue r;
     320   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("setban 127.0.0.0 add")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     321   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(r = CallRPC(std::string("setban 127.0.0.0:8334")), std::runtime_error); //portnumber for setban not allowed
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     322   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("listbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     323   [ +  -  +  - ]:           1 :     UniValue ar = r.get_array();
     324   [ +  -  +  -  :           1 :     UniValue o1 = ar[0].get_obj();
                   +  - ]
     325   [ +  -  +  - ]:           1 :     UniValue adr = o1.find_value("address");
     326   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(adr.get_str(), "127.0.0.0/32");
                   +  - ]
     327   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC(std::string("setban 127.0.0.0 remove")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     328   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("listbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     329   [ +  -  +  - ]:           1 :     ar = r.get_array();
     330   [ +  -  -  +  :           1 :     BOOST_CHECK_EQUAL(ar.size(), 0U);
                   +  - ]
     331                 :             : 
     332   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("setban 127.0.0.0/24 add 9907731200 true")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     333   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("listbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     334   [ +  -  +  - ]:           1 :     ar = r.get_array();
     335   [ +  -  +  -  :           1 :     o1 = ar[0].get_obj();
                   +  - ]
     336   [ +  -  +  - ]:           1 :     adr = o1.find_value("address");
     337   [ +  -  +  - ]:           1 :     int64_t banned_until{o1.find_value("banned_until").getInt<int64_t>()};
     338   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(adr.get_str(), "127.0.0.0/24");
                   +  - ]
     339   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(banned_until, 9907731200); // absolute time check
     340                 :             : 
     341   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC(std::string("clearbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     342                 :             : 
     343                 :           1 :     auto now = 10'000s;
     344         [ +  - ]:           1 :     SetMockTime(now);
     345   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("setban 127.0.0.0/24 add 200")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     346         [ +  - ]:           1 :     SetMockTime(now += 2s);
     347                 :           1 :     const int64_t time_remaining_expected{198};
     348   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("listbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     349   [ +  -  +  - ]:           1 :     ar = r.get_array();
     350   [ +  -  +  -  :           1 :     o1 = ar[0].get_obj();
                   +  - ]
     351   [ +  -  +  - ]:           1 :     adr = o1.find_value("address");
     352   [ +  -  +  - ]:           1 :     banned_until = o1.find_value("banned_until").getInt<int64_t>();
     353   [ +  -  +  - ]:           1 :     const int64_t ban_created{o1.find_value("ban_created").getInt<int64_t>()};
     354   [ +  -  +  - ]:           1 :     const int64_t ban_duration{o1.find_value("ban_duration").getInt<int64_t>()};
     355   [ +  -  +  - ]:           1 :     const int64_t time_remaining{o1.find_value("time_remaining").getInt<int64_t>()};
     356   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(adr.get_str(), "127.0.0.0/24");
                   +  - ]
     357   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(banned_until, time_remaining_expected + now.count());
     358   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(ban_duration, banned_until - ban_created);
     359   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(time_remaining, time_remaining_expected);
     360                 :             : 
     361                 :             :     // must throw an exception because 127.0.0.1 is in already banned subnet range
     362   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(r = CallRPC(std::string("setban 127.0.0.1 add")), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     363                 :             : 
     364   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC(std::string("setban 127.0.0.0/24 remove")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     365   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("listbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     366   [ +  -  +  - ]:           1 :     ar = r.get_array();
     367   [ +  -  -  +  :           1 :     BOOST_CHECK_EQUAL(ar.size(), 0U);
                   +  - ]
     368                 :             : 
     369   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("setban 127.0.0.0/255.255.0.0 add")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     370   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(r = CallRPC(std::string("setban 127.0.1.1 add")), std::runtime_error);
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     371                 :             : 
     372   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC(std::string("clearbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     373   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("listbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     374   [ +  -  +  - ]:           1 :     ar = r.get_array();
     375   [ +  -  -  +  :           1 :     BOOST_CHECK_EQUAL(ar.size(), 0U);
                   +  - ]
     376                 :             : 
     377                 :             : 
     378   [ +  -  +  -  :           3 :     BOOST_CHECK_THROW(r = CallRPC(std::string("setban test add")), std::runtime_error); //invalid IP
          -  +  -  -  -  
          -  -  +  +  -  
                   +  - ]
     379                 :             : 
     380                 :             :     //IPv6 tests
     381   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("setban FE80:0000:0000:0000:0202:B3FF:FE1E:8329 add")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     382   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("listbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     383   [ +  -  +  - ]:           1 :     ar = r.get_array();
     384   [ +  -  +  -  :           1 :     o1 = ar[0].get_obj();
                   +  - ]
     385   [ +  -  +  - ]:           1 :     adr = o1.find_value("address");
     386   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(adr.get_str(), "fe80::202:b3ff:fe1e:8329/128");
                   +  - ]
     387                 :             : 
     388   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC(std::string("clearbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     389   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("setban 2001:db8::/ffff:fffc:0:0:0:0:0:0 add")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     390   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("listbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     391   [ +  -  +  - ]:           1 :     ar = r.get_array();
     392   [ +  -  +  -  :           1 :     o1 = ar[0].get_obj();
                   +  - ]
     393   [ +  -  +  - ]:           1 :     adr = o1.find_value("address");
     394   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(adr.get_str(), "2001:db8::/30");
                   +  - ]
     395                 :             : 
     396   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(CallRPC(std::string("clearbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     397   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("setban 2001:4d48:ac57:400:cacf:e9ff:fe1d:9c63/128 add")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     398   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(r = CallRPC(std::string("listbanned")));
          +  -  +  -  -  
             -  -  -  -  
                      - ]
     399   [ +  -  +  - ]:           1 :     ar = r.get_array();
     400   [ +  -  +  -  :           1 :     o1 = ar[0].get_obj();
                   +  - ]
     401   [ +  -  +  - ]:           1 :     adr = o1.find_value("address");
     402   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(adr.get_str(), "2001:4d48:ac57:400:cacf:e9ff:fe1d:9c63/128");
                   +  - ]
     403                 :           1 : }
     404                 :             : 
     405   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_convert_values_generatetoaddress)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     406                 :             : {
     407         [ +  - ]:           1 :     UniValue result;
     408                 :             : 
     409   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(result = RPCConvertValues("generatetoaddress", {"101", "mkESjLZW66TmHhiFX8MCaBjrhZ543PPh9a"}));
          +  -  +  -  +  
          -  -  -  -  -  
                   -  - ]
     410   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[0].getInt<int>(), 101);
             +  -  +  - ]
     411   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[1].get_str(), "mkESjLZW66TmHhiFX8MCaBjrhZ543PPh9a");
             +  -  +  - ]
     412                 :             : 
     413   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(result = RPCConvertValues("generatetoaddress", {"101", "mhMbmE2tE9xzJYCV9aNC8jKWN31vtGrguU"}));
          +  -  +  -  +  
          -  -  -  -  -  
                   -  - ]
     414   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[0].getInt<int>(), 101);
             +  -  +  - ]
     415   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[1].get_str(), "mhMbmE2tE9xzJYCV9aNC8jKWN31vtGrguU");
             +  -  +  - ]
     416                 :             : 
     417   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(result = RPCConvertValues("generatetoaddress", {"1", "mkESjLZW66TmHhiFX8MCaBjrhZ543PPh9a", "9"}));
          +  -  +  -  +  
          -  -  -  -  -  
                   -  - ]
     418   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[0].getInt<int>(), 1);
             +  -  +  - ]
     419   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[1].get_str(), "mkESjLZW66TmHhiFX8MCaBjrhZ543PPh9a");
             +  -  +  - ]
     420   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[2].getInt<int>(), 9);
             +  -  +  - ]
     421                 :             : 
     422   [ +  -  +  -  :           2 :     BOOST_CHECK_NO_THROW(result = RPCConvertValues("generatetoaddress", {"1", "mhMbmE2tE9xzJYCV9aNC8jKWN31vtGrguU", "9"}));
          +  -  +  -  +  
          -  -  -  -  -  
                   -  - ]
     423   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[0].getInt<int>(), 1);
             +  -  +  - ]
     424   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[1].get_str(), "mhMbmE2tE9xzJYCV9aNC8jKWN31vtGrguU");
             +  -  +  - ]
     425   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(result[2].getInt<int>(), 9);
             +  -  +  - ]
     426                 :           1 : }
     427                 :             : 
     428   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_getblockstats_calculate_percentiles_by_weight)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     429                 :             : {
     430                 :           1 :     int64_t total_weight = 200;
     431                 :           1 :     std::vector<std::pair<CAmount, int64_t>> feerates;
     432         [ +  - ]:           1 :     feerates.reserve(200);
     433                 :           1 :     CAmount result[NUM_GETBLOCKSTATS_PERCENTILES] = { 0 };
     434                 :             : 
     435         [ +  + ]:         101 :     for (int64_t i = 0; i < 100; i++) {
     436         [ +  - ]:         100 :         feerates.emplace_back(1 ,1);
     437                 :             :     }
     438                 :             : 
     439         [ +  + ]:         101 :     for (int64_t i = 0; i < 100; i++) {
     440         [ +  - ]:         100 :         feerates.emplace_back(2 ,1);
     441                 :             :     }
     442                 :             : 
     443         [ +  - ]:           1 :     CalculatePercentilesByWeight(result, feerates, total_weight);
     444   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result[0], 1);
     445   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result[1], 1);
     446   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result[2], 1);
     447   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result[3], 2);
     448   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result[4], 2);
     449                 :             : 
     450                 :             :     // Test with more pairs, and two pairs overlapping 2 percentiles.
     451                 :           1 :     total_weight = 100;
     452                 :           1 :     CAmount result2[NUM_GETBLOCKSTATS_PERCENTILES] = { 0 };
     453         [ +  - ]:           1 :     feerates.clear();
     454                 :             : 
     455         [ +  - ]:           1 :     feerates.emplace_back(1, 9);
     456         [ +  - ]:           1 :     feerates.emplace_back(2 , 16); //10th + 25th percentile
     457         [ +  - ]:           1 :     feerates.emplace_back(4 ,50); //50th + 75th percentile
     458         [ +  - ]:           1 :     feerates.emplace_back(5 ,10);
     459         [ +  - ]:           1 :     feerates.emplace_back(9 ,15);  // 90th percentile
     460                 :             : 
     461         [ +  - ]:           1 :     CalculatePercentilesByWeight(result2, feerates, total_weight);
     462                 :             : 
     463   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result2[0], 2);
     464   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result2[1], 2);
     465   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result2[2], 4);
     466   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result2[3], 4);
     467   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result2[4], 9);
     468                 :             : 
     469                 :             :     // Same test as above, but one of the percentile-overlapping pairs is split in 2.
     470                 :           1 :     total_weight = 100;
     471                 :           1 :     CAmount result3[NUM_GETBLOCKSTATS_PERCENTILES] = { 0 };
     472         [ +  - ]:           1 :     feerates.clear();
     473                 :             : 
     474         [ +  - ]:           1 :     feerates.emplace_back(1, 9);
     475         [ +  - ]:           1 :     feerates.emplace_back(2 , 11); // 10th percentile
     476         [ +  - ]:           1 :     feerates.emplace_back(2 , 5); // 25th percentile
     477         [ +  - ]:           1 :     feerates.emplace_back(4 ,50); //50th + 75th percentile
     478         [ +  - ]:           1 :     feerates.emplace_back(5 ,10);
     479         [ +  - ]:           1 :     feerates.emplace_back(9 ,15); // 90th percentile
     480                 :             : 
     481         [ +  - ]:           1 :     CalculatePercentilesByWeight(result3, feerates, total_weight);
     482                 :             : 
     483   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result3[0], 2);
     484   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result3[1], 2);
     485   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result3[2], 4);
     486   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result3[3], 4);
     487   [ +  -  +  - ]:           1 :     BOOST_CHECK_EQUAL(result3[4], 9);
     488                 :             : 
     489                 :             :     // Test with one transaction spanning all percentiles.
     490                 :           1 :     total_weight = 104;
     491                 :           1 :     CAmount result4[NUM_GETBLOCKSTATS_PERCENTILES] = { 0 };
     492         [ +  - ]:           1 :     feerates.clear();
     493                 :             : 
     494         [ +  - ]:           1 :     feerates.emplace_back(1, 100);
     495         [ +  - ]:           1 :     feerates.emplace_back(2, 1);
     496         [ +  - ]:           1 :     feerates.emplace_back(3, 1);
     497         [ +  - ]:           1 :     feerates.emplace_back(3, 1);
     498         [ +  - ]:           1 :     feerates.emplace_back(999999, 1);
     499                 :             : 
     500         [ +  - ]:           1 :     CalculatePercentilesByWeight(result4, feerates, total_weight);
     501                 :             : 
     502         [ +  + ]:           6 :     for (int64_t i = 0; i < NUM_GETBLOCKSTATS_PERCENTILES; i++) {
     503   [ +  -  +  - ]:           5 :         BOOST_CHECK_EQUAL(result4[i], 1);
     504                 :             :     }
     505                 :           1 : }
     506                 :             : 
     507                 :             : // Make sure errors are triggered appropriately if parameters have the same names.
     508   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(check_dup_param_names)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     509                 :             : {
     510                 :           1 :     enum ParamType { POSITIONAL, NAMED, NAMED_ONLY };
     511                 :          20 :     auto make_rpc = [](std::vector<std::tuple<std::string, ParamType>> param_names) {
     512                 :          19 :         std::vector<RPCArg> params;
     513                 :          19 :         std::vector<RPCArg> options;
     514   [ +  +  -  +  :          49 :         auto push_options = [&] { if (!options.empty()) params.emplace_back(strprintf("options%i", params.size()), RPCArg::Type::OBJ_NAMED_PARAMS, RPCArg::Optional::OMITTED, "", std::move(options)); };
                   +  - ]
     515   [ +  +  +  + ]:          57 :         for (auto& [param_name, param_type] : param_names) {
     516         [ +  + ]:          38 :             if (param_type == POSITIONAL) {
     517         [ +  - ]:          13 :                 push_options();
     518         [ +  - ]:          13 :                 params.emplace_back(std::move(param_name), RPCArg::Type::NUM, RPCArg::Optional::OMITTED, "description");
     519                 :             :             } else {
     520         [ +  - ]:          50 :                 options.emplace_back(std::move(param_name), RPCArg::Type::NUM, RPCArg::Optional::OMITTED, "description", RPCArgOptions{.also_positional = param_type == NAMED});
     521                 :             :             }
     522                 :             :         }
     523         [ +  - ]:          19 :         push_options();
     524   [ +  -  +  -  :         119 :         return RPCHelpMan{"method_name", "description", params, RPCResults{}, RPCExamples{""}};
          +  -  +  -  +  
                -  +  + ]
     525                 :          27 :     };
     526                 :             : 
     527                 :             :     // No errors if parameter names are unique.
     528   [ +  -  +  -  :           4 :     make_rpc({{"p1", POSITIONAL}, {"p2", POSITIONAL}});
             +  +  -  - ]
     529   [ +  -  +  -  :           4 :     make_rpc({{"p1", POSITIONAL}, {"p2", NAMED}});
             +  +  -  - ]
     530   [ +  -  +  -  :           4 :     make_rpc({{"p1", POSITIONAL}, {"p2", NAMED_ONLY}});
             +  +  -  - ]
     531   [ +  -  +  -  :           4 :     make_rpc({{"p1", NAMED}, {"p2", POSITIONAL}});
             +  +  -  - ]
     532   [ +  -  +  -  :           4 :     make_rpc({{"p1", NAMED}, {"p2", NAMED}});
             +  +  -  - ]
     533   [ +  -  +  -  :           4 :     make_rpc({{"p1", NAMED}, {"p2", NAMED_ONLY}});
             +  +  -  - ]
     534   [ +  -  +  -  :           4 :     make_rpc({{"p1", NAMED_ONLY}, {"p2", POSITIONAL}});
             +  +  -  - ]
     535   [ +  -  +  -  :           4 :     make_rpc({{"p1", NAMED_ONLY}, {"p2", NAMED}});
             +  +  -  - ]
     536   [ +  -  +  -  :           4 :     make_rpc({{"p1", NAMED_ONLY}, {"p2", NAMED_ONLY}});
             +  +  -  - ]
     537                 :             : 
     538                 :           1 :     {
     539         [ +  - ]:           1 :         test_only_CheckFailuresAreExceptionsNotAborts mock_checks{};
     540                 :             :         // Error if parameter names are duplicates, unless one parameter is
     541                 :             :         // positional and the other is named and .also_positional is true.
     542   [ +  -  +  -  :           7 :         BOOST_CHECK_THROW(make_rpc({{"p1", POSITIONAL}, {"p1", POSITIONAL}}), NonFatalCheckError);
          -  +  -  -  -  
          -  -  -  +  +  
          -  +  +  -  +  
                -  +  - ]
     543   [ +  -  +  -  :           4 :         make_rpc({{"p1", POSITIONAL}, {"p1", NAMED}});
             +  +  -  - ]
     544   [ +  -  +  -  :           7 :         BOOST_CHECK_THROW(make_rpc({{"p1", POSITIONAL}, {"p1", NAMED_ONLY}}), NonFatalCheckError);
          -  +  -  -  -  
          -  -  -  +  +  
          -  +  +  -  +  
                -  +  - ]
     545   [ +  -  +  -  :           4 :         make_rpc({{"p1", NAMED}, {"p1", POSITIONAL}});
             +  +  -  - ]
     546   [ +  -  +  -  :           7 :         BOOST_CHECK_THROW(make_rpc({{"p1", NAMED}, {"p1", NAMED}}), NonFatalCheckError);
          -  +  -  -  -  
          -  -  -  +  +  
          -  +  +  -  +  
                -  +  - ]
     547   [ +  -  +  -  :           7 :         BOOST_CHECK_THROW(make_rpc({{"p1", NAMED}, {"p1", NAMED_ONLY}}), NonFatalCheckError);
          -  +  -  -  -  
          -  -  -  +  +  
          -  +  +  -  +  
                -  +  - ]
     548   [ +  -  +  -  :           7 :         BOOST_CHECK_THROW(make_rpc({{"p1", NAMED_ONLY}, {"p1", POSITIONAL}}), NonFatalCheckError);
          -  +  -  -  -  
          -  -  -  +  +  
          -  +  +  -  +  
                -  +  - ]
     549   [ +  -  +  -  :           7 :         BOOST_CHECK_THROW(make_rpc({{"p1", NAMED_ONLY}, {"p1", NAMED}}), NonFatalCheckError);
          -  +  -  -  -  
          -  -  -  +  +  
          -  +  +  -  +  
                -  +  - ]
     550   [ +  -  +  -  :           7 :         BOOST_CHECK_THROW(make_rpc({{"p1", NAMED_ONLY}, {"p1", NAMED_ONLY}}), NonFatalCheckError);
          -  +  -  -  -  
          -  -  -  +  +  
          -  +  +  -  +  
                -  +  - ]
     551                 :             : 
     552                 :             :         // Make sure duplicate aliases are detected too.
     553   [ +  -  +  -  :           7 :         BOOST_CHECK_THROW(make_rpc({{"p1", POSITIONAL}, {"p2|p1", NAMED_ONLY}}), NonFatalCheckError);
          -  +  -  -  -  
          -  -  -  +  +  
          -  +  +  -  +  
                -  +  - ]
     554                 :             :     }
     555   [ +  -  +  -  :          47 : }
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  -  -  
          -  -  -  -  -  
          -  -  -  -  -  
          -  -  -  -  -  
          -  +  -  -  -  
          +  -  -  -  +  
          -  +  -  +  -  
             +  -  +  -  
                      + ]
     556                 :             : 
     557   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(help_example)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     558                 :             : {
     559                 :             :     // test different argument types
     560   [ +  -  +  +  :           5 :     const RPCArgList& args = {{"foo", "bar"}, {"b", true}, {"n", 1}};
                   -  - ]
     561   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(HelpExampleCliNamed("test", args), "> bitcoin-cli -named test foo=bar b=true n=1\n");
             +  -  +  - ]
     562   [ +  -  +  -  :           1 :     BOOST_CHECK_EQUAL(HelpExampleRpcNamed("test", args), "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", \"method\": \"test\", \"params\": {\"foo\":\"bar\",\"b\":true,\"n\":1}}' -H 'content-type: application/json' http://127.0.0.1:8332/\n");
             +  -  +  - ]
     563                 :             : 
     564                 :             :     // test shell escape
     565   [ +  -  +  -  :           3 :     BOOST_CHECK_EQUAL(HelpExampleCliNamed("test", {{"foo", "b'ar"}}), "> bitcoin-cli -named test foo='b'''ar'\n");
          +  -  +  -  +  
             -  +  +  -  
                      - ]
     566   [ +  -  +  -  :           3 :     BOOST_CHECK_EQUAL(HelpExampleCliNamed("test", {{"foo", "b\"ar"}}), "> bitcoin-cli -named test foo='b\"ar'\n");
          +  -  +  -  +  
             -  +  +  -  
                      - ]
     567   [ +  -  +  -  :           3 :     BOOST_CHECK_EQUAL(HelpExampleCliNamed("test", {{"foo", "b ar"}}), "> bitcoin-cli -named test foo='b ar'\n");
          +  -  +  -  +  
             -  +  +  -  
                      - ]
     568                 :             : 
     569                 :             :     // test object params
     570                 :           1 :     UniValue obj_value(UniValue::VOBJ);
     571   [ +  -  +  -  :           2 :     obj_value.pushKV("foo", "bar");
                   +  - ]
     572   [ +  -  +  -  :           2 :     obj_value.pushKV("b", false);
                   +  - ]
     573   [ +  -  +  -  :           2 :     obj_value.pushKV("n", 1);
                   +  - ]
     574   [ +  -  +  -  :           3 :     BOOST_CHECK_EQUAL(HelpExampleCliNamed("test", {{"name", obj_value}}), "> bitcoin-cli -named test name='{\"foo\":\"bar\",\"b\":false,\"n\":1}'\n");
          +  -  +  -  +  
             -  +  +  -  
                      - ]
     575   [ +  -  +  -  :           3 :     BOOST_CHECK_EQUAL(HelpExampleRpcNamed("test", {{"name", obj_value}}), "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", \"method\": \"test\", \"params\": {\"name\":{\"foo\":\"bar\",\"b\":false,\"n\":1}}}' -H 'content-type: application/json' http://127.0.0.1:8332/\n");
          +  -  +  -  +  
             -  +  +  -  
                      - ]
     576                 :             : 
     577                 :             :     // test array params
     578                 :           1 :     UniValue arr_value(UniValue::VARR);
     579   [ +  -  +  - ]:           1 :     arr_value.push_back("bar");
     580   [ +  -  +  - ]:           1 :     arr_value.push_back(false);
     581   [ +  -  +  - ]:           1 :     arr_value.push_back(1);
     582   [ +  -  +  -  :           3 :     BOOST_CHECK_EQUAL(HelpExampleCliNamed("test", {{"name", arr_value}}), "> bitcoin-cli -named test name='[\"bar\",false,1]'\n");
          +  -  +  -  +  
             -  +  +  -  
                      - ]
     583   [ +  -  +  -  :           3 :     BOOST_CHECK_EQUAL(HelpExampleRpcNamed("test", {{"name", arr_value}}), "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", \"method\": \"test\", \"params\": {\"name\":[\"bar\",false,1]}}' -H 'content-type: application/json' http://127.0.0.1:8332/\n");
          +  -  +  -  +  
             -  +  +  -  
                      - ]
     584                 :             : 
     585                 :             :     // test types don't matter for shell
     586   [ +  -  +  -  :           6 :     BOOST_CHECK_EQUAL(HelpExampleCliNamed("foo", {{"arg", true}}), HelpExampleCliNamed("foo", {{"arg", "true"}}));
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  +  +  
             +  -  -  -  
                      - ]
     587                 :             : 
     588                 :             :     // test types matter for Rpc
     589   [ +  -  +  -  :           6 :     BOOST_CHECK_NE(HelpExampleRpcNamed("foo", {{"arg", true}}), HelpExampleRpcNamed("foo", {{"arg", "true"}}));
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  +  +  
             +  -  -  -  
                      - ]
     590   [ +  -  +  -  :          13 : }
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  -  
                      - ]
     591                 :             : 
     592                 :           2 : static void CheckRpc(const std::vector<RPCArg>& params, const UniValue& args, RPCHelpMan::RPCMethodImpl test_impl)
     593                 :             : {
     594   [ +  -  +  - ]:           2 :     auto null_result{RPCResult{RPCResult::Type::NONE, "", "None"}};
     595   [ +  -  +  -  :           6 :     const RPCHelpMan rpc{"dummy", "dummy description", params, null_result, RPCExamples{""}, test_impl};
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
     596                 :           2 :     JSONRPCRequest req;
     597         [ +  - ]:           2 :     req.params = args;
     598                 :             : 
     599         [ +  - ]:           2 :     rpc.HandleRequest(req);
     600                 :           2 : }
     601                 :             : 
     602   [ +  -  +  -  :           7 : BOOST_AUTO_TEST_CASE(rpc_arg_helper)
          +  -  +  -  -  
          +  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     603                 :             : {
     604                 :           1 :     constexpr bool DEFAULT_BOOL = true;
     605                 :           1 :     constexpr auto DEFAULT_STRING = "default";
     606                 :           1 :     constexpr uint64_t DEFAULT_UINT64_T = 3;
     607                 :             : 
     608                 :             :     //! Parameters with which the RPCHelpMan is instantiated
     609                 :           1 :     const std::vector<RPCArg> params{
     610                 :             :         // Required arg
     611   [ +  -  +  - ]:           2 :         {"req_int", RPCArg::Type::NUM, RPCArg::Optional::NO, ""},
     612   [ +  -  +  - ]:           2 :         {"req_str", RPCArg::Type::STR, RPCArg::Optional::NO, ""},
     613                 :             :         // Default arg
     614   [ +  -  +  -  :           3 :         {"def_uint64_t", RPCArg::Type::NUM, RPCArg::Default{DEFAULT_UINT64_T}, ""},
                   +  - ]
     615   [ +  -  +  -  :           3 :         {"def_string", RPCArg::Type::STR, RPCArg::Default{DEFAULT_STRING}, ""},
                   +  - ]
     616   [ +  -  +  -  :           3 :         {"def_bool", RPCArg::Type::BOOL, RPCArg::Default{DEFAULT_BOOL}, ""},
                   +  - ]
     617                 :             :         // Optional arg without default
     618   [ +  -  +  - ]:           2 :         {"opt_double", RPCArg::Type::NUM, RPCArg::Optional::OMITTED, ""},
     619   [ +  -  +  - ]:           2 :         {"opt_string", RPCArg::Type::STR, RPCArg::Optional::OMITTED, ""}
     620   [ +  -  +  +  :           9 :     };
                   -  - ]
     621                 :             : 
     622                 :             :     //! Check that `self.Arg` returns the same value as the `request.params` accessors
     623         [ +  - ]:           3 :     RPCHelpMan::RPCMethodImpl check_positional = [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue {
     624         [ +  - ]:           2 :             BOOST_CHECK_EQUAL(self.Arg<int>("req_int"), request.params[0].getInt<int>());
     625         [ +  - ]:           2 :             BOOST_CHECK_EQUAL(self.Arg<std::string_view>("req_str"), request.params[1].get_str());
     626   [ +  +  +  - ]:           2 :             BOOST_CHECK_EQUAL(self.Arg<uint64_t>("def_uint64_t"), request.params[2].isNull() ? DEFAULT_UINT64_T : request.params[2].getInt<uint64_t>());
     627   [ +  +  -  +  :           3 :             BOOST_CHECK_EQUAL(self.Arg<std::string_view>("def_string"), request.params[3].isNull() ? DEFAULT_STRING : request.params[3].get_str());
             +  -  +  - ]
     628   [ +  +  +  - ]:           2 :             BOOST_CHECK_EQUAL(self.Arg<bool>("def_bool"), request.params[4].isNull() ? DEFAULT_BOOL : request.params[4].get_bool());
     629         [ +  + ]:           2 :             if (!request.params[5].isNull()) {
     630   [ +  -  +  - ]:           1 :                 BOOST_CHECK_EQUAL(self.MaybeArg<double>("opt_double").value(), request.params[5].get_real());
     631                 :             :             } else {
     632   [ +  -  +  - ]:           2 :                 BOOST_CHECK(!self.MaybeArg<double>("opt_double"));
     633                 :             :             }
     634         [ +  + ]:           2 :             if (!request.params[6].isNull()) {
     635         [ +  - ]:           1 :                 BOOST_CHECK_EQUAL(self.MaybeArg<std::string_view>("opt_string"), request.params[6].get_str());
     636                 :             :             } else {
     637   [ +  -  +  - ]:           2 :                 BOOST_CHECK(!self.MaybeArg<std::string_view>("opt_string"));
     638                 :             :             }
     639                 :           2 :             return UniValue{};
     640                 :           1 :         };
     641   [ +  -  +  -  :           1 :     CheckRpc(params, UniValue{JSON(R"([5, "hello", null, null, null, null, null])")}, check_positional);
                   +  - ]
     642   [ +  -  +  -  :           1 :     CheckRpc(params, UniValue{JSON(R"([5, "hello", 4, "test", true, 1.23, "world"])")}, check_positional);
                   +  - ]
     643   [ +  -  +  -  :          15 : }
          +  -  +  -  +  
          -  +  -  +  -  
                   -  - ]
     644                 :             : 
     645                 :             : BOOST_AUTO_TEST_SUITE_END()
        

Generated by: LCOV version 2.0-1