mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03: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:
parent
0fc02e2b6f
commit
2fdef4637a
1 changed files with 5 additions and 5 deletions
10
conn_test.go
10
conn_test.go
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue