mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
a069738c20
* update shared/params * update eth2-types deps * update protobufs * update shared/* * fix testutil/state * update beacon-chain/state * update beacon-chain/db * update tests * fix test * update beacon-chain/core * update beacon-chain/blockchain * update beacon-chain/cache * beacon-chain/forkchoice * update beacon-chain/operations * update beacon-chain/p2p * update beacon-chain/rpc * update sync/initial-sync * update deps * update deps * go fmt * update beacon-chain/sync * update endtoend/ * bazel build //beacon-chain - works w/o issues * update slasher code * udpate tools/ * update validator/ * update fastssz * fix build * fix test building * update tests * update ethereumapis deps * fix tests * update state/stategen * fix build * fix test * add FarFutureSlot * go imports * Radek's suggestions * Ivan's suggestions * type conversions * Nishant's suggestions * add more tests to rpc_send_request * fix test * clean up * fix conflicts Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: nisdas <nishdas93@gmail.com>
139 lines
3.0 KiB
Go
139 lines
3.0 KiB
Go
package slotutil
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/prysmaticlabs/eth2-types"
|
|
)
|
|
|
|
var _ Ticker = (*SlotTicker)(nil)
|
|
|
|
func TestSlotTicker(t *testing.T) {
|
|
ticker := &SlotTicker{
|
|
c: make(chan types.Slot),
|
|
done: make(chan struct{}),
|
|
}
|
|
defer ticker.Done()
|
|
|
|
var sinceDuration time.Duration
|
|
since := func(time.Time) time.Duration {
|
|
return sinceDuration
|
|
}
|
|
|
|
var untilDuration time.Duration
|
|
until := func(time.Time) time.Duration {
|
|
return untilDuration
|
|
}
|
|
|
|
var tick chan time.Time
|
|
after := func(time.Duration) <-chan time.Time {
|
|
return tick
|
|
}
|
|
|
|
genesisTime := time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC)
|
|
secondsPerSlot := uint64(8)
|
|
|
|
// Test when the ticker starts immediately after genesis time.
|
|
sinceDuration = 1 * time.Second
|
|
untilDuration = 7 * time.Second
|
|
// Make this a buffered channel to prevent a deadlock since
|
|
// the other goroutine calls a function in this goroutine.
|
|
tick = make(chan time.Time, 2)
|
|
ticker.start(genesisTime, secondsPerSlot, since, until, after)
|
|
|
|
// Tick once.
|
|
tick <- time.Now()
|
|
slot := <-ticker.C()
|
|
if slot != 0 {
|
|
t.Fatalf("Expected %d, got %d", 0, slot)
|
|
}
|
|
|
|
// Tick twice.
|
|
tick <- time.Now()
|
|
slot = <-ticker.C()
|
|
if slot != 1 {
|
|
t.Fatalf("Expected %d, got %d", 1, slot)
|
|
}
|
|
|
|
// Tick thrice.
|
|
tick <- time.Now()
|
|
slot = <-ticker.C()
|
|
if slot != 2 {
|
|
t.Fatalf("Expected %d, got %d", 2, slot)
|
|
}
|
|
}
|
|
|
|
func TestSlotTickerGenesis(t *testing.T) {
|
|
ticker := &SlotTicker{
|
|
c: make(chan types.Slot),
|
|
done: make(chan struct{}),
|
|
}
|
|
defer ticker.Done()
|
|
|
|
var sinceDuration time.Duration
|
|
since := func(time.Time) time.Duration {
|
|
return sinceDuration
|
|
}
|
|
|
|
var untilDuration time.Duration
|
|
until := func(time.Time) time.Duration {
|
|
return untilDuration
|
|
}
|
|
|
|
var tick chan time.Time
|
|
after := func(time.Duration) <-chan time.Time {
|
|
return tick
|
|
}
|
|
|
|
genesisTime := time.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC)
|
|
secondsPerSlot := uint64(8)
|
|
|
|
// Test when the ticker starts before genesis time.
|
|
sinceDuration = -1 * time.Second
|
|
untilDuration = 1 * time.Second
|
|
// Make this a buffered channel to prevent a deadlock since
|
|
// the other goroutine calls a function in this goroutine.
|
|
tick = make(chan time.Time, 2)
|
|
ticker.start(genesisTime, secondsPerSlot, since, until, after)
|
|
|
|
// Tick once.
|
|
tick <- time.Now()
|
|
slot := <-ticker.C()
|
|
if slot != 0 {
|
|
t.Fatalf("Expected %d, got %d", 0, slot)
|
|
}
|
|
|
|
// Tick twice.
|
|
tick <- time.Now()
|
|
slot = <-ticker.C()
|
|
if slot != 1 {
|
|
t.Fatalf("Expected %d, got %d", 1, slot)
|
|
}
|
|
}
|
|
|
|
func TestGetSlotTickerWithOffset_OK(t *testing.T) {
|
|
genesisTime := time.Now()
|
|
secondsPerSlot := uint64(4)
|
|
offset := time.Duration(secondsPerSlot/2) * time.Second
|
|
|
|
offsetTicker := NewSlotTickerWithOffset(genesisTime, offset, secondsPerSlot)
|
|
normalTicker := NewSlotTicker(genesisTime, secondsPerSlot)
|
|
|
|
firstTicked := 0
|
|
for {
|
|
select {
|
|
case <-offsetTicker.C():
|
|
if firstTicked != 1 {
|
|
t.Fatal("Expected other ticker to tick first")
|
|
}
|
|
return
|
|
case <-normalTicker.C():
|
|
if firstTicked != 0 {
|
|
t.Fatal("Expected normal ticker to tick first")
|
|
}
|
|
firstTicked = 1
|
|
}
|
|
}
|
|
}
|