2019-03-01 19:54:15 +01:00
|
|
|
#!/usr/bin/env python3
|
2020-12-31 18:50:11 +01:00
|
|
|
# Copyright (c) 2019-2020 The Bitcoin Core developers
|
2019-03-01 19:54:15 +01:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
"""Test RPC misc output."""
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
from test_framework.util import (
|
|
|
|
assert_raises_rpc_error,
|
|
|
|
assert_equal,
|
|
|
|
assert_greater_than,
|
|
|
|
assert_greater_than_or_equal,
|
|
|
|
)
|
|
|
|
|
|
|
|
from test_framework.authproxy import JSONRPCException
|
|
|
|
|
|
|
|
|
|
|
|
class RpcMiscTest(BitcoinTestFramework):
|
|
|
|
def set_test_params(self):
|
|
|
|
self.num_nodes = 1
|
2019-12-09 19:52:38 +01:00
|
|
|
self.supports_cli = False
|
2019-03-01 19:54:15 +01:00
|
|
|
|
|
|
|
def run_test(self):
|
|
|
|
node = self.nodes[0]
|
|
|
|
|
2022-02-27 09:05:32 +01:00
|
|
|
self.log.info("test CHECK_NONFATAL")
|
|
|
|
assert_raises_rpc_error(
|
|
|
|
-1,
|
2022-04-09 02:14:02 +02:00
|
|
|
'Internal bug detected: "request.params[9].get_str() != "trigger_internal_bug""',
|
2020-08-14 09:24:42 +02:00
|
|
|
lambda: node.echo(arg9='trigger_internal_bug'),
|
2022-02-27 09:05:32 +01:00
|
|
|
)
|
|
|
|
|
2019-03-01 19:54:15 +01:00
|
|
|
self.log.info("test getmemoryinfo")
|
|
|
|
memory = node.getmemoryinfo()['locked']
|
|
|
|
assert_greater_than(memory['used'], 0)
|
|
|
|
assert_greater_than(memory['free'], 0)
|
|
|
|
assert_greater_than(memory['total'], 0)
|
|
|
|
# assert_greater_than_or_equal() for locked in case locking pages failed at some point
|
|
|
|
assert_greater_than_or_equal(memory['locked'], 0)
|
|
|
|
assert_greater_than(memory['chunks_used'], 0)
|
|
|
|
assert_greater_than(memory['chunks_free'], 0)
|
|
|
|
assert_equal(memory['used'] + memory['free'], memory['total'])
|
|
|
|
|
|
|
|
self.log.info("test mallocinfo")
|
|
|
|
try:
|
|
|
|
mallocinfo = node.getmemoryinfo(mode="mallocinfo")
|
|
|
|
self.log.info('getmemoryinfo(mode="mallocinfo") call succeeded')
|
|
|
|
tree = ET.fromstring(mallocinfo)
|
|
|
|
assert_equal(tree.tag, 'malloc')
|
|
|
|
except JSONRPCException:
|
|
|
|
self.log.info('getmemoryinfo(mode="mallocinfo") not available')
|
2021-12-02 08:31:47 +01:00
|
|
|
assert_raises_rpc_error(-8, 'mallocinfo mode not available', node.getmemoryinfo, mode="mallocinfo")
|
2019-03-01 19:54:15 +01:00
|
|
|
|
|
|
|
assert_raises_rpc_error(-8, "unknown mode foobar", node.getmemoryinfo, mode="foobar")
|
|
|
|
|
Merge bitcoin/bitcoin#22530: log: sort logging categories alphabetically
d596dba9877e7ead3fb5426cbe7e608fbcbfe3eb test: assert logging categories are sorted in rpc and help (Jon Atack)
17bbff3b88132c0c95b29b59100456b85e26df75 log, refactor: use guard clause in LogCategoriesList() (Jon Atack)
7c57297319bc386afaf06528778384fe58576ef9 log: sort LogCategoriesList and LogCategoriesString alphabetically (Jon Atack)
f720cfa824f1be863349e7016080f8fb1c3c76c2 test: verify number of categories returned by logging RPC (Jon Atack)
Pull request description:
Sorting the logging categories seems more user-friendly with the number of categories we now have, allowing CLI users to more quickly find a particular category.
before
```
$ bitcoin-cli help logging
...
The valid logging categories are: net, tor, mempool, http, bench, zmq, walletdb, rpc, estimatefee, addrman, selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej, libevent, coindb, qt, leveldb, validation, i2p, ipc
$ bitcoind -h | grep -A8 "debug=<category>"
-debug=<category>
...
output all debugging information. <category> can be: net, tor,
mempool, http, bench, zmq, walletdb, rpc, estimatefee, addrman,
selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej,
libevent, coindb, qt, leveldb, validation, i2p, ipc.
$ bitcoin-cli logging [] '["addrman"]'
{
"net": false,
"tor": true,
"mempool": false,
"http": false,
"bench": false,
"zmq": false,
"walletdb": false,
"rpc": false,
"estimatefee": false,
"addrman": false,
"selectcoins": false,
"reindex": false,
"cmpctblock": false,
"rand": false,
"prune": false,
"proxy": true,
"mempoolrej": false,
"libevent": false,
"coindb": false,
"qt": false,
"leveldb": false,
"validation": false,
"i2p": true,
"ipc": false
}
```
after
```
$ bitcoin-cli help logging
...
The valid logging categories are: addrman, bench, cmpctblock, coindb, estimatefee, http, i2p, ipc, leveldb, libevent, mempool, mempoolrej, net, proxy, prune, qt, rand, reindex, rpc, selectcoins, tor, validation, walletdb, zmq
$ bitcoind -h | grep -A8 "debug=<category>"
-debug=<category>
...
output all debugging information. <category> can be: addrman,
bench, cmpctblock, coindb, estimatefee, http, i2p, ipc, leveldb,
libevent, mempool, mempoolrej, net, proxy, prune, qt, rand,
reindex, rpc, selectcoins, tor, validation, walletdb, zmq.
$ bitcoin-cli logging [] '["addrman"]'
{
"addrman": false,
"bench": false,
"cmpctblock": false,
"coindb": false,
"estimatefee": false,
"http": false,
"i2p": false,
"ipc": false,
"leveldb": false,
"libevent": false,
"mempool": false,
"mempoolrej": false,
"net": false,
"proxy": false,
"prune": false,
"qt": false,
"rand": false,
"reindex": false,
"rpc": false,
"selectcoins": false,
"tor": false,
"validation": false,
"walletdb": false,
"zmq": false
}
```
ACKs for top commit:
theStack:
re-ACK d596dba9877e7ead3fb5426cbe7e608fbcbfe3eb
Tree-SHA512: d546257f562b0a288d1b19a028f1a510aaf21bd21da058e7c84653d305ea8662ecb4647ebefd2b97411f845fe5b0b841d40d3fe6814eefcb8ce82df341dfce22
2021-07-28 14:29:53 +02:00
|
|
|
self.log.info("test logging rpc and help")
|
|
|
|
|
|
|
|
# Test logging RPC returns the expected number of logging categories.
|
2024-10-20 11:22:25 +02:00
|
|
|
assert_equal(len(node.logging()), 39)
|
Merge bitcoin/bitcoin#22530: log: sort logging categories alphabetically
d596dba9877e7ead3fb5426cbe7e608fbcbfe3eb test: assert logging categories are sorted in rpc and help (Jon Atack)
17bbff3b88132c0c95b29b59100456b85e26df75 log, refactor: use guard clause in LogCategoriesList() (Jon Atack)
7c57297319bc386afaf06528778384fe58576ef9 log: sort LogCategoriesList and LogCategoriesString alphabetically (Jon Atack)
f720cfa824f1be863349e7016080f8fb1c3c76c2 test: verify number of categories returned by logging RPC (Jon Atack)
Pull request description:
Sorting the logging categories seems more user-friendly with the number of categories we now have, allowing CLI users to more quickly find a particular category.
before
```
$ bitcoin-cli help logging
...
The valid logging categories are: net, tor, mempool, http, bench, zmq, walletdb, rpc, estimatefee, addrman, selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej, libevent, coindb, qt, leveldb, validation, i2p, ipc
$ bitcoind -h | grep -A8 "debug=<category>"
-debug=<category>
...
output all debugging information. <category> can be: net, tor,
mempool, http, bench, zmq, walletdb, rpc, estimatefee, addrman,
selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej,
libevent, coindb, qt, leveldb, validation, i2p, ipc.
$ bitcoin-cli logging [] '["addrman"]'
{
"net": false,
"tor": true,
"mempool": false,
"http": false,
"bench": false,
"zmq": false,
"walletdb": false,
"rpc": false,
"estimatefee": false,
"addrman": false,
"selectcoins": false,
"reindex": false,
"cmpctblock": false,
"rand": false,
"prune": false,
"proxy": true,
"mempoolrej": false,
"libevent": false,
"coindb": false,
"qt": false,
"leveldb": false,
"validation": false,
"i2p": true,
"ipc": false
}
```
after
```
$ bitcoin-cli help logging
...
The valid logging categories are: addrman, bench, cmpctblock, coindb, estimatefee, http, i2p, ipc, leveldb, libevent, mempool, mempoolrej, net, proxy, prune, qt, rand, reindex, rpc, selectcoins, tor, validation, walletdb, zmq
$ bitcoind -h | grep -A8 "debug=<category>"
-debug=<category>
...
output all debugging information. <category> can be: addrman,
bench, cmpctblock, coindb, estimatefee, http, i2p, ipc, leveldb,
libevent, mempool, mempoolrej, net, proxy, prune, qt, rand,
reindex, rpc, selectcoins, tor, validation, walletdb, zmq.
$ bitcoin-cli logging [] '["addrman"]'
{
"addrman": false,
"bench": false,
"cmpctblock": false,
"coindb": false,
"estimatefee": false,
"http": false,
"i2p": false,
"ipc": false,
"leveldb": false,
"libevent": false,
"mempool": false,
"mempoolrej": false,
"net": false,
"proxy": false,
"prune": false,
"qt": false,
"rand": false,
"reindex": false,
"rpc": false,
"selectcoins": false,
"tor": false,
"validation": false,
"walletdb": false,
"zmq": false
}
```
ACKs for top commit:
theStack:
re-ACK d596dba9877e7ead3fb5426cbe7e608fbcbfe3eb
Tree-SHA512: d546257f562b0a288d1b19a028f1a510aaf21bd21da058e7c84653d305ea8662ecb4647ebefd2b97411f845fe5b0b841d40d3fe6814eefcb8ce82df341dfce22
2021-07-28 14:29:53 +02:00
|
|
|
|
|
|
|
# Test toggling a logging category on/off/on with the logging RPC.
|
2019-05-15 21:49:48 +02:00
|
|
|
assert_equal(node.logging()['qt'], True)
|
|
|
|
node.logging(exclude=['qt'])
|
|
|
|
assert_equal(node.logging()['qt'], False)
|
|
|
|
node.logging(include=['qt'])
|
|
|
|
assert_equal(node.logging()['qt'], True)
|
|
|
|
|
Merge bitcoin/bitcoin#22530: log: sort logging categories alphabetically
d596dba9877e7ead3fb5426cbe7e608fbcbfe3eb test: assert logging categories are sorted in rpc and help (Jon Atack)
17bbff3b88132c0c95b29b59100456b85e26df75 log, refactor: use guard clause in LogCategoriesList() (Jon Atack)
7c57297319bc386afaf06528778384fe58576ef9 log: sort LogCategoriesList and LogCategoriesString alphabetically (Jon Atack)
f720cfa824f1be863349e7016080f8fb1c3c76c2 test: verify number of categories returned by logging RPC (Jon Atack)
Pull request description:
Sorting the logging categories seems more user-friendly with the number of categories we now have, allowing CLI users to more quickly find a particular category.
before
```
$ bitcoin-cli help logging
...
The valid logging categories are: net, tor, mempool, http, bench, zmq, walletdb, rpc, estimatefee, addrman, selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej, libevent, coindb, qt, leveldb, validation, i2p, ipc
$ bitcoind -h | grep -A8 "debug=<category>"
-debug=<category>
...
output all debugging information. <category> can be: net, tor,
mempool, http, bench, zmq, walletdb, rpc, estimatefee, addrman,
selectcoins, reindex, cmpctblock, rand, prune, proxy, mempoolrej,
libevent, coindb, qt, leveldb, validation, i2p, ipc.
$ bitcoin-cli logging [] '["addrman"]'
{
"net": false,
"tor": true,
"mempool": false,
"http": false,
"bench": false,
"zmq": false,
"walletdb": false,
"rpc": false,
"estimatefee": false,
"addrman": false,
"selectcoins": false,
"reindex": false,
"cmpctblock": false,
"rand": false,
"prune": false,
"proxy": true,
"mempoolrej": false,
"libevent": false,
"coindb": false,
"qt": false,
"leveldb": false,
"validation": false,
"i2p": true,
"ipc": false
}
```
after
```
$ bitcoin-cli help logging
...
The valid logging categories are: addrman, bench, cmpctblock, coindb, estimatefee, http, i2p, ipc, leveldb, libevent, mempool, mempoolrej, net, proxy, prune, qt, rand, reindex, rpc, selectcoins, tor, validation, walletdb, zmq
$ bitcoind -h | grep -A8 "debug=<category>"
-debug=<category>
...
output all debugging information. <category> can be: addrman,
bench, cmpctblock, coindb, estimatefee, http, i2p, ipc, leveldb,
libevent, mempool, mempoolrej, net, proxy, prune, qt, rand,
reindex, rpc, selectcoins, tor, validation, walletdb, zmq.
$ bitcoin-cli logging [] '["addrman"]'
{
"addrman": false,
"bench": false,
"cmpctblock": false,
"coindb": false,
"estimatefee": false,
"http": false,
"i2p": false,
"ipc": false,
"leveldb": false,
"libevent": false,
"mempool": false,
"mempoolrej": false,
"net": false,
"proxy": false,
"prune": false,
"qt": false,
"rand": false,
"reindex": false,
"rpc": false,
"selectcoins": false,
"tor": false,
"validation": false,
"walletdb": false,
"zmq": false
}
```
ACKs for top commit:
theStack:
re-ACK d596dba9877e7ead3fb5426cbe7e608fbcbfe3eb
Tree-SHA512: d546257f562b0a288d1b19a028f1a510aaf21bd21da058e7c84653d305ea8662ecb4647ebefd2b97411f845fe5b0b841d40d3fe6814eefcb8ce82df341dfce22
2021-07-28 14:29:53 +02:00
|
|
|
# Test logging RPC returns the logging categories in alphabetical order.
|
|
|
|
sorted_logging_categories = sorted(node.logging())
|
|
|
|
assert_equal(list(node.logging()), sorted_logging_categories)
|
|
|
|
|
|
|
|
# Test logging help returns the logging categories string in alphabetical order.
|
|
|
|
categories = ', '.join(sorted_logging_categories)
|
|
|
|
logging_help = self.nodes[0].help('logging')
|
|
|
|
assert f"valid logging categories are: {categories}" in logging_help
|
|
|
|
|
2021-04-27 10:17:19 +02:00
|
|
|
self.log.info("test echoipc (testing spawned process in multiprocess build)")
|
|
|
|
assert_equal(node.echoipc("hello"), "hello")
|
|
|
|
|
2023-07-25 10:57:35 +02:00
|
|
|
self.log.info("test getindexinfo")
|
2023-07-17 15:57:30 +02:00
|
|
|
self.restart_node(0, ["-txindex=0"])
|
2023-07-25 10:57:35 +02:00
|
|
|
# Without any indices running the RPC returns an empty object
|
|
|
|
assert_equal(node.getindexinfo(), {})
|
|
|
|
|
|
|
|
# Restart the node with indices and wait for them to sync
|
2023-07-30 13:49:32 +02:00
|
|
|
self.restart_node(0, ["-txindex", "-blockfilterindex", "-coinstatsindex"])
|
2020-08-27 08:21:53 +02:00
|
|
|
self.wait_until(lambda: all(i["synced"] for i in node.getindexinfo().values()))
|
2023-07-25 10:57:35 +02:00
|
|
|
|
|
|
|
# Returns a list of all running indices by default
|
2023-07-30 13:49:32 +02:00
|
|
|
values = {"synced": True, "best_block_height": 200}
|
2023-07-25 10:57:35 +02:00
|
|
|
assert_equal(
|
|
|
|
node.getindexinfo(),
|
|
|
|
{
|
2023-07-30 13:49:32 +02:00
|
|
|
"txindex": values,
|
|
|
|
"basic block filter index": values,
|
|
|
|
"coinstatsindex": values,
|
2023-07-25 10:57:35 +02:00
|
|
|
}
|
|
|
|
)
|
|
|
|
# Specifying an index by name returns only the status of that index
|
2023-07-30 13:49:32 +02:00
|
|
|
for i in {"txindex", "basic block filter index", "coinstatsindex"}:
|
|
|
|
assert_equal(node.getindexinfo(i), {i: values})
|
2023-07-25 10:57:35 +02:00
|
|
|
|
|
|
|
# Specifying an unknown index name returns an empty result
|
|
|
|
assert_equal(node.getindexinfo("foo"), {})
|
|
|
|
|
2019-05-15 21:49:48 +02:00
|
|
|
|
2019-03-01 19:54:15 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
RpcMiscTest().main()
|