package client import ( "context" "errors" "testing" "time" "github.com/prysmaticlabs/prysm/shared/featureconfig" "github.com/prysmaticlabs/prysm/shared/testutil" "github.com/prysmaticlabs/prysm/shared/testutil/assert" "github.com/prysmaticlabs/prysm/shared/testutil/require" logTest "github.com/sirupsen/logrus/hooks/test" ) func cancelledContext() context.Context { ctx, cancel := context.WithCancel(context.Background()) cancel() return ctx } func TestCancelledContext_CleansUpValidator(t *testing.T) { v := &fakeValidator{} run(cancelledContext(), v) assert.Equal(t, true, v.DoneCalled, "Expected Done() to be called") } func TestCancelledContext_WaitsForChainStart(t *testing.T) { v := &fakeValidator{} run(cancelledContext(), v) assert.Equal(t, true, v.WaitForChainStartCalled, "Expected WaitForChainStart() to be called") } func TestCancelledContext_WaitsForSynced(t *testing.T) { cfg := &featureconfig.Flags{ WaitForSynced: true, } reset := featureconfig.InitWithReset(cfg) defer reset() v := &fakeValidator{} run(cancelledContext(), v) assert.Equal(t, true, v.WaitForSyncedCalled, "Expected WaitForSynced() to be called") } func TestCancelledContext_WaitsForActivation(t *testing.T) { v := &fakeValidator{} run(cancelledContext(), v) assert.Equal(t, true, v.WaitForActivationCalled, "Expected WaitForActivation() to be called") } func TestCancelledContext_ChecksSlasherReady(t *testing.T) { v := &fakeValidator{} cfg := &featureconfig.Flags{ SlasherProtection: true, } reset := featureconfig.InitWithReset(cfg) defer reset() run(cancelledContext(), v) assert.Equal(t, true, v.SlasherReadyCalled, "Expected SlasherReady() to be called") } func TestUpdateDuties_NextSlot(t *testing.T) { v := &fakeValidator{} ctx, cancel := context.WithCancel(context.Background()) slot := uint64(55) ticker := make(chan uint64) v.NextSlotRet = ticker go func() { ticker <- slot cancel() }() run(ctx, v) require.Equal(t, true, v.UpdateDutiesCalled, "Expected UpdateAssignments(%d) to be called", slot) assert.Equal(t, slot, v.UpdateDutiesArg1, "UpdateAssignments was called with wrong argument") } func TestUpdateDuties_HandlesError(t *testing.T) { hook := logTest.NewGlobal() v := &fakeValidator{} ctx, cancel := context.WithCancel(context.Background()) slot := uint64(55) ticker := make(chan uint64) v.NextSlotRet = ticker go func() { ticker <- slot cancel() }() v.UpdateDutiesRet = errors.New("bad") run(ctx, v) testutil.AssertLogsContain(t, hook, "Failed to update assignments") } func TestRoleAt_NextSlot(t *testing.T) { v := &fakeValidator{} ctx, cancel := context.WithCancel(context.Background()) slot := uint64(55) ticker := make(chan uint64) v.NextSlotRet = ticker go func() { ticker <- slot cancel() }() run(ctx, v) require.Equal(t, true, v.RoleAtCalled, "Expected RoleAt(%d) to be called", slot) assert.Equal(t, slot, v.RoleAtArg1, "RoleAt called with the wrong arg") } func TestAttests_NextSlot(t *testing.T) { v := &fakeValidator{} ctx, cancel := context.WithCancel(context.Background()) slot := uint64(55) ticker := make(chan uint64) v.NextSlotRet = ticker v.RolesAtRet = []validatorRole{roleAttester} go func() { ticker <- slot cancel() }() timer := time.NewTimer(200 * time.Millisecond) run(ctx, v) <-timer.C require.Equal(t, true, v.AttestToBlockHeadCalled, "SubmitAttestation(%d) was not called", slot) assert.Equal(t, slot, v.AttestToBlockHeadArg1, "SubmitAttestation was called with wrong arg") } func TestProposes_NextSlot(t *testing.T) { v := &fakeValidator{} ctx, cancel := context.WithCancel(context.Background()) slot := uint64(55) ticker := make(chan uint64) v.NextSlotRet = ticker v.RolesAtRet = []validatorRole{roleProposer} go func() { ticker <- slot cancel() }() timer := time.NewTimer(200 * time.Millisecond) run(ctx, v) <-timer.C require.Equal(t, true, v.ProposeBlockCalled, "ProposeBlock(%d) was not called", slot) assert.Equal(t, slot, v.ProposeBlockArg1, "ProposeBlock was called with wrong arg") } func TestBothProposesAndAttests_NextSlot(t *testing.T) { v := &fakeValidator{} ctx, cancel := context.WithCancel(context.Background()) slot := uint64(55) ticker := make(chan uint64) v.NextSlotRet = ticker v.RolesAtRet = []validatorRole{roleAttester, roleProposer} go func() { ticker <- slot cancel() }() timer := time.NewTimer(200 * time.Millisecond) run(ctx, v) <-timer.C require.Equal(t, true, v.AttestToBlockHeadCalled, "SubmitAttestation(%d) was not called", slot) assert.Equal(t, slot, v.AttestToBlockHeadArg1, "SubmitAttestation was called with wrong arg") require.Equal(t, true, v.ProposeBlockCalled, "ProposeBlock(%d) was not called", slot) assert.Equal(t, slot, v.ProposeBlockArg1, "ProposeBlock was called with wrong arg") }