lbcd/wire/fakemessage_test.go

61 lines
1.5 KiB
Go
Raw Normal View History

// Copyright (c) 2013-2015 Conformal Systems LLC.
2013-05-08 21:31:00 +02:00
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package wire_test
2013-05-08 21:31:00 +02:00
import (
"io"
2014-07-03 02:43:33 +02:00
"github.com/btcsuite/btcd/wire"
2013-05-08 21:31:00 +02:00
)
// fakeMessage implements the wire.Message interface and is used to force
// encode errors in messages.
2013-05-08 21:31:00 +02:00
type fakeMessage struct {
command string
payload []byte
forceEncodeErr bool
forceLenErr bool
2013-05-08 21:31:00 +02:00
}
// BtcDecode doesn't do anything. It just satisfies the wire.Message
2013-05-08 21:31:00 +02:00
// interface.
func (msg *fakeMessage) BtcDecode(r io.Reader, pver uint32) error {
return nil
}
// BtcEncode writes the payload field of the fake message or forces an error
// if the forceEncodeErr flag of the fake message is set. It also satisfies the
// wire.Message interface.
2013-05-08 21:31:00 +02:00
func (msg *fakeMessage) BtcEncode(w io.Writer, pver uint32) error {
if msg.forceEncodeErr {
err := &wire.MessageError{
Func: "fakeMessage.BtcEncode",
Description: "intentional error",
}
return err
}
_, err := w.Write(msg.payload)
return err
2013-05-08 21:31:00 +02:00
}
// Command returns the command field of the fake message and satisfies the
// wire.Message interface.
2013-05-08 21:31:00 +02:00
func (msg *fakeMessage) Command() string {
return msg.command
}
// MaxPayloadLength returns the length of the payload field of fake message
// or a smaller value if the forceLenErr flag of the fake message is set. It
// satisfies the wire.Message interface.
2013-05-08 21:31:00 +02:00
func (msg *fakeMessage) MaxPayloadLength(pver uint32) uint32 {
lenp := uint32(len(msg.payload))
if msg.forceLenErr {
return lenp - 1
}
return lenp
2013-05-08 21:31:00 +02:00
}