mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-10 15:30:34 +03:00
Add a simple transfer benchmark
This commit is contained in:
parent
8677a042cf
commit
21b236771b
@ -30,7 +30,7 @@ func GetLoggerWithPrefix(prefix string) *log.Logger {
|
||||
return l
|
||||
}
|
||||
|
||||
func CreateAndConnectTwo(t *testing.T) (*Core, *Core) {
|
||||
func CreateAndConnectTwo(t testing.TB) (*Core, *Core) {
|
||||
nodeA := Core{}
|
||||
_, err := nodeA.Start(GenerateConfig(), GetLoggerWithPrefix("A: "))
|
||||
if err != nil {
|
||||
@ -74,7 +74,7 @@ func TestCore_Start_Connect(t *testing.T) {
|
||||
CreateAndConnectTwo(t)
|
||||
}
|
||||
|
||||
func CreateEchoListener(t *testing.T, nodeA *Core, bufLen int) chan struct{} {
|
||||
func CreateEchoListener(t testing.TB, nodeA *Core, bufLen int, repeats int) chan struct{} {
|
||||
// Listen
|
||||
listener, err := nodeA.ConnListen()
|
||||
if err != nil {
|
||||
@ -91,6 +91,8 @@ func CreateEchoListener(t *testing.T, nodeA *Core, bufLen int) chan struct{} {
|
||||
}
|
||||
defer conn.Close()
|
||||
buf := make([]byte, bufLen)
|
||||
|
||||
for i := 0; i < repeats; i++ {
|
||||
n, err := conn.Read(buf)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
@ -104,6 +106,7 @@ func CreateEchoListener(t *testing.T, nodeA *Core, bufLen int) chan struct{} {
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
done <- struct{}{}
|
||||
}()
|
||||
|
||||
@ -114,7 +117,7 @@ func TestCore_Start_Transfer(t *testing.T) {
|
||||
nodeA, nodeB := CreateAndConnectTwo(t)
|
||||
|
||||
msgLen := 1500
|
||||
done := CreateEchoListener(t, nodeA, msgLen)
|
||||
done := CreateEchoListener(t, nodeA, msgLen, 1)
|
||||
|
||||
if !WaitConnected(nodeA, nodeB) {
|
||||
t.Fatal("nodes did not connect")
|
||||
@ -146,3 +149,43 @@ func TestCore_Start_Transfer(t *testing.T) {
|
||||
}
|
||||
<-done
|
||||
}
|
||||
|
||||
func BenchmarkCore_Start_Transfer(b *testing.B) {
|
||||
nodeA, nodeB := CreateAndConnectTwo(b)
|
||||
|
||||
msgLen := 1500 // typical MTU
|
||||
done := CreateEchoListener(b, nodeA, msgLen, b.N)
|
||||
|
||||
if !WaitConnected(nodeA, nodeB) {
|
||||
b.Fatal("nodes did not connect")
|
||||
}
|
||||
|
||||
// Dial
|
||||
dialer, err := nodeB.ConnDialer()
|
||||
if err != nil {
|
||||
b.Fatal(err)
|
||||
}
|
||||
conn, err := dialer.Dial("nodeid", nodeA.NodeID().String())
|
||||
if err != nil {
|
||||
b.Fatal(err)
|
||||
}
|
||||
defer conn.Close()
|
||||
msg := make([]byte, msgLen)
|
||||
rand.Read(msg)
|
||||
buf := make([]byte, msgLen)
|
||||
|
||||
b.SetBytes(int64(b.N * msgLen))
|
||||
b.ResetTimer()
|
||||
|
||||
for i := 0; i < b.N; i++ {
|
||||
conn.Write(msg)
|
||||
if err != nil {
|
||||
b.Fatal(err)
|
||||
}
|
||||
_, err = conn.Read(buf)
|
||||
if err != nil {
|
||||
b.Fatal(err)
|
||||
}
|
||||
}
|
||||
<-done
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user