273b70bacc
## Checklist - [x] I have read the [contribution guidelines](https://github.com/ooni/probe-cli/blob/master/CONTRIBUTING.md) - [x] reference issue for this pull request: https://github.com/ooni/probe/issues/1885 - [x] related ooni/spec pull request: N/A Location of the issue tracker: https://github.com/ooni/probe ## Description This PR contains a set of changes to move important interfaces and data types into the `./internal/model` package. The criteria for including an interface or data type in here is roughly that the type should be important and used by several packages. We are especially interested to move more interfaces here to increase modularity. An additional side effect is that, by reading this package, one should be able to understand more quickly how different parts of the codebase interact with each other. This is what I want to move in `internal/model`: - [x] most important interfaces from `internal/netxlite` - [x] everything that was previously part of `internal/engine/model` - [x] mocks from `internal/netxlite/mocks` should also be moved in here as a subpackage
78 lines
1.8 KiB
Go
78 lines
1.8 KiB
Go
package mocks
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
// Dialer is a mockable Dialer.
|
|
type Dialer struct {
|
|
MockDialContext func(ctx context.Context, network, address string) (net.Conn, error)
|
|
MockCloseIdleConnections func()
|
|
}
|
|
|
|
// DialContext calls MockDialContext.
|
|
func (d *Dialer) DialContext(ctx context.Context, network, address string) (net.Conn, error) {
|
|
return d.MockDialContext(ctx, network, address)
|
|
}
|
|
|
|
// CloseIdleConnections calls MockCloseIdleConnections.
|
|
func (d *Dialer) CloseIdleConnections() {
|
|
d.MockCloseIdleConnections()
|
|
}
|
|
|
|
// Conn is a mockable net.Conn.
|
|
type Conn struct {
|
|
MockRead func(b []byte) (int, error)
|
|
MockWrite func(b []byte) (int, error)
|
|
MockClose func() error
|
|
MockLocalAddr func() net.Addr
|
|
MockRemoteAddr func() net.Addr
|
|
MockSetDeadline func(t time.Time) error
|
|
MockSetReadDeadline func(t time.Time) error
|
|
MockSetWriteDeadline func(t time.Time) error
|
|
}
|
|
|
|
// Read calls MockRead.
|
|
func (c *Conn) Read(b []byte) (int, error) {
|
|
return c.MockRead(b)
|
|
}
|
|
|
|
// Write calls MockWrite.
|
|
func (c *Conn) Write(b []byte) (int, error) {
|
|
return c.MockWrite(b)
|
|
}
|
|
|
|
// Close calls MockClose.
|
|
func (c *Conn) Close() error {
|
|
return c.MockClose()
|
|
}
|
|
|
|
// LocalAddr calls MockLocalAddr.
|
|
func (c *Conn) LocalAddr() net.Addr {
|
|
return c.MockLocalAddr()
|
|
}
|
|
|
|
// RemoteAddr calls MockRemoteAddr.
|
|
func (c *Conn) RemoteAddr() net.Addr {
|
|
return c.MockRemoteAddr()
|
|
}
|
|
|
|
// SetDeadline calls MockSetDeadline.
|
|
func (c *Conn) SetDeadline(t time.Time) error {
|
|
return c.MockSetDeadline(t)
|
|
}
|
|
|
|
// SetReadDeadline calls MockSetReadDeadline.
|
|
func (c *Conn) SetReadDeadline(t time.Time) error {
|
|
return c.MockSetReadDeadline(t)
|
|
}
|
|
|
|
// SetWriteDeadline calls MockSetWriteDeadline.
|
|
func (c *Conn) SetWriteDeadline(t time.Time) error {
|
|
return c.MockSetWriteDeadline(t)
|
|
}
|
|
|
|
var _ net.Conn = &Conn{}
|