mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
84fd911b47
Fixes new lint errors caught by the latest version.
65 lines
1.4 KiB
Go
65 lines
1.4 KiB
Go
package zpay32
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/btcsuite/btcd/btcec/v2"
|
|
"github.com/btcsuite/btcd/btcec/v2/ecdsa"
|
|
"github.com/btcsuite/btcd/chaincfg"
|
|
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
|
)
|
|
|
|
func FuzzDecode(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data string) {
|
|
inv, err := Decode(data, &chaincfg.TestNet3Params)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// Call these functions as a sanity check to make sure the
|
|
// invoice is well-formed.
|
|
_ = inv.MinFinalCLTVExpiry()
|
|
_ = inv.Expiry()
|
|
})
|
|
}
|
|
|
|
func FuzzEncode(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data string) {
|
|
inv, err := Decode(data, &chaincfg.TestNet3Params)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// Call these functions as a sanity check to make sure the
|
|
// invoice is well-formed.
|
|
_ = inv.MinFinalCLTVExpiry()
|
|
_ = inv.Expiry()
|
|
|
|
// Initialize the static key we will be using for this fuzz
|
|
// test.
|
|
testPrivKey, _ := btcec.PrivKeyFromBytes(testPrivKeyBytes)
|
|
|
|
// Then, initialize the testMessageSigner so we can encode out
|
|
// invoices with this private key.
|
|
testMessageSigner := MessageSigner{
|
|
SignCompact: func(msg []byte) ([]byte, error) {
|
|
hash := chainhash.HashB(msg)
|
|
sig, err := ecdsa.SignCompact(testPrivKey, hash,
|
|
true)
|
|
if err != nil {
|
|
return nil,
|
|
fmt.Errorf("can't sign the "+
|
|
"message: %v", err)
|
|
}
|
|
|
|
return sig, nil
|
|
},
|
|
}
|
|
_, err = inv.Encode(testMessageSigner)
|
|
if err != nil {
|
|
return
|
|
}
|
|
})
|
|
}
|