2020-08-01 09:20:05 +00:00
|
|
|
package peers_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"testing"
|
|
|
|
|
2021-03-02 19:36:03 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/cmd/beacon-chain/flags"
|
2020-08-01 09:20:05 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2020-12-04 16:10:07 +00:00
|
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
|
|
logrus.SetOutput(ioutil.Discard)
|
2020-08-01 09:20:05 +00:00
|
|
|
|
2020-12-04 16:10:07 +00:00
|
|
|
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{
|
|
|
|
EnablePeerScorer: true,
|
|
|
|
})
|
|
|
|
defer resetCfg()
|
2020-08-01 09:20:05 +00:00
|
|
|
|
2020-12-04 16:10:07 +00:00
|
|
|
resetFlags := flags.Get()
|
|
|
|
flags.Init(&flags.GlobalFlags{
|
|
|
|
BlockBatchLimit: 64,
|
|
|
|
BlockBatchLimitBurstFactor: 10,
|
|
|
|
})
|
|
|
|
defer func() {
|
|
|
|
flags.Init(resetFlags)
|
|
|
|
}()
|
|
|
|
m.Run()
|
2020-08-01 09:20:05 +00:00
|
|
|
}
|