mirror of
https://github.com/logos-blockchain/logos-blockchain-e2e-tests.git
synced 2026-01-02 21:23:07 +00:00
32 lines
1.0 KiB
Python
32 lines
1.0 KiB
Python
import pytest
|
|
|
|
from src.libs.common import to_app_id, to_index, delay
|
|
from src.libs.custom_logger import get_custom_logger
|
|
from src.steps.consensus import StepsConsensus
|
|
from src.steps.da import StepsDataAvailability
|
|
from src.steps.storage import StepsStorage
|
|
from src.test_data import DATA_TO_DISPERSE
|
|
|
|
logger = get_custom_logger(__name__)
|
|
|
|
|
|
def extract_da_shares(index_shares):
|
|
return [share for _, shares in index_shares for share in shares if shares]
|
|
|
|
|
|
class TestInteractionDataFlow(StepsDataAvailability, StepsConsensus, StepsStorage):
|
|
main_nodes = []
|
|
|
|
@pytest.mark.usefixtures("setup_2_node_cluster")
|
|
def test_da_dispersal_integration(self):
|
|
|
|
self.disperse_data(DATA_TO_DISPERSE[3], to_app_id(1), to_index(0))
|
|
delay(5)
|
|
index_shares = self.get_data_range(self.node2, to_app_id(1), to_index(0), to_index(5))
|
|
da_shares = extract_da_shares(index_shares)
|
|
|
|
logger.debug(f"da_shares: {da_shares}")
|
|
logger.debug(f"{len(da_shares)} da_shares extracted")
|
|
|
|
self.add_publish_share(self.node2, da_shares[0])
|