328398ca68
* Use executor in tests instead of nomos node * Executor config from node config * Bring generics to the testing game * Fill in missing gaps in test * Implement testnode wrapper * Use sleep on dispersal service instead * Fix cfgsync * Clippy happy * Clippy happy tests * Mixnet config in tests for validator * Tests: General config and multiple nodes (#832) * Use executor in tests instead of nomos node * Bring generics to the testing game * Fill in missing gaps in test * Clippy happy * Mixnet config in tests for validator * Derive different types of configs from general in tests * Validator and executor in cfgsync --------- Co-authored-by: danielSanchezQ <3danimanimal@gmail.com> * Tests executor node mix config (#834) * Merge branch 'master' into tests-executor-node-mix-config * add mix configs --------- Co-authored-by: danielSanchezQ <3danimanimal@gmail.com> Co-authored-by: Youngjoon Lee <5462944+youngjoon-lee@users.noreply.github.com>
62 lines
2.4 KiB
TOML
62 lines
2.4 KiB
TOML
[package]
|
|
name = "tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
blst = { version = "0.3.11" }
|
|
executor-http-client = { path = "../clients/executor-http-client" }
|
|
nomos-node = { path = "../nodes/nomos-node", default-features = false }
|
|
nomos-executor = { path = "../nodes/nomos-executor", default-features = false }
|
|
nomos-network = { path = "../nomos-services/network", features = ["libp2p"] }
|
|
nomos-mix-service = { path = "../nomos-services/mix", features = ["libp2p"] }
|
|
cryptarchia-consensus = { path = "../nomos-services/cryptarchia-consensus" }
|
|
nomos-log = { path = "../nomos-services/log" }
|
|
nomos-api = { path = "../nomos-services/api" }
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
nomos-core = { path = "../nomos-core" }
|
|
cryptarchia-engine = { path = "../consensus/cryptarchia-engine", features = ["serde"] }
|
|
cryptarchia-ledger = { path = "../ledger/cryptarchia-ledger", features = ["serde"] }
|
|
cl = { path = "../cl/cl" }
|
|
nomos-mempool = { path = "../nomos-services/mempool", features = ["mock", "libp2p"] }
|
|
nomos-da-network-service = { path = "../nomos-services/data-availability/network" }
|
|
nomos-da-dispersal = { path = "../nomos-services/data-availability/dispersal" }
|
|
nomos-da-indexer = { path = "../nomos-services/data-availability/indexer" }
|
|
nomos-da-verifier = { path = "../nomos-services/data-availability/verifier" }
|
|
nomos-da-sampling = { path = "../nomos-services/data-availability/sampling" }
|
|
nomos-storage = { path = "../nomos-services/storage" }
|
|
subnetworks-assignations = { path = "../nomos-da/network/subnetworks-assignations" }
|
|
full-replication = { path = "../nomos-da/full-replication" }
|
|
hex = "0.4.3"
|
|
kzgrs-backend = { path = "../nomos-da/kzgrs-backend" }
|
|
rand = "0.8"
|
|
once_cell = "1"
|
|
secp256k1 = { version = "0.26", features = ["rand"] }
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
nomos-libp2p = { path = "../nomos-libp2p" }
|
|
tempfile = "3.6"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
serde_json = "1.0"
|
|
tokio = "1"
|
|
futures = "0.3"
|
|
async-trait = "0.1"
|
|
fraction = "0.13"
|
|
ntest = "0.9.0"
|
|
criterion = { version = "0.5", features = ["async_tokio"] }
|
|
nomos-cli = { path = "../nomos-cli" }
|
|
time = "0.3"
|
|
tracing = "0.1"
|
|
|
|
[[test]]
|
|
name = "test_cryptarchia_happy_path"
|
|
path = "src/tests/cryptarchia/happy.rs"
|
|
|
|
[[test]]
|
|
name = "test_da"
|
|
path = "src/tests/da.rs"
|
|
|
|
[features]
|
|
metrics = ["nomos-node/metrics"]
|