2023-06-08 09:05:10 +02:00
|
|
|
# standard imports
|
|
|
|
import os
|
|
|
|
import logging
|
|
|
|
|
|
|
|
# external imports
|
|
|
|
from chainlib.eth.unittest.ethtester import EthTesterCase
|
|
|
|
from chainlib.connection import RPCConnection
|
|
|
|
from chainlib.eth.nonce import RPCNonceOracle
|
|
|
|
from chainlib.eth.tx import receipt
|
|
|
|
from chainlib.eth.tx import TxFactory
|
|
|
|
from chainlib.eth.tx import TxFormat
|
|
|
|
from chainlib.eth.contract import ABIContractEncoder
|
|
|
|
from chainlib.eth.contract import ABIContractType
|
2023-06-08 15:00:23 +02:00
|
|
|
from cic_contracts.unittest import bytecode
|
2023-06-09 10:44:03 +02:00
|
|
|
from cic_contracts import Name
|
2023-06-08 09:05:10 +02:00
|
|
|
|
|
|
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
contract_dir = os.path.join(script_dir, '..', '..', 'solidity')
|
|
|
|
|
|
|
|
logg = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class TestEthSeal(EthTesterCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(TestEthSeal, self).setUp()
|
|
|
|
|
|
|
|
self.set_method = None
|
|
|
|
|
|
|
|
self.conn = RPCConnection.connect(self.chain_spec, 'default')
|
|
|
|
nonce_oracle = RPCNonceOracle(self.accounts[0], self.conn)
|
|
|
|
|
2023-06-09 10:44:03 +02:00
|
|
|
code = bytecode(Name.SEAL)
|
2023-06-08 09:05:10 +02:00
|
|
|
|
|
|
|
txf = TxFactory(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
|
|
|
tx = txf.template(self.accounts[0], None, use_nonce=True)
|
|
|
|
|
|
|
|
self.max_seal_state = 7
|
|
|
|
tx = txf.set_code(tx, code)
|
|
|
|
(tx_hash_hex, o) = txf.build(tx)
|
|
|
|
self.conn.do(o)
|
|
|
|
o = receipt(tx_hash_hex)
|
|
|
|
r = self.conn.do(o)
|
|
|
|
self.assertEqual(r['status'], 1)
|
|
|
|
self.address = r['contract_address']
|
2023-06-09 10:44:03 +02:00
|
|
|
self.contracts['seal'] = self.address
|
2023-06-08 09:05:10 +02:00
|
|
|
logg.debug('published seal test contract with hash {}'.format(r))
|
|
|
|
|
|
|
|
|
|
|
|
def seal(self, contract_address, sender_address, v, tx_format=TxFormat.JSONRPC):
|
|
|
|
nonce_oracle = RPCNonceOracle(self.accounts[0], self.conn)
|
|
|
|
txf = TxFactory(self.chain_spec, signer=self.signer, nonce_oracle=nonce_oracle)
|
|
|
|
enc = ABIContractEncoder()
|
|
|
|
enc.method('seal')
|
|
|
|
enc.typ(ABIContractType.UINT256)
|
|
|
|
enc.uint256(v)
|
|
|
|
data = enc.get()
|
|
|
|
tx = txf.template(sender_address, contract_address, use_nonce=True)
|
|
|
|
tx = txf.set_code(tx, data)
|
|
|
|
tx = txf.finalize(tx, tx_format)
|
|
|
|
return tx
|