mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-02 19:57:35 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
92 lines
1.6 KiB
Go
92 lines
1.6 KiB
Go
package self_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"testing"
|
|
|
|
quic "github.com/refraction-networking/uquic"
|
|
)
|
|
|
|
func BenchmarkHandshake(b *testing.B) {
|
|
b.ReportAllocs()
|
|
|
|
ln, err := quic.ListenAddr("localhost:0", tlsConfig, nil)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
defer ln.Close()
|
|
|
|
connChan := make(chan quic.Connection, 1)
|
|
go func() {
|
|
for {
|
|
conn, err := ln.Accept(context.Background())
|
|
if err != nil {
|
|
return
|
|
}
|
|
connChan <- conn
|
|
}
|
|
}()
|
|
|
|
conn, err := net.ListenUDP("udp", nil)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
c, err := quic.Dial(context.Background(), conn, ln.Addr(), tlsClientConfig, nil)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
<-connChan
|
|
c.CloseWithError(0, "")
|
|
}
|
|
}
|
|
|
|
func BenchmarkStreamChurn(b *testing.B) {
|
|
b.ReportAllocs()
|
|
|
|
ln, err := quic.ListenAddr("localhost:0", tlsConfig, &quic.Config{MaxIncomingStreams: 1e10})
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
defer ln.Close()
|
|
|
|
errChan := make(chan error, 1)
|
|
go func() {
|
|
conn, err := ln.Accept(context.Background())
|
|
if err != nil {
|
|
errChan <- err
|
|
return
|
|
}
|
|
close(errChan)
|
|
for {
|
|
str, err := conn.AcceptStream(context.Background())
|
|
if err != nil {
|
|
return
|
|
}
|
|
str.Close()
|
|
}
|
|
}()
|
|
|
|
c, err := quic.DialAddr(context.Background(), fmt.Sprintf("localhost:%d", ln.Addr().(*net.UDPAddr).Port), tlsClientConfig, nil)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
if err := <-errChan; err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
str, err := c.OpenStreamSync(context.Background())
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
if err := str.Close(); err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
}
|
|
}
|