Compare commits

...

3 Commits

Author SHA1 Message Date
tycho garen
1408451464 old mempp 2021-10-22 08:43:54 -04:00
tycho garen
c3ffe134d2 only legacy mempool 2021-10-22 08:42:57 -04:00
tycho garen
4b75f2eedc e2e: limit scope of test 2021-10-22 07:57:37 -04:00
2 changed files with 23 additions and 22 deletions

View File

@@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
group: ['00', '01', '02', '03']
group: ['00', '01', '02']
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
@@ -34,7 +34,7 @@ jobs:
- name: Generate testnets
working-directory: test/e2e
# When changing -g, also change the matrix groups above
run: ./build/generator -g 4 -d networks/nightly/
run: ./build/generator -g 3 -d networks/nightly/
- name: Run ${{ matrix.p2p }} p2p testnets
working-directory: test/e2e

View File

@@ -14,7 +14,7 @@ var (
// testnetCombinations defines global testnet options, where we generate a
// separate testnet for each combination (Cartesian product) of options.
testnetCombinations = map[string][]interface{}{
"topology": {"single", "quad", "large"},
"topology": {"quad", "large"},
"queueType": {"priority"}, // "fifo"
"initialHeight": {0, 1000},
"initialState": {
@@ -26,32 +26,32 @@ var (
// The following specify randomly chosen values for testnet nodes.
nodeDatabases = weightedChoice{
"goleveldb": 35,
"badgerdb": 35,
"boltdb": 15,
"rocksdb": 10,
"cleveldb": 5,
// "goleveldb": 35,
"badgerdb": 35,
// "boltdb": 15,
// "rocksdb": 10,
// "cleveldb": 5,
}
nodeABCIProtocols = weightedChoice{
"builtin": 50,
"tcp": 20,
"grpc": 20,
"unix": 10,
// "tcp": 20,
// "grpc": 20,
// "unix": 10,
}
nodePrivvalProtocols = weightedChoice{
"file": 50,
"grpc": 20,
"tcp": 20,
"unix": 10,
// "grpc": 20,
// "tcp": 20,
// "unix": 10,
}
nodeMempools = weightedChoice{
"v0": 20,
// "v0": 20,
"v1": 80,
}
nodeStateSyncs = weightedChoice{
e2e.StateSyncDisabled: 10,
e2e.StateSyncP2P: 45,
e2e.StateSyncRPC: 45,
// e2e.StateSyncDisabled: 10,
e2e.StateSyncP2P: 45,
e2e.StateSyncRPC: 45,
}
nodePersistIntervals = uniformChoice{0, 1, 5}
nodeSnapshotIntervals = uniformChoice{0, 5}
@@ -66,9 +66,9 @@ var (
"kill": 0.1,
"restart": 0.1,
}
evidence = uniformChoice{0, 1, 10}
evidence = uniformChoice{0} // , 1, 10
txSize = uniformChoice{1024, 4096} // either 1kb or 4kb
ipv6 = uniformChoice{false, true}
ipv6 = uniformChoice{false} // , true
keyType = uniformChoice{types.ABCIPubKeyTypeEd25519, types.ABCIPubKeyTypeSecp256k1}
)
@@ -128,8 +128,8 @@ func generateTestnet(r *rand.Rand, opt map[string]interface{}) (e2e.Manifest, er
numValidators = 4
case "large":
// FIXME Networks are kept small since large ones use too much CPU.
numSeeds = r.Intn(1)
numLightClients = r.Intn(2)
numSeeds = 0 // r.Intn(1)
numLightClients = 0 // r.Intn(2)
numValidators = 4 + r.Intn(4)
numFulls = r.Intn(4)
default:
@@ -286,6 +286,7 @@ func generateNode(
Perturb: nodePerturbations.Choose(r),
}
node.Mempool = "v0"
if node.Mempool == "" {
node.Mempool = "v1"
}