forked from ackintosh/discv5-testground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.toml
32 lines (24 loc) · 976 Bytes
/
manifest.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name = "discv5-testground"
[defaults]
builder = "docker:generic"
runner = "local:docker"
[builders."docker:generic"]
enabled = true
[runners."local:docker"]
enabled = true
# FINDNODE
[[testcases]]
name = "find-node"
instances = { min = 3, max = 100, default = 3 }
[testcases.params]
latency = { type = "int", desc = "Latency between peers.", unit = "ms", default = 100 }
# Eclipse attack by monopolizing by incoming nodes
[[testcases]]
name = "eclipse-attack-monopolizing-by-incoming-nodes"
# The number of `instances` is fixed to 20 in this test case. For more detail,
# see `compositions/eclipse-attack-monopolizing-by-incoming-nodes.toml`.
instances = { min = 20, max = 20, default = 20 }
[testcases.params]
latency = { type = "int", desc = "Latency between peers.", unit = "ms", default = 100 }
# Params for the `victim` group
incoming_bucket_limit = { type = "int", desc = "A maximum limit to the number of incoming nodes per bucket.", default = 16 }