2020-12-11 23:17:10 +01:00
|
|
|
#!/usr/bin/env python3
|
2021-08-27 21:03:02 +02:00
|
|
|
# Copyright (c) 2015-2021 The Dash Core developers
|
2020-12-11 23:17:10 +01:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
Merge #13054: tests: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
68400d8b96 tests: Use explicit imports (practicalswift)
Pull request description:
Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools.
An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports.
Before this commit:
```
$ contrib/devtools/lint-python.sh | head -10
./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
$
```
After this commit:
```
$ contrib/devtools/lint-python.sh | head -10
$
```
Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9
2018-08-13 14:24:43 +02:00
|
|
|
from test_framework.messages import COIN, COutPoint, CTransaction, CTxIn, CTxOut, ToHex
|
2018-05-12 16:33:07 +02:00
|
|
|
from test_framework.script import CScript, OP_CAT, OP_DROP, OP_TRUE
|
2020-12-11 23:17:10 +01:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
|
|
from test_framework.util import assert_equal, assert_raises_rpc_error, get_bip9_status, satoshi_round
|
|
|
|
|
|
|
|
'''
|
|
|
|
feature_dip0020_activation.py
|
|
|
|
|
|
|
|
This test checks activation of DIP0020 opcodes
|
|
|
|
'''
|
|
|
|
|
|
|
|
DISABLED_OPCODE_ERROR = "non-mandatory-script-verify-flag (Attempted to use a disabled opcode)"
|
|
|
|
|
|
|
|
|
|
|
|
class DIP0020ActivationTest(BitcoinTestFramework):
|
|
|
|
def set_test_params(self):
|
|
|
|
self.num_nodes = 1
|
2019-07-16 22:07:14 +02:00
|
|
|
self.extra_args = [["-acceptnonstdtxn=1"]]
|
2020-12-11 23:17:10 +01:00
|
|
|
|
2018-09-13 12:33:15 +02:00
|
|
|
def skip_test_if_missing_module(self):
|
|
|
|
self.skip_if_no_wallet()
|
|
|
|
|
2020-12-11 23:17:10 +01:00
|
|
|
def run_test(self):
|
|
|
|
self.node = self.nodes[0]
|
|
|
|
self.relayfee = satoshi_round(self.nodes[0].getnetworkinfo()["relayfee"])
|
|
|
|
|
|
|
|
# We should have some coins already
|
|
|
|
utxos = self.node.listunspent()
|
2021-08-27 21:03:02 +02:00
|
|
|
assert len(utxos) > 0
|
2020-12-11 23:17:10 +01:00
|
|
|
|
2019-07-16 22:07:14 +02:00
|
|
|
# Lock some coins using disabled opcodes
|
2020-12-11 23:17:10 +01:00
|
|
|
utxo = utxos[len(utxos) - 1]
|
|
|
|
value = int(satoshi_round(utxo["amount"] - self.relayfee) * COIN)
|
|
|
|
tx = CTransaction()
|
|
|
|
tx.vin.append(CTxIn(COutPoint(int(utxo["txid"], 16), utxo["vout"])))
|
|
|
|
tx.vout.append(CTxOut(value, CScript([b'1', b'2', OP_CAT])))
|
2020-12-15 03:24:23 +01:00
|
|
|
tx_signed_hex = self.node.signrawtransactionwithwallet(ToHex(tx))["hex"]
|
2020-12-11 23:17:10 +01:00
|
|
|
txid = self.node.sendrawtransaction(tx_signed_hex)
|
|
|
|
|
|
|
|
# This tx should be completely valid, should be included in mempool and mined in the next block
|
2021-08-27 21:03:02 +02:00
|
|
|
assert txid in set(self.node.getrawmempool())
|
2020-12-11 23:17:10 +01:00
|
|
|
self.node.generate(1)
|
2021-08-27 21:03:02 +02:00
|
|
|
assert txid not in set(self.node.getrawmempool())
|
2020-12-11 23:17:10 +01:00
|
|
|
|
|
|
|
# Create spending tx
|
|
|
|
value = int(value - self.relayfee * COIN)
|
|
|
|
tx0 = CTransaction()
|
|
|
|
tx0.vin.append(CTxIn(COutPoint(int(txid, 16), 0)))
|
2018-05-12 16:33:07 +02:00
|
|
|
tx0.vout.append(CTxOut(value, CScript([OP_TRUE, OP_DROP] * 15 + [OP_TRUE])))
|
2020-12-11 23:17:10 +01:00
|
|
|
tx0.rehash()
|
|
|
|
tx0_hex = ToHex(tx0)
|
|
|
|
|
|
|
|
# This tx isn't valid yet
|
2021-05-07 18:36:30 +02:00
|
|
|
assert_equal(get_bip9_status(self.nodes[0], 'dip0020')['status'], 'locked_in')
|
2020-12-11 23:17:10 +01:00
|
|
|
assert_raises_rpc_error(-26, DISABLED_OPCODE_ERROR, self.node.sendrawtransaction, tx0_hex)
|
|
|
|
|
|
|
|
# Generate enough blocks to activate DIP0020 opcodes
|
|
|
|
self.node.generate(98)
|
2021-05-07 18:36:30 +02:00
|
|
|
assert_equal(get_bip9_status(self.nodes[0], 'dip0020')['status'], 'active')
|
2020-12-11 23:17:10 +01:00
|
|
|
|
|
|
|
# Still need 1 more block for mempool to accept new opcodes
|
|
|
|
assert_raises_rpc_error(-26, DISABLED_OPCODE_ERROR, self.node.sendrawtransaction, tx0_hex)
|
|
|
|
self.node.generate(1)
|
|
|
|
|
|
|
|
# Should be spendable now
|
|
|
|
tx0id = self.node.sendrawtransaction(tx0_hex)
|
2021-08-27 21:03:02 +02:00
|
|
|
assert tx0id in set(self.node.getrawmempool())
|
2020-12-11 23:17:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
DIP0020ActivationTest().main()
|