2021-10-10 13:20:00 +02:00
|
|
|
# standard imports
|
|
|
|
import unittest
|
2021-10-10 13:48:32 +02:00
|
|
|
import logging
|
2021-10-10 13:20:00 +02:00
|
|
|
|
|
|
|
# external imports
|
|
|
|
from chainlib.eth.tx import unpack
|
|
|
|
from hexathon import (
|
|
|
|
strip_0x,
|
|
|
|
add_0x,
|
|
|
|
)
|
|
|
|
|
|
|
|
# local imports
|
|
|
|
from cic.ext.eth import CICEth
|
|
|
|
|
|
|
|
# tests imports
|
|
|
|
from tests.eth.base_eth import TestCICEthBase
|
|
|
|
|
2021-10-10 13:48:32 +02:00
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
logg = logging.getLogger()
|
|
|
|
|
|
|
|
|
2021-10-10 13:20:00 +02:00
|
|
|
class TestCICEthSign(TestCICEthBase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(TestCICEthSign, self).setUp()
|
|
|
|
self.adapter = CICEth(self.chain_spec, self.resources, self.proofs, signer=self.signer)
|
|
|
|
|
|
|
|
|
|
|
|
def test_sign_token_index(self):
|
|
|
|
self.adapter.token_address = self.token_address
|
|
|
|
v = self.adapter.process_token_index()
|
2021-10-10 14:00:47 +02:00
|
|
|
tx_raw = bytes.fromhex(strip_0x(self.adapter.outputs[0]))
|
2021-10-10 13:20:00 +02:00
|
|
|
tx = unpack(tx_raw, self.chain_spec)
|
|
|
|
self.assertEqual(strip_0x(tx['data'])[:8], '4420e486')
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|