forked from cerc-io/laconicd-deprecated
64cfb8722a
* skeleton websocket tests * update websocket tests * flake fixes * ignore line break issues * fix configuration file Co-authored-by: Freddy Caceres <facs95@gmail.com> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
66 lines
1.7 KiB
Python
66 lines
1.7 KiB
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from .network import setup_custom_ethermint, setup_ethermint, setup_geth
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def ethermint(tmp_path_factory):
|
|
path = tmp_path_factory.mktemp("ethermint")
|
|
yield from setup_ethermint(path, 26650)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def ethermint_indexer(tmp_path_factory):
|
|
path = tmp_path_factory.mktemp("indexer")
|
|
yield from setup_custom_ethermint(
|
|
path, 26660, Path(__file__).parent / "configs/enable-indexer.jsonnet"
|
|
)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def geth(tmp_path_factory):
|
|
path = tmp_path_factory.mktemp("geth")
|
|
yield from setup_geth(path, 8545)
|
|
|
|
|
|
@pytest.fixture(
|
|
scope="session", params=["ethermint", "geth", "ethermint-ws", "enable-indexer"]
|
|
)
|
|
def cluster(request, ethermint, ethermint_indexer, geth):
|
|
"""
|
|
run on both ethermint and geth
|
|
"""
|
|
provider = request.param
|
|
if provider == "ethermint":
|
|
yield ethermint
|
|
elif provider == "geth":
|
|
yield geth
|
|
elif provider == "ethermint-ws":
|
|
ethermint_ws = ethermint.copy()
|
|
ethermint_ws.use_websocket()
|
|
yield ethermint_ws
|
|
elif provider == "enable-indexer":
|
|
yield ethermint_indexer
|
|
else:
|
|
raise NotImplementedError
|
|
|
|
|
|
@pytest.fixture(
|
|
scope="session", params=["ethermint", "ethermint-ws"]
|
|
)
|
|
def ethermint_rpc_ws(request, ethermint):
|
|
"""
|
|
run on both ethermint and ethermint websocket
|
|
"""
|
|
provider = request.param
|
|
if provider == "ethermint":
|
|
yield ethermint
|
|
elif provider == "ethermint-ws":
|
|
ethermint_ws = ethermint.copy()
|
|
ethermint_ws.use_websocket()
|
|
yield ethermint_ws
|
|
else:
|
|
raise NotImplementedError
|