b07890af4d
Auto-configure every relevant TLS field as close as possible to where it's actually used. As a side effect, add support for mocking the creation of a TLS connection, which should possibly be useful for uTLS? Work that is part of https://github.com/ooni/probe/issues/1505
26 lines
594 B
Go
26 lines
594 B
Go
package netxmocks
|
|
|
|
import "crypto/tls"
|
|
|
|
// TLSConn allows to mock netxlite.TLSConn.
|
|
type TLSConn struct {
|
|
// Conn is the embedded mockable Conn.
|
|
Conn
|
|
|
|
// MockConnectionState allows to mock the ConnectionState method.
|
|
MockConnectionState func() tls.ConnectionState
|
|
|
|
// MockHandshake allows to mock the Handshake method.
|
|
MockHandshake func() error
|
|
}
|
|
|
|
// ConnectionState calls MockConnectionState.
|
|
func (c *TLSConn) ConnectionState() tls.ConnectionState {
|
|
return c.MockConnectionState()
|
|
}
|
|
|
|
// Handshake calls MockHandshake.
|
|
func (c *TLSConn) Handshake() error {
|
|
return c.MockHandshake()
|
|
}
|