mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
c2615168d9
* applies assertion funcs to sync/initial-sync tests * applies assertion funcs to sync/initial-sync tests * gazelle * Merge branch 'master' into sync-apply-testutils-assertions * gazelle * applies assertion funcs to sync/initial-sync tests * applies assertion funcs to sync/initial-sync tests * applies assertion funcs to sync/initial-sync tests * applies assertion funcs to sync/initial-sync tests * applies assertion funcs to sync/initial-sync tests * Merge branch 'master' into sync-apply-testutils-assertions
40 lines
930 B
Go
40 lines
930 B
Go
package initialsync
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
)
|
|
|
|
func BenchmarkStateMachine_trigger(b *testing.B) {
|
|
sm := newStateMachineManager()
|
|
|
|
handlerFn := func(m *stateMachine, in interface{}) (id stateID, err error) {
|
|
response, ok := in.(*fetchRequestParams)
|
|
if !ok {
|
|
return 0, errInputNotFetchRequestParams
|
|
}
|
|
_ = response.count
|
|
return stateScheduled, nil
|
|
}
|
|
|
|
sm.addEventHandler(eventTick, stateNew, handlerFn)
|
|
sm.addEventHandler(eventTick, stateScheduled, handlerFn)
|
|
sm.addEventHandler(eventTick, stateDataParsed, handlerFn)
|
|
sm.addEventHandler(eventTick, stateSkipped, handlerFn)
|
|
sm.addEventHandler(eventTick, stateSent, handlerFn)
|
|
sm.addStateMachine(64)
|
|
|
|
b.ReportAllocs()
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
data := &fetchRequestParams{
|
|
start: 23,
|
|
count: 32,
|
|
}
|
|
err := sm.machines[64].trigger(eventTick, data)
|
|
require.NoError(b, err)
|
|
}
|
|
}
|