aboutsummaryrefslogtreecommitdiff
path: root/test/functional/mempool_packages.py
Commit message (Collapse)AuthorAgeFilesLines
* [refactor] clarify tests by referencing p2p objects directlygzhao4082020-09-101-2/+2
| | | | | | Use object returned from add_p2p_connection to refer to p2ps. Add a test class attribute if it needs to be used across many methods. Don't use the p2p property.
* test: Update wait_until usage in tests not to use the one from utilsSeleme Topuz2020-08-261-3/+2
| | | | | Replace "wait_until()" usage from utils, with the ones from BitcoinTestFramework and P2PInterface. closes #19080
* scripted-diff: Rename mininode to p2pJohn Newbery2020-08-211-1/+1
| | | | | | | -BEGIN VERIFY SCRIPT- sed -i 's/\.mininode/\.p2p/g' $(git grep -l "mininode") git mv test/functional/test_framework/mininode.py test/functional/test_framework/p2p.py -END VERIFY SCRIPT-
* refactor: test: use _ variable for unused loop countersSebastian Falbesoner2020-08-061-5/+5
| | | | | | substitutes "for x in range(N):" by "for _ in range(N):" indicates to the reader that a block is just repeated N times, and that the loop counter is not used in the body
* test: Use wtxid relay generally in functional testsFabian Jahr2020-07-191-1/+6
|
* [test] wait for inital broadcast before comparing mempool entriesgzhao4082020-05-191-0/+6
| | | | | | | | | | - mempool entry 'unbroadcast' field changes when tx passes initial broadcast (receive getdata), so anytime you compare mempool entries as a whole, you must wait for all broadcasts to complete ('unbroadcast' = False) otherwise the state may change in between calls - update P2PTxInvStore to send msg_getdata for invs and add functionality to wait for a list of txids to complete initial broadcast - make mempool_packages.py wait because it compares entries using getrawmempool and getmempoolentry
* [rpc] add unbroadcast info to mempool entries and getmempoolinfogzhao4082020-05-191-0/+4
| | | | | | | - expose info about number of txns in unbroadcast set and whether a mempool entry's tx has passed initial broadcast - makes rpcs more informative and allows for more explicit testing, eg tracking if tx is in unbroadcast set before and after originating node connects to peers (adds this in mempool_unbroadcast.py) - adds mempool method IsUnbroadcastTx to query for tx inclusion in mempool's unbroadcast set
* test: check custom descendant limit in mempool_packages.pySebastian Falbesoner2020-02-271-3/+29
| | | | | | | | | | | | | To test the custom descendant limit on node1 (passed by the argument -limitdescendantcount), we check for four conditions: -> the # of txs in the node1 mempool is equal to the limit (plus 1 for the parent tx, plus the # txs from the previous ancestor test which are still in) -> all txs in node1 mempool are a subset of txs in node0 mempool -> part of the constructed descendant-chain (the first ones up to the limit) are contained in node1 mempool -> the remaining part of the constructed descendant-chain (all after the first ones up to the limit) is *not* contained in node1 mempool
* test: re-enable CLI test support by using EncodeDecimal in json.dumps()fanquake2019-12-091-1/+0
| | | | | As mentioned in https://github.com/bitcoin/bitcoin/pull/17675#issuecomment-563188648
* tests: Mark functional tests not supporting bitcoin-cli (--usecli) as suchpracticalswift2019-12-061-0/+1
|
* test: check custom ancestor limit in mempool_packages.pySebastian Falbesoner2019-11-111-2/+15
| | | | | | | | To test the custom ancestor limit on node1 (passed by the argument -limitancestorcount), we check for three conditions: -> the # of txs in the node1 mempool is equal to the the limit -> all txs in node1 mempool are a subset of txs in node0 mempool -> the node1 mempool txs match the start of the constructed tx-chain
* test: Remove unused importsMarcoFalke2019-04-091-1/+5
|
* scripted-diff: use self.sync_* methodsMarcoFalke2019-04-091-4/+4
| | | | | | | | | | -BEGIN VERIFY SCRIPT- sed -i -e 's/sync_blocks(self.nodes)/self.sync_blocks()/g' $(git grep -l 'sync_blocks(self.nodes)' ./test/functional/*.py) sed -i -e 's/sync_mempools(self.nodes)/self.sync_mempools()/g' $(git grep -l 'sync_mempools(self.nodes)' ./test/functional/*.py) sed -i -e 's/ sync_blocks(/ self.sync_blocks(/g' $(git grep -l sync_blocks ./test/functional/*.py) sed -i -e 's/ sync_mempools(/ self.sync_mempools(/g' $(git grep -l sync_mempools ./test/functional/*.py) -END VERIFY SCRIPT-
* rpc: Rename size to vsize in mempool related callsMiguel Herranz2019-03-241-6/+6
|
* scripted-diff: Update copyright in ./testMarcoFalke2019-03-021-1/+1
| | | | | | -BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./test/ -END VERIFY SCRIPT-
* scripted-diff: test: Remove brackets after assertMarcoFalke2019-03-021-3/+3
| | | | | | -BEGIN VERIFY SCRIPT- sed -i --regexp-extended -e 's/assert ?\((.+)\)(( )*)?(#.*)?$/assert \1\3\3\4/g' $(git grep -l --extended-regexp 'assert ?\(' test) -END VERIFY SCRIPT-
* qa: Run all tests even if wallet is not compiledMarcoFalke2018-09-101-0/+3
|
* qa: Premine to deterministic address with -disablewalletMarcoFalke2018-09-101-1/+1
|
* tests: Use explicit importspracticalswift2018-08-131-2/+4
|
* Update copyright headers to 2018DrahtBot2018-07-271-1/+1
|
* Add new fee structure with all sub-fields denominated in BTCmryandao2018-04-181-0/+7
|
* [Tests] Check output of parent/child tx list from getrawmempool, ↵Conor Scott2018-02-251-3/+43
| | | | getmempooldescendants, getmempoolancestors, and REST interface
* scripted-diff: change signrawtransaction to signrawtransactionwithwallet in ↵Andrew Chow2018-02-171-3/+3
| | | | | | | | | tests -BEGIN VERIFY SCRIPT- sed -i 's/\<signrawtransaction\>/signrawtransactionwithwallet/g' test/functional/*.py sed -i 's/\<signrawtransaction\>/signrawtransactionwithwallet/g' test/functional/test_framework/*.py -END VERIFY SCRIPT-
* Increment MIT Licence copyright header year on files modified in 2017Akira Takizawa2018-01-031-1/+1
|
* scripted-diff: rename assert_raises_jsonrpc to assert_raises_rpc errorJohn Newbery2017-10-051-2/+2
| | | | | | -BEGIN VERIFY SCRIPT- sed -i 's/assert_raises_jsonrpc/assert_raises_rpc_error/g' test/functional/*py test/functional/test_framework/*py -END VERIFY SCRIPT-
* Merge #11121: TestNode tidyupsMarcoFalke2017-09-011-3/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7148b74dc [tests] Functional tests must explicitly set num_nodes (John Newbery) 5448a1471 [tests] don't override __init__() in individual tests (John Newbery) 6cf094a02 [tests] Avoid passing around member variables in test_framework (John Newbery) 36b626867 [tests] TestNode: separate add_node from start_node (John Newbery) be2a2ab6a [tests] fix - use rpc_timeout as rpc timeout (John Newbery) Pull request description: Some additional tidyups after the introduction of TestNode: - commit 1 makes TestNode use the correct rpc timeout. This should have been included in #11077 - commit 2 separates `add_node()` from `start_node()` as originally discussed here: https://github.com/bitcoin/bitcoin/pull/10556#discussion_r121161453 with @kallewoof . The test writer no longer needs to assign to `self.nodes` when starting/stopping nodes. - commit 3 adds a `set_test_params()` method, so individual tests don't need to override `__init__()` and call `super().__init__()` Tree-SHA512: 0adb030623b96675b5c29e2890ce99ccd837ed05f721d0c91b35378c5ac01b6658174aac12f1f77402e1d38b61f39b3c43b4df85c96952565dde1cda05b0db84
| * [tests] don't override __init__() in individual testsJohn Newbery2017-09-011-3/+1
| | | | | | | | | | | | | | | | | | | | Almost all test scripts currently need to override the __init__() method. When they do that they need to call into super().__init__() as the base class does some generic initialization. This commit makes the base class __init__() call into set_test_params() method. Individual test cases can override set_test_params() to setup their test parameters.
* | Use the variable name _ for unused return valuespracticalswift2017-08-281-1/+1
|/
* RPC/Mining: Restore API compatibility for prioritisetransactionLuke Dashjr2017-05-231-4/+4
| | | | Breaking API serves no purpose other than to be incompatible with older versions and other implementations that do support priority
* [tests] Remove is_network_split from funtional test casesJohn Newbery2017-05-021-8/+1
|
* Test prioritisetransaction and ancestor fee stateSuhas Daftuar2017-04-031-0/+12
| | | | There is already a similar test for descendant fee state.
* Rename rpc-tests directory to functionalJohn Newbery2017-03-201-0/+239