chaind/tests/test_fs.py

92 lines
1.9 KiB
Python
Raw Normal View History

2022-03-13 15:54:11 +01:00
# standard imports
import os
import unittest
import shutil
import logging
# external imports
2022-03-14 22:17:31 +01:00
from chainlib.status import Status as TxStatus
2022-03-13 15:54:11 +01:00
# local imports
2022-03-14 20:53:29 +01:00
from chaind.driver import QueueDriver
2022-03-14 22:17:31 +01:00
from chaind.filter import StateFilter
2022-03-13 15:54:11 +01:00
# test imports
from chaind.unittest.common import (
MockTx,
MockCacheAdapter,
TestChaindFsBase,
)
2022-03-14 20:53:29 +01:00
logging.basicConfig(level=logging.DEBUG)
logg = logging.getLogger()
2022-03-14 22:17:31 +01:00
class TestChaindFs(TestChaindFsBase):
2022-03-13 15:54:11 +01:00
def setUp(self):
self.cache_adapter = MockCacheAdapter
super(TestChaindFs, self).setUp()
2022-03-13 15:54:11 +01:00
def tearDown(self):
shutil.rmtree(self.path)
def test_fs_setup(self):
data = os.urandom(128).hex()
2022-03-14 20:53:29 +01:00
hsh = self.adapter.put(data)
2022-03-13 15:54:11 +01:00
v = self.adapter.get(hsh)
self.assertEqual(data, v)
2022-03-14 20:53:29 +01:00
def test_fs_defer(self):
data = os.urandom(128).hex()
hsh = self.adapter.put(data)
self.dispatcher.add_fail(hsh)
self.adapter.dispatch(hsh)
txs = self.adapter.deferred()
self.assertEqual(len(txs), 1)
def test_fs_process(self):
drv = QueueDriver(self.adapter)
data = os.urandom(128).hex()
hsh = self.adapter.put(data)
txs = self.adapter.upcoming()
self.assertEqual(len(txs), 0)
drv.process()
txs = self.adapter.upcoming()
self.assertEqual(len(txs), 1)
2022-03-14 22:17:31 +01:00
def test_fs_filter(self):
drv = QueueDriver(self.adapter)
data = os.urandom(128).hex()
hsh = self.adapter.put(data)
fltr = StateFilter(self.adapter)
tx = MockTx(hsh)
fltr.filter(None, None, tx)
def test_fs_filter_fail(self):
drv = QueueDriver(self.adapter)
data = os.urandom(128).hex()
hsh = self.adapter.put(data)
fltr = StateFilter(self.adapter)
tx = MockTx(hsh, TxStatus.ERROR)
fltr.filter(None, None, tx)
2022-03-13 15:54:11 +01:00
if __name__ == '__main__':
unittest.main()