erigon-pulse/p2p/discover/table_integration_test.go
battlmonstr 2e4947bbfb
p2p: improve test TestTable_findnodeByID (#4047)
* refactor test
* add a fast fixed examples test for the main suite
* split slow test for the integration suite
2022-05-03 08:32:54 +01:00

29 lines
510 B
Go

//go:build integration
// +build integration
package discover
import (
"math/rand"
"testing"
"testing/quick"
"time"
)
func TestTable_findNodeByID_quickCheck(t *testing.T) {
t.Parallel()
config := quick.Config{
MaxCount: 1000,
Rand: rand.New(rand.NewSource(time.Now().Unix())),
}
test := func(nodesCount uint16, resultsCount byte) bool {
return testTableFindNodeByIDRun(t, nodesCount, resultsCount, config.Rand)
}
if err := quick.Check(test, &config); err != nil {
t.Error(err)
}
}