watchtower/server/mock: create MockPeer for debug build
This commit is contained in:
parent
48643a1747
commit
db4c4488c5
98
watchtower/server/mock.go
Normal file
98
watchtower/server/mock.go
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
// +build dev
|
||||||
|
|
||||||
|
package server
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"net"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/btcsuite/btcd/btcec"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MockPeer struct {
|
||||||
|
remotePub *btcec.PublicKey
|
||||||
|
remoteAddr net.Addr
|
||||||
|
|
||||||
|
IncomingMsgs chan []byte
|
||||||
|
OutgoingMsgs chan []byte
|
||||||
|
|
||||||
|
writeDeadline <-chan time.Time
|
||||||
|
readDeadline <-chan time.Time
|
||||||
|
|
||||||
|
Quit chan struct{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewMockPeer(pk *btcec.PublicKey, addr net.Addr, bufferSize int) *MockPeer {
|
||||||
|
return &MockPeer{
|
||||||
|
remotePub: pk,
|
||||||
|
remoteAddr: addr,
|
||||||
|
IncomingMsgs: make(chan []byte, bufferSize),
|
||||||
|
OutgoingMsgs: make(chan []byte, bufferSize),
|
||||||
|
Quit: make(chan struct{}),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *MockPeer) Write(b []byte) (n int, err error) {
|
||||||
|
select {
|
||||||
|
case p.OutgoingMsgs <- b:
|
||||||
|
return len(b), nil
|
||||||
|
case <-p.writeDeadline:
|
||||||
|
return 0, fmt.Errorf("write timeout expired")
|
||||||
|
case <-p.Quit:
|
||||||
|
return 0, fmt.Errorf("connection closed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *MockPeer) Close() error {
|
||||||
|
select {
|
||||||
|
case <-p.Quit:
|
||||||
|
return fmt.Errorf("connection already closed")
|
||||||
|
default:
|
||||||
|
close(p.Quit)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *MockPeer) ReadNextMessage() ([]byte, error) {
|
||||||
|
select {
|
||||||
|
case b := <-p.IncomingMsgs:
|
||||||
|
return b, nil
|
||||||
|
case <-p.readDeadline:
|
||||||
|
return nil, fmt.Errorf("read timeout expired")
|
||||||
|
case <-p.Quit:
|
||||||
|
return nil, fmt.Errorf("connection closed")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *MockPeer) SetWriteDeadline(t time.Time) error {
|
||||||
|
if t.IsZero() {
|
||||||
|
p.writeDeadline = nil
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
duration := time.Until(t)
|
||||||
|
p.writeDeadline = time.After(duration)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *MockPeer) SetReadDeadline(t time.Time) error {
|
||||||
|
if t.IsZero() {
|
||||||
|
p.readDeadline = nil
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
duration := time.Until(t)
|
||||||
|
p.readDeadline = time.After(duration)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *MockPeer) RemotePub() *btcec.PublicKey {
|
||||||
|
return p.remotePub
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *MockPeer) RemoteAddr() net.Addr {
|
||||||
|
return p.remoteAddr
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user