prysm-pulse/beacon-chain/sync/initial-sync/fsm_benchmark_test.go
Victor Farazdagi c2615168d9
Applies assertion funcs to sync tests (#6603)
* 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
2020-07-15 04:41:11 +00:00

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)
}
}