mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 04:27:36 +03:00
crypto/tls: replace net.Pipe in tests with real TCP connections
crypto/tls is meant to work over network connections with buffering, not synchronous connections, as explained in #24198. Tests based on net.Pipe are unrealistic as reads and writes are matched one to one. Such tests worked just thanks to the implementation details of the tls.Conn internal buffering, and would break if for example the flush of the first flight of the server was not entirely assimilated by the client rawInput buffer before the client attempted to reply to the ServerHello. Note that this might run into the Darwin network issues at #25696. Fixed a few test races that were either hidden or synchronized by the use of the in-memory net.Pipe. Also, this gets us slightly more realistic benchmarks, reflecting some syscall cost of Read and Write operations. Change-Id: I5a597b3d7a81b8ccc776030cc837133412bf50f8 Reviewed-on: https://go-review.googlesource.com/c/142817 Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
db3edf68fa
commit
1b72cce3de
4 changed files with 107 additions and 58 deletions
|
@ -13,6 +13,7 @@ import (
|
|||
"io"
|
||||
"io/ioutil"
|
||||
"net"
|
||||
"os"
|
||||
"os/exec"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
@ -224,3 +225,45 @@ func tempFile(contents string) string {
|
|||
file.Close()
|
||||
return path
|
||||
}
|
||||
|
||||
// localListener is set up by TestMain and used by localPipe to create Conn
|
||||
// pairs like net.Pipe, but connected by an actual buffered TCP connection.
|
||||
var localListener struct {
|
||||
sync.Mutex
|
||||
net.Listener
|
||||
}
|
||||
|
||||
func localPipe(t testing.TB) (net.Conn, net.Conn) {
|
||||
localListener.Lock()
|
||||
defer localListener.Unlock()
|
||||
c := make(chan net.Conn)
|
||||
go func() {
|
||||
conn, err := localListener.Accept()
|
||||
if err != nil {
|
||||
t.Errorf("Failed to accept local connection: %v", err)
|
||||
}
|
||||
c <- conn
|
||||
}()
|
||||
addr := localListener.Addr()
|
||||
c1, err := net.Dial(addr.Network(), addr.String())
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to dial local connection: %v", err)
|
||||
}
|
||||
c2 := <-c
|
||||
return c1, c2
|
||||
}
|
||||
|
||||
func TestMain(m *testing.M) {
|
||||
l, err := net.Listen("tcp", "127.0.0.1:0")
|
||||
if err != nil {
|
||||
l, err = net.Listen("tcp6", "[::1]:0")
|
||||
}
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed to open local listener: %v", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
localListener.Listener = l
|
||||
exitCode := m.Run()
|
||||
localListener.Close()
|
||||
os.Exit(exitCode)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue