mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
b6607fac25
* fixes timer leak in CountdownToGenesis * Merge branch 'master' into fix-unclosed-timer-in-countdown * Merge refs/heads/master into fix-unclosed-timer-in-countdown
52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
package slotutil
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/roughtime"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
logTest "github.com/sirupsen/logrus/hooks/test"
|
|
)
|
|
|
|
func TestCountdownToGenesis(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
params.SetupTestConfigCleanup(t)
|
|
config := params.BeaconConfig()
|
|
config.GenesisCountdownInterval = time.Millisecond * 500
|
|
params.OverrideBeaconConfig(config)
|
|
|
|
t.Run("normal countdown", func(t *testing.T) {
|
|
defer hook.Reset()
|
|
firstStringResult := "1s until chain genesis"
|
|
genesisReached := "Chain genesis time reached"
|
|
CountdownToGenesis(
|
|
context.Background(),
|
|
roughtime.Now().Add(2*time.Second),
|
|
params.BeaconConfig().MinGenesisActiveValidatorCount,
|
|
)
|
|
require.LogsContain(t, hook, firstStringResult)
|
|
require.LogsContain(t, hook, genesisReached)
|
|
})
|
|
|
|
t.Run("close context", func(t *testing.T) {
|
|
defer hook.Reset()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
go func() {
|
|
time.AfterFunc(1500*time.Millisecond, func() {
|
|
cancel()
|
|
})
|
|
}()
|
|
CountdownToGenesis(
|
|
ctx,
|
|
roughtime.Now().Add(5*time.Second),
|
|
params.BeaconConfig().MinGenesisActiveValidatorCount,
|
|
)
|
|
require.LogsContain(t, hook, "4s until chain genesis")
|
|
require.LogsContain(t, hook, "Context closed, exiting routine")
|
|
require.LogsDoNotContain(t, hook, "Chain genesis time reached")
|
|
})
|
|
}
|