update shuffling test docs
This commit is contained in:
parent
fcb7e3437e
commit
0aa1cc8f60
|
@ -0,0 +1,36 @@
|
||||||
|
# Test format: shuffling
|
||||||
|
|
||||||
|
The runner of the Shuffling test type has only one handler: `core`
|
||||||
|
|
||||||
|
This does not mean however that testing is limited.
|
||||||
|
Clients may take different approaches to shuffling, for optimizing,
|
||||||
|
and supporting advanced lookup behavior back in older history.
|
||||||
|
|
||||||
|
For implementers, possible test runners implementing testing can include:
|
||||||
|
1) just test permute-index, run it for each index `i` in `range(count)`, and check against expected `output[i]` (default spec implementation)
|
||||||
|
2) test un-permute-index (the reverse lookup. Implemented by running the shuffling rounds in reverse: from `round_count-1` to `0`)
|
||||||
|
3) test the optimized complete shuffle, where all indices are shuffled at once, test output in one go.
|
||||||
|
4) test complete shuffle in reverse (reverse rounds, same as 2)
|
||||||
|
|
||||||
|
## Test case format
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
seed: bytes32
|
||||||
|
count: int
|
||||||
|
shuffled: List[int]
|
||||||
|
```
|
||||||
|
|
||||||
|
- The `bytes32` is encoded as strings, hexadecimal encoding, prefixed with `0x`.
|
||||||
|
- Integers are validator indices. These are `uint64`, but realistically they are not as big.
|
||||||
|
|
||||||
|
The `count` specifies the validator registry size. One should compute the shuffling for indices `0, 1, 2, 3, ..., count (exclusive)`.
|
||||||
|
Seed is the raw shuffling seed, passed to permute-index (or optimized shuffling approach).
|
||||||
|
|
||||||
|
## Condition
|
||||||
|
|
||||||
|
The resulting list should match the expected output `shuffled` after shuffling the implied input, using the given `seed`.
|
||||||
|
|
||||||
|
## Forks
|
||||||
|
|
||||||
|
Forks-interpretation: `collective`
|
||||||
|
|
|
@ -2,12 +2,6 @@
|
||||||
|
|
||||||
Tests for the swap-or-not shuffling in ETH 2.0.
|
Tests for the swap-or-not shuffling in ETH 2.0.
|
||||||
|
|
||||||
For implementers, possible test runners implementing testing can include:
|
|
||||||
1) just test permute-index, run it for each index `i` in `range(count)`, and check against expected `output[i]` (default spec implementation)
|
|
||||||
2) test un-permute-index (the reverse lookup. Implemented by running the shuffling rounds in reverse: from `round_count-1` to `0`)
|
|
||||||
3) test the optimized complete shuffle, where all indices are shuffled at once, test output in one go.
|
|
||||||
4) test complete shuffle in reverse (reverse rounds, same as 2)
|
|
||||||
|
|
||||||
Tips for initial shuffling write:
|
Tips for initial shuffling write:
|
||||||
- run with `round_count = 1` first, do the same with pyspec.
|
- run with `round_count = 1` first, do the same with pyspec.
|
||||||
- start with permute index
|
- start with permute index
|
||||||
|
|
Loading…
Reference in New Issue