mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
84916672c6
* replace eth2 types * replace protos * regen proto * replace * gaz * deps * amend * regen proto * mod * gaz * gaz * ensure build * ssz * add dep * no more eth2 types * no more eth2 * remg * all builds * buidl * tidy * clean * fmt * val serv * gaz Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
76 lines
2.3 KiB
Go
76 lines
2.3 KiB
Go
package client
|
|
|
|
import (
|
|
"testing"
|
|
|
|
types "github.com/prysmaticlabs/prysm/consensus-types/primitives"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
logTest "github.com/sirupsen/logrus/hooks/test"
|
|
)
|
|
|
|
func TestLogNextDutyCountDown_NoDuty(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
v := &validator{
|
|
logDutyCountDown: true,
|
|
duties: ðpb.DutiesResponse{CurrentEpochDuties: []*ethpb.DutiesResponse_Duty{
|
|
{AttesterSlot: 100, ProposerSlots: []types.Slot{105}},
|
|
{AttesterSlot: 110},
|
|
{AttesterSlot: 120},
|
|
}},
|
|
}
|
|
require.NoError(t, v.LogNextDutyTimeLeft(121))
|
|
require.LogsContain(t, hook, "No duty until next epoch")
|
|
}
|
|
|
|
func TestLogNextDutyCountDown_HasDutyAttester(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
v := &validator{
|
|
logDutyCountDown: true,
|
|
duties: ðpb.DutiesResponse{CurrentEpochDuties: []*ethpb.DutiesResponse_Duty{
|
|
{AttesterSlot: 100, ProposerSlots: []types.Slot{105}},
|
|
{AttesterSlot: 110},
|
|
{AttesterSlot: 120},
|
|
}},
|
|
}
|
|
require.NoError(t, v.LogNextDutyTimeLeft(115))
|
|
require.LogsContain(t, hook, "\"Next duty\" attesting=1 currentSlot=115 dutySlot=120 prefix=validator proposing=0")
|
|
}
|
|
|
|
func TestLogNextDutyCountDown_HasDutyProposer(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
v := &validator{
|
|
logDutyCountDown: true,
|
|
duties: ðpb.DutiesResponse{CurrentEpochDuties: []*ethpb.DutiesResponse_Duty{
|
|
{AttesterSlot: 100, ProposerSlots: []types.Slot{105}},
|
|
{AttesterSlot: 110},
|
|
{AttesterSlot: 120},
|
|
}},
|
|
}
|
|
require.NoError(t, v.LogNextDutyTimeLeft(101))
|
|
require.LogsContain(t, hook, "\"Next duty\" attesting=0 currentSlot=101 dutySlot=105 prefix=validator proposing=1")
|
|
}
|
|
|
|
func TestLogNextDutyCountDown_HasMultipleDuties(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
v := &validator{
|
|
logDutyCountDown: true,
|
|
duties: ðpb.DutiesResponse{CurrentEpochDuties: []*ethpb.DutiesResponse_Duty{
|
|
{AttesterSlot: 120},
|
|
{AttesterSlot: 110},
|
|
{AttesterSlot: 105},
|
|
{AttesterSlot: 105},
|
|
{AttesterSlot: 100, ProposerSlots: []types.Slot{105}},
|
|
}},
|
|
}
|
|
require.NoError(t, v.LogNextDutyTimeLeft(101))
|
|
require.LogsContain(t, hook, "\"Next duty\" attesting=2 currentSlot=101 dutySlot=105 prefix=validator proposing=1")
|
|
}
|
|
|
|
func TestLogNextDutyCountDown_NilDuty(t *testing.T) {
|
|
v := &validator{
|
|
logDutyCountDown: true,
|
|
}
|
|
require.NoError(t, v.LogNextDutyTimeLeft(101))
|
|
}
|