Add API modules
This commit is contained in:
63
tests/test_otx.py
Normal file
63
tests/test_otx.py
Normal file
@@ -0,0 +1,63 @@
|
||||
# standard imports
|
||||
import os
|
||||
import logging
|
||||
import unittest
|
||||
|
||||
# external imports
|
||||
from hexathon import (
|
||||
strip_0x,
|
||||
add_0x,
|
||||
)
|
||||
from chainlib.chain import ChainSpec
|
||||
|
||||
# local imports
|
||||
from chainqueue.db.models.otx import Otx
|
||||
from chainqueue.db.models.tx import TxCache
|
||||
from chainqueue.tx import create
|
||||
from chainqueue.state import *
|
||||
from chainqueue.db.enum import (
|
||||
is_alive,
|
||||
is_error_status,
|
||||
)
|
||||
|
||||
# test imports
|
||||
from tests.base import TestBase
|
||||
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
logg = logging.getLogger()
|
||||
|
||||
|
||||
class TestOtx(TestBase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestOtx, self).setUp()
|
||||
self.tx_hash = add_0x(os.urandom(32).hex())
|
||||
self.tx = add_0x(os.urandom(128).hex())
|
||||
self.nonce = 42
|
||||
self.alice = add_0x(os.urandom(20).hex())
|
||||
|
||||
tx_hash = create(self.nonce, self.alice, self.tx_hash, self.tx, self.chain_spec, session=self.session)
|
||||
self.assertEqual(tx_hash, self.tx_hash)
|
||||
|
||||
|
||||
def test_ideal_state_sequence(self):
|
||||
set_ready(self.tx_hash)
|
||||
otx = Otx.load(self.tx_hash, session=self.session)
|
||||
self.assertEqual(otx.status, StatusBits.QUEUED)
|
||||
|
||||
set_reserved(self.tx_hash)
|
||||
self.session.refresh(otx)
|
||||
self.assertEqual(otx.status, StatusBits.RESERVED)
|
||||
|
||||
set_sent(self.tx_hash)
|
||||
self.session.refresh(otx)
|
||||
self.assertEqual(otx.status, StatusBits.IN_NETWORK)
|
||||
|
||||
set_final(self.tx_hash, block=1024)
|
||||
self.session.refresh(otx)
|
||||
self.assertFalse(is_alive(otx.status))
|
||||
self.assertFalse(is_error_status(otx.status))
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user