* refactor(netxlite): make sure we always use netmocks While there, improve logging and make sure we test 100% of the package with unit tests only. (We don't need to have integration testing in this package because it's fairly simple/obvious.) Part of https://github.com/ooni/probe/issues/1505 * further improve logs
24 lines
556 B
Go
24 lines
556 B
Go
package netxmocks
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
// dialer is the interface we expect from a dialer
|
|
type dialer interface {
|
|
DialContext(ctx context.Context, network, address string) (net.Conn, error)
|
|
}
|
|
|
|
// Dialer is a mockable Dialer.
|
|
type Dialer struct {
|
|
MockDialContext func(ctx context.Context, network, address string) (net.Conn, error)
|
|
}
|
|
|
|
// DialContext calls MockDialContext.
|
|
func (d *Dialer) DialContext(ctx context.Context, network, address string) (net.Conn, error) {
|
|
return d.MockDialContext(ctx, network, address)
|
|
}
|
|
|
|
var _ dialer = &Dialer{}
|