d406d9e52b
Putting the test code in the same package makes it easier for forks since they don't have to change the import paths as much and it also gets rid of the need for internal_test.go to bridge. This same thing should probably be done for the majority of the code base.
62 lines
1.6 KiB
Go
62 lines
1.6 KiB
Go
// Copyright (c) 2013-2016 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package wire
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
// fakeConn implements the net.Conn interface and is used to test functions
|
|
// which work with a net.Conn without having to actually make any real
|
|
// connections.
|
|
type fakeConn struct {
|
|
localAddr net.Addr
|
|
remoteAddr net.Addr
|
|
}
|
|
|
|
// Read doesn't do anything. It just satisfies the net.Conn interface.
|
|
func (c *fakeConn) Read(b []byte) (n int, err error) {
|
|
return 0, nil
|
|
}
|
|
|
|
// Write doesn't do anything. It just satisfies the net.Conn interface.
|
|
func (c *fakeConn) Write(b []byte) (n int, err error) {
|
|
return 0, nil
|
|
}
|
|
|
|
// Close doesn't do anything. It just satisfies the net.Conn interface.
|
|
func (c *fakeConn) Close() error {
|
|
return nil
|
|
}
|
|
|
|
// LocalAddr returns the localAddr field of the fake connection and satisfies
|
|
// the net.Conn interface.
|
|
func (c *fakeConn) LocalAddr() net.Addr {
|
|
return c.localAddr
|
|
}
|
|
|
|
// RemoteAddr returns the remoteAddr field of the fake connection and satisfies
|
|
// the net.Conn interface.
|
|
func (c *fakeConn) RemoteAddr() net.Addr {
|
|
return c.remoteAddr
|
|
}
|
|
|
|
// SetDeadline doesn't do anything. It just satisfies the net.Conn interface.
|
|
func (c *fakeConn) SetDeadline(t time.Time) error {
|
|
return nil
|
|
}
|
|
|
|
// SetReadDeadline doesn't do anything. It just satisfies the net.Conn
|
|
// interface.
|
|
func (c *fakeConn) SetReadDeadline(t time.Time) error {
|
|
return nil
|
|
}
|
|
|
|
// SetWriteDeadline doesn't do anything. It just satisfies the net.Conn
|
|
// interface.
|
|
func (c *fakeConn) SetWriteDeadline(t time.Time) error {
|
|
return nil
|
|
}
|