1
0
mirror of https://github.com/golang/go synced 2024-09-30 17:28:32 -06:00

crypto/tls: use io.ReadFull in conn_test.go

An io.Reader does not guarantee that it will read in the entire buffer.
To ensure that property, io.ReadFull should be used instead.

Change-Id: I0b863135ab9abc40e813f9dac07bfb2a76199950
Reviewed-on: https://go-review.googlesource.com/37403
Reviewed-by: Mikio Hara <mikioh.mikioh@gmail.com>
Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Joe Tsai 2017-02-23 17:41:31 -08:00 committed by Joe Tsai
parent abdb2c35b6
commit ea5529de15

View File

@ -138,7 +138,7 @@ func runDynamicRecordSizingTest(t *testing.T, config *Config) {
tlsConn := Client(clientConn, config)
if err := tlsConn.Handshake(); err != nil {
t.Errorf("Error from client handshake: %s", err)
t.Errorf("Error from client handshake: %v", err)
return
}
@ -147,12 +147,12 @@ func runDynamicRecordSizingTest(t *testing.T, config *Config) {
var recordSizes []int
for {
n, err := clientConn.Read(recordHeader[:])
n, err := io.ReadFull(clientConn, recordHeader[:])
if err == io.EOF {
break
}
if err != nil || n != len(recordHeader) {
t.Errorf("Error from client read: %s", err)
t.Errorf("io.ReadFull = %d, %v", n, err)
return
}
@ -161,9 +161,9 @@ func runDynamicRecordSizingTest(t *testing.T, config *Config) {
record = make([]byte, length)
}
n, err = clientConn.Read(record[:length])
n, err = io.ReadFull(clientConn, record[:length])
if err != nil || n != length {
t.Errorf("Error from client read: %s", err)
t.Errorf("io.ReadFull = %d, %v", n, err)
return
}