feat: upgrade oohttp and propagate changes (#461)

Part of https://github.com/ooni/probe/issues/1506
This commit is contained in:
Simone Basso
2021-09-05 21:23:47 +02:00
committed by GitHub
parent 5b8df394b1
commit b834af83ac
8 changed files with 95 additions and 35 deletions
+9 -6
View File
@@ -1,6 +1,9 @@
package mocks
import "crypto/tls"
import (
"context"
"crypto/tls"
)
// TLSConn allows to mock netxlite.TLSConn.
type TLSConn struct {
@@ -10,8 +13,8 @@ type TLSConn struct {
// MockConnectionState allows to mock the ConnectionState method.
MockConnectionState func() tls.ConnectionState
// MockHandshake allows to mock the Handshake method.
MockHandshake func() error
// MockHandshakeContext allows to mock the HandshakeContext method.
MockHandshakeContext func(ctx context.Context) error
}
// ConnectionState calls MockConnectionState.
@@ -19,7 +22,7 @@ func (c *TLSConn) ConnectionState() tls.ConnectionState {
return c.MockConnectionState()
}
// Handshake calls MockHandshake.
func (c *TLSConn) Handshake() error {
return c.MockHandshake()
// HandshakeContext calls MockHandshakeContext.
func (c *TLSConn) HandshakeContext(ctx context.Context) error {
return c.MockHandshakeContext(ctx)
}
+4 -3
View File
@@ -1,6 +1,7 @@
package mocks
import (
"context"
"crypto/tls"
"errors"
"reflect"
@@ -20,14 +21,14 @@ func TestTLSConnConnectionState(t *testing.T) {
}
}
func TestTLSConnHandshake(t *testing.T) {
func TestTLSConnHandshakeContext(t *testing.T) {
expected := errors.New("mocked error")
c := &TLSConn{
MockHandshake: func() error {
MockHandshakeContext: func(ctx context.Context) error {
return expected
},
}
err := c.Handshake()
err := c.HandshakeContext(context.Background())
if !errors.Is(err, expected) {
t.Fatal("not the error we expected", err)
}