mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
Merge pull request #7143 from morehouse/test_warning
lnwire: add missing tests for Warning
This commit is contained in:
commit
bace8d81fa
@ -140,6 +140,9 @@ certain large transactions](https://github.com/lightningnetwork/lnd/pull/7100).
|
||||
and documentation to reflect
|
||||
this](https://github.com/lightningnetwork/lnd/pull/7142).
|
||||
|
||||
* [Added missing wire tests for Warning
|
||||
message](https://github.com/lightningnetwork/lnd/pull/7143).
|
||||
|
||||
## `lncli`
|
||||
* [Add an `insecure` flag to skip tls auth as well as a `metadata` string slice
|
||||
flag](https://github.com/lightningnetwork/lnd/pull/6818) that allows the
|
||||
|
@ -264,6 +264,17 @@ func FuzzError(f *testing.F) {
|
||||
})
|
||||
}
|
||||
|
||||
func FuzzWarning(f *testing.F) {
|
||||
f.Fuzz(func(t *testing.T, data []byte) {
|
||||
// Prefix with MsgWarning.
|
||||
data = prefixWithMsgType(data, MsgWarning)
|
||||
|
||||
// Pass the message into our general fuzz harness for wire
|
||||
// messages!
|
||||
harness(t, data)
|
||||
})
|
||||
}
|
||||
|
||||
func FuzzFundingCreated(f *testing.F) {
|
||||
f.Fuzz(func(t *testing.T, data []byte) {
|
||||
// Prefix with MsgFundingCreated.
|
||||
|
@ -259,6 +259,7 @@ func BenchmarkReadMessage(b *testing.B) {
|
||||
func makeAllMessages(t testing.TB, r *rand.Rand) []lnwire.Message {
|
||||
msgAll := []lnwire.Message{}
|
||||
|
||||
msgAll = append(msgAll, newMsgWarning(t, r))
|
||||
msgAll = append(msgAll, newMsgInit(t, r))
|
||||
msgAll = append(msgAll, newMsgError(t, r))
|
||||
msgAll = append(msgAll, newMsgPing(t, r))
|
||||
@ -293,6 +294,19 @@ func makeAllMessages(t testing.TB, r *rand.Rand) []lnwire.Message {
|
||||
return msgAll
|
||||
}
|
||||
|
||||
func newMsgWarning(tb testing.TB, r io.Reader) *lnwire.Warning {
|
||||
tb.Helper()
|
||||
|
||||
msg := lnwire.NewWarning()
|
||||
|
||||
_, err := r.Read(msg.ChanID[:])
|
||||
require.NoError(tb, err, "unable to generate chan id")
|
||||
|
||||
msg.Data = createExtraData(tb, r)
|
||||
|
||||
return msg
|
||||
}
|
||||
|
||||
func newMsgInit(t testing.TB, r io.Reader) *lnwire.Init {
|
||||
t.Helper()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user