2016-08-08 19:38:16 +02:00
|
|
|
// Copyright (c) 2013-2016 The btcsuite developers
|
2014-07-10 03:01:38 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
package bloom_test
|
2014-07-01 02:51:45 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/hex"
|
2014-07-09 04:59:33 +02:00
|
|
|
"testing"
|
|
|
|
|
2021-09-10 22:30:39 +02:00
|
|
|
"github.com/lbryio/lbcd/chaincfg/chainhash"
|
|
|
|
"github.com/lbryio/lbcd/wire"
|
|
|
|
"github.com/lbryio/lbcutil"
|
|
|
|
"github.com/lbryio/lbcutil/bloom"
|
2014-07-01 02:51:45 +02:00
|
|
|
)
|
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
// TestFilterLarge ensures a maximum sized filter can be created.
|
2014-07-01 02:51:45 +02:00
|
|
|
func TestFilterLarge(t *testing.T) {
|
2015-02-05 21:48:38 +01:00
|
|
|
f := bloom.NewFilter(100000000, 0, 0.01, wire.BloomUpdateNone)
|
|
|
|
if len(f.MsgFilterLoad().Filter) > wire.MaxFilterLoadFilterSize {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterLarge test failed: %d > %d",
|
2015-02-05 21:48:38 +01:00
|
|
|
len(f.MsgFilterLoad().Filter), wire.MaxFilterLoadFilterSize)
|
2014-07-01 02:51:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
// TestFilterLoad ensures loading and unloading of a filter pass.
|
|
|
|
func TestFilterLoad(t *testing.T) {
|
2015-02-05 21:48:38 +01:00
|
|
|
merkle := wire.MsgFilterLoad{}
|
2014-07-09 04:59:33 +02:00
|
|
|
|
|
|
|
f := bloom.LoadFilter(&merkle)
|
|
|
|
if !f.IsLoaded() {
|
2014-08-28 16:32:49 +02:00
|
|
|
t.Errorf("TestFilterLoad IsLoaded test failed: want %v got %v",
|
2014-07-09 04:59:33 +02:00
|
|
|
true, !f.IsLoaded())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
f.Unload()
|
|
|
|
if f.IsLoaded() {
|
2014-08-28 16:32:49 +02:00
|
|
|
t.Errorf("TestFilterLoad IsLoaded test failed: want %v got %v",
|
2014-07-09 04:59:33 +02:00
|
|
|
f.IsLoaded(), false)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestFilterInsert ensures inserting data into the filter causes that data
|
|
|
|
// to be matched and the resulting serialized MsgFilterLoad is the expected
|
|
|
|
// value.
|
|
|
|
func TestFilterInsert(t *testing.T) {
|
2014-07-01 02:51:45 +02:00
|
|
|
var tests = []struct {
|
|
|
|
hex string
|
|
|
|
insert bool
|
|
|
|
}{
|
|
|
|
{"99108ad8ed9bb6274d3980bab5a85c048f0950c8", true},
|
|
|
|
{"19108ad8ed9bb6274d3980bab5a85c048f0950c8", false},
|
|
|
|
{"b5a2c786d9ef4658287ced5914b37a1b4aa32eee", true},
|
|
|
|
{"b9300670b4c5366e95b2699e8b18bc75e5f729c5", true},
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f := bloom.NewFilter(3, 0, 0.01, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
for i, test := range tests {
|
2014-07-01 02:51:45 +02:00
|
|
|
data, err := hex.DecodeString(test.hex)
|
|
|
|
if err != nil {
|
2014-07-09 04:59:33 +02:00
|
|
|
t.Errorf("TestFilterInsert DecodeString failed: %v\n", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if test.insert {
|
|
|
|
f.Add(data)
|
|
|
|
}
|
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
result := f.Matches(data)
|
2014-07-01 02:51:45 +02:00
|
|
|
if test.insert != result {
|
2014-07-09 04:59:33 +02:00
|
|
|
t.Errorf("TestFilterInsert Matches test #%d failure: got %v want %v\n",
|
|
|
|
i, result, test.insert)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
want, err := hex.DecodeString("03614e9b050000000000000001")
|
|
|
|
if err != nil {
|
2014-07-09 04:59:33 +02:00
|
|
|
t.Errorf("TestFilterInsert DecodeString failed: %v\n", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
got := bytes.NewBuffer(nil)
|
2018-05-15 04:59:31 +02:00
|
|
|
err = f.MsgFilterLoad().BtcEncode(got, wire.ProtocolVersion, wire.LatestEncoding)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
2014-07-09 04:59:33 +02:00
|
|
|
t.Errorf("TestFilterInsert BtcDecode failed: %v\n", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !bytes.Equal(got.Bytes(), want) {
|
2014-07-09 04:59:33 +02:00
|
|
|
t.Errorf("TestFilterInsert failure: got %v want %v\n",
|
2014-07-01 02:51:45 +02:00
|
|
|
got.Bytes(), want)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-26 04:09:38 +01:00
|
|
|
// TestFilterFPRange checks that new filters made with out of range
|
|
|
|
// false positive targets result in either max or min false positive rates.
|
|
|
|
func TestFilterFPRange(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
hash string
|
|
|
|
want string
|
|
|
|
filter *bloom.Filter
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "fprates > 1 should be clipped at 1",
|
|
|
|
hash: "02981fa052f0481dbc5868f4fc2166035a10f27a03cfd2de67326471df5bc041",
|
|
|
|
want: "00000000000000000001",
|
|
|
|
filter: bloom.NewFilter(1, 0, 20.9999999769, wire.BloomUpdateAll),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "fprates less than 1e-9 should be clipped at min",
|
|
|
|
hash: "02981fa052f0481dbc5868f4fc2166035a10f27a03cfd2de67326471df5bc041",
|
|
|
|
want: "0566d97a91a91b0000000000000001",
|
|
|
|
filter: bloom.NewFilter(1, 0, 0, wire.BloomUpdateAll),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "negative fprates should be clipped at min",
|
|
|
|
hash: "02981fa052f0481dbc5868f4fc2166035a10f27a03cfd2de67326471df5bc041",
|
|
|
|
want: "0566d97a91a91b0000000000000001",
|
|
|
|
filter: bloom.NewFilter(1, 0, -1, wire.BloomUpdateAll),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
// Convert test input to appropriate types.
|
2016-08-08 19:38:16 +02:00
|
|
|
hash, err := chainhash.NewHashFromStr(test.hash)
|
2016-02-26 04:09:38 +01:00
|
|
|
if err != nil {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("NewHashFromStr unexpected error: %v", err)
|
2016-02-26 04:09:38 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
want, err := hex.DecodeString(test.want)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("DecodeString unexpected error: %v\n", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the test hash to the bloom filter and ensure the
|
|
|
|
// filter serializes to the expected bytes.
|
|
|
|
f := test.filter
|
2016-08-08 19:38:16 +02:00
|
|
|
f.AddHash(hash)
|
2016-02-26 04:09:38 +01:00
|
|
|
got := bytes.NewBuffer(nil)
|
2018-05-15 04:59:31 +02:00
|
|
|
err = f.MsgFilterLoad().BtcEncode(got, wire.ProtocolVersion, wire.LatestEncoding)
|
2016-02-26 04:09:38 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("BtcDecode unexpected error: %v\n", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !bytes.Equal(got.Bytes(), want) {
|
|
|
|
t.Errorf("serialized filter mismatch: got %x want %x\n",
|
|
|
|
got.Bytes(), want)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
// TestFilterInsert ensures inserting data into the filter with a tweak causes
|
|
|
|
// that data to be matched and the resulting serialized MsgFilterLoad is the
|
|
|
|
// expected value.
|
2014-07-01 02:51:45 +02:00
|
|
|
func TestFilterInsertWithTweak(t *testing.T) {
|
|
|
|
var tests = []struct {
|
|
|
|
hex string
|
|
|
|
insert bool
|
|
|
|
}{
|
|
|
|
{"99108ad8ed9bb6274d3980bab5a85c048f0950c8", true},
|
|
|
|
{"19108ad8ed9bb6274d3980bab5a85c048f0950c8", false},
|
|
|
|
{"b5a2c786d9ef4658287ced5914b37a1b4aa32eee", true},
|
|
|
|
{"b9300670b4c5366e95b2699e8b18bc75e5f729c5", true},
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f := bloom.NewFilter(3, 2147483649, 0.01, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
for i, test := range tests {
|
2014-07-01 02:51:45 +02:00
|
|
|
data, err := hex.DecodeString(test.hex)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterInsertWithTweak DecodeString failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if test.insert {
|
|
|
|
f.Add(data)
|
|
|
|
}
|
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
result := f.Matches(data)
|
2014-07-01 02:51:45 +02:00
|
|
|
if test.insert != result {
|
2014-07-09 04:59:33 +02:00
|
|
|
t.Errorf("TestFilterInsertWithTweak Matches test #%d failure: got %v want %v\n",
|
|
|
|
i, result, test.insert)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
want, err := hex.DecodeString("03ce4299050000000100008001")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterInsertWithTweak DecodeString failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
got := bytes.NewBuffer(nil)
|
2018-05-15 04:59:31 +02:00
|
|
|
err = f.MsgFilterLoad().BtcEncode(got, wire.ProtocolVersion, wire.LatestEncoding)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterInsertWithTweak BtcDecode failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !bytes.Equal(got.Bytes(), want) {
|
|
|
|
t.Errorf("TestFilterInsertWithTweak failure: got %v want %v\n",
|
|
|
|
got.Bytes(), want)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
// TestFilterInsertKey ensures inserting public keys and addresses works as
|
|
|
|
// expected.
|
2014-07-01 02:51:45 +02:00
|
|
|
func TestFilterInsertKey(t *testing.T) {
|
|
|
|
secret := "5Kg1gnAjaLfKiwhhPpGS3QfRg2m6awQvaj98JCZBZQ5SuS2F15C"
|
|
|
|
|
2021-09-10 22:30:39 +02:00
|
|
|
wif, err := lbcutil.DecodeWIF(secret)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterInsertKey DecodeWIF failed: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f := bloom.NewFilter(2, 0, 0.001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
f.Add(wif.SerializePubKey())
|
2021-09-10 22:30:39 +02:00
|
|
|
f.Add(lbcutil.Hash160(wif.SerializePubKey()))
|
2014-07-01 02:51:45 +02:00
|
|
|
|
|
|
|
want, err := hex.DecodeString("038fc16b080000000000000001")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterInsertWithTweak DecodeString failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
got := bytes.NewBuffer(nil)
|
2018-05-15 04:59:31 +02:00
|
|
|
err = f.MsgFilterLoad().BtcEncode(got, wire.ProtocolVersion, wire.LatestEncoding)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterInsertWithTweak BtcDecode failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !bytes.Equal(got.Bytes(), want) {
|
|
|
|
t.Errorf("TestFilterInsertWithTweak failure: got %v want %v\n",
|
|
|
|
got.Bytes(), want)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFilterBloomMatch(t *testing.T) {
|
|
|
|
str := "01000000010b26e9b7735eb6aabdf358bab62f9816a21ba9ebdb719d5299e" +
|
|
|
|
"88607d722c190000000008b4830450220070aca44506c5cef3a16ed519d7" +
|
|
|
|
"c3c39f8aab192c4e1c90d065f37b8a4af6141022100a8e160b856c2d43d2" +
|
|
|
|
"7d8fba71e5aef6405b8643ac4cb7cb3c462aced7f14711a0141046d11fee" +
|
|
|
|
"51b0e60666d5049a9101a72741df480b96ee26488a4d3466b95c9a40ac5e" +
|
|
|
|
"eef87e10a5cd336c19a84565f80fa6c547957b7700ff4dfbdefe76036c33" +
|
|
|
|
"9ffffffff021bff3d11000000001976a91404943fdd508053c75000106d3" +
|
|
|
|
"bc6e2754dbcff1988ac2f15de00000000001976a914a266436d296554760" +
|
|
|
|
"8b9e15d9032a7b9d64fa43188ac00000000"
|
|
|
|
strBytes, err := hex.DecodeString(str)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterBloomMatch DecodeString failure: %v", err)
|
|
|
|
return
|
|
|
|
}
|
2021-09-10 22:30:39 +02:00
|
|
|
tx, err := lbcutil.NewTxFromBytes(strBytes)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterBloomMatch NewTxFromBytes failure: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
spendingTxBytes := []byte{0x01, 0x00, 0x00, 0x00, 0x01, 0x6b, 0xff, 0x7f,
|
|
|
|
0xcd, 0x4f, 0x85, 0x65, 0xef, 0x40, 0x6d, 0xd5, 0xd6,
|
|
|
|
0x3d, 0x4f, 0xf9, 0x4f, 0x31, 0x8f, 0xe8, 0x20, 0x27,
|
|
|
|
0xfd, 0x4d, 0xc4, 0x51, 0xb0, 0x44, 0x74, 0x01, 0x9f,
|
|
|
|
0x74, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x49, 0x30,
|
|
|
|
0x46, 0x02, 0x21, 0x00, 0xda, 0x0d, 0xc6, 0xae, 0xce,
|
|
|
|
0xfe, 0x1e, 0x06, 0xef, 0xdf, 0x05, 0x77, 0x37, 0x57,
|
|
|
|
0xde, 0xb1, 0x68, 0x82, 0x09, 0x30, 0xe3, 0xb0, 0xd0,
|
|
|
|
0x3f, 0x46, 0xf5, 0xfc, 0xf1, 0x50, 0xbf, 0x99, 0x0c,
|
|
|
|
0x02, 0x21, 0x00, 0xd2, 0x5b, 0x5c, 0x87, 0x04, 0x00,
|
|
|
|
0x76, 0xe4, 0xf2, 0x53, 0xf8, 0x26, 0x2e, 0x76, 0x3e,
|
|
|
|
0x2d, 0xd5, 0x1e, 0x7f, 0xf0, 0xbe, 0x15, 0x77, 0x27,
|
|
|
|
0xc4, 0xbc, 0x42, 0x80, 0x7f, 0x17, 0xbd, 0x39, 0x01,
|
|
|
|
0x41, 0x04, 0xe6, 0xc2, 0x6e, 0xf6, 0x7d, 0xc6, 0x10,
|
|
|
|
0xd2, 0xcd, 0x19, 0x24, 0x84, 0x78, 0x9a, 0x6c, 0xf9,
|
|
|
|
0xae, 0xa9, 0x93, 0x0b, 0x94, 0x4b, 0x7e, 0x2d, 0xb5,
|
|
|
|
0x34, 0x2b, 0x9d, 0x9e, 0x5b, 0x9f, 0xf7, 0x9a, 0xff,
|
|
|
|
0x9a, 0x2e, 0xe1, 0x97, 0x8d, 0xd7, 0xfd, 0x01, 0xdf,
|
|
|
|
0xc5, 0x22, 0xee, 0x02, 0x28, 0x3d, 0x3b, 0x06, 0xa9,
|
|
|
|
0xd0, 0x3a, 0xcf, 0x80, 0x96, 0x96, 0x8d, 0x7d, 0xbb,
|
|
|
|
0x0f, 0x91, 0x78, 0xff, 0xff, 0xff, 0xff, 0x02, 0x8b,
|
|
|
|
0xa7, 0x94, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x19, 0x76,
|
|
|
|
0xa9, 0x14, 0xba, 0xde, 0xec, 0xfd, 0xef, 0x05, 0x07,
|
|
|
|
0x24, 0x7f, 0xc8, 0xf7, 0x42, 0x41, 0xd7, 0x3b, 0xc0,
|
|
|
|
0x39, 0x97, 0x2d, 0x7b, 0x88, 0xac, 0x40, 0x94, 0xa8,
|
|
|
|
0x02, 0x00, 0x00, 0x00, 0x00, 0x19, 0x76, 0xa9, 0x14,
|
|
|
|
0xc1, 0x09, 0x32, 0x48, 0x3f, 0xec, 0x93, 0xed, 0x51,
|
|
|
|
0xf5, 0xfe, 0x95, 0xe7, 0x25, 0x59, 0xf2, 0xcc, 0x70,
|
|
|
|
0x43, 0xf9, 0x88, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00}
|
|
|
|
|
2021-09-10 22:30:39 +02:00
|
|
|
spendingTx, err := lbcutil.NewTxFromBytes(spendingTxBytes)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterBloomMatch NewTxFromBytes failure: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f := bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr := "b4749f017444b051c44dfd2720e88f314ff94f3dd6d56d40ef65854fcd7fff6b"
|
2016-08-08 19:38:16 +02:00
|
|
|
hash, err := chainhash.NewHashFromStr(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch NewHashFromStr failed: %v\n", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
f.AddHash(hash)
|
2014-07-09 04:59:33 +02:00
|
|
|
if !f.MatchTxAndUpdate(tx) {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch didn't match hash %s", inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "6bff7fcd4f8565ef406dd5d63d4ff94f318fe82027fd4dc451b04474019f74b4"
|
2016-08-08 19:38:16 +02:00
|
|
|
hashBytes, err := hex.DecodeString(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterBloomMatch DecodeString failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
f.Add(hashBytes)
|
2014-07-09 04:59:33 +02:00
|
|
|
if !f.MatchTxAndUpdate(tx) {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch didn't match hash %s", inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "30450220070aca44506c5cef3a16ed519d7c3c39f8aab192c4e1c90d065" +
|
|
|
|
"f37b8a4af6141022100a8e160b856c2d43d27d8fba71e5aef6405b8643" +
|
|
|
|
"ac4cb7cb3c462aced7f14711a01"
|
2016-08-08 19:38:16 +02:00
|
|
|
hashBytes, err = hex.DecodeString(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterBloomMatch DecodeString failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
f.Add(hashBytes)
|
2014-07-09 04:59:33 +02:00
|
|
|
if !f.MatchTxAndUpdate(tx) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch didn't match input signature %s", inputStr)
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "046d11fee51b0e60666d5049a9101a72741df480b96ee26488a4d3466b95" +
|
|
|
|
"c9a40ac5eeef87e10a5cd336c19a84565f80fa6c547957b7700ff4dfbdefe" +
|
|
|
|
"76036c339"
|
2016-08-08 19:38:16 +02:00
|
|
|
hashBytes, err = hex.DecodeString(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterBloomMatch DecodeString failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
f.Add(hashBytes)
|
2014-07-09 04:59:33 +02:00
|
|
|
if !f.MatchTxAndUpdate(tx) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch didn't match input pubkey %s", inputStr)
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "04943fdd508053c75000106d3bc6e2754dbcff19"
|
2016-08-08 19:38:16 +02:00
|
|
|
hashBytes, err = hex.DecodeString(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterBloomMatch DecodeString failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
f.Add(hashBytes)
|
2014-07-09 04:59:33 +02:00
|
|
|
if !f.MatchTxAndUpdate(tx) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch didn't match output address %s", inputStr)
|
|
|
|
}
|
2014-07-09 04:59:33 +02:00
|
|
|
if !f.MatchTxAndUpdate(spendingTx) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch spendingTx didn't match output address %s", inputStr)
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "a266436d2965547608b9e15d9032a7b9d64fa431"
|
2016-08-08 19:38:16 +02:00
|
|
|
hashBytes, err = hex.DecodeString(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterBloomMatch DecodeString failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
f.Add(hashBytes)
|
2014-07-09 04:59:33 +02:00
|
|
|
if !f.MatchTxAndUpdate(tx) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch didn't match output address %s", inputStr)
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "90c122d70786e899529d71dbeba91ba216982fb6ba58f3bdaab65e73b7e9260b"
|
2016-08-08 19:38:16 +02:00
|
|
|
hash, err = chainhash.NewHashFromStr(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch NewHashFromStr failed: %v\n", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
outpoint := wire.NewOutPoint(hash, 0)
|
2014-07-01 02:51:45 +02:00
|
|
|
f.AddOutPoint(outpoint)
|
2014-07-09 04:59:33 +02:00
|
|
|
if !f.MatchTxAndUpdate(tx) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch didn't match outpoint %s", inputStr)
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "00000009e784f32f62ef849763d4f45b98e07ba658647343b915ff832b110436"
|
2016-08-08 19:38:16 +02:00
|
|
|
hash, err = chainhash.NewHashFromStr(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch NewHashFromStr failed: %v\n", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
f.AddHash(hash)
|
2014-07-09 04:59:33 +02:00
|
|
|
if f.MatchTxAndUpdate(tx) {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch matched hash %s", inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "0000006d2965547608b9e15d9032a7b9d64fa431"
|
2016-08-08 19:38:16 +02:00
|
|
|
hashBytes, err = hex.DecodeString(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterBloomMatch DecodeString failed: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
f.Add(hashBytes)
|
2014-07-09 04:59:33 +02:00
|
|
|
if f.MatchTxAndUpdate(tx) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch matched address %s", inputStr)
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "90c122d70786e899529d71dbeba91ba216982fb6ba58f3bdaab65e73b7e9260b"
|
2016-08-08 19:38:16 +02:00
|
|
|
hash, err = chainhash.NewHashFromStr(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch NewHashFromStr failed: %v\n", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
outpoint = wire.NewOutPoint(hash, 1)
|
2014-07-01 02:51:45 +02:00
|
|
|
f.AddOutPoint(outpoint)
|
2014-07-09 04:59:33 +02:00
|
|
|
if f.MatchTxAndUpdate(tx) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch matched outpoint %s", inputStr)
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:48:38 +01:00
|
|
|
f = bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-07-01 02:51:45 +02:00
|
|
|
inputStr = "000000d70786e899529d71dbeba91ba216982fb6ba58f3bdaab65e73b7e9260b"
|
2016-08-08 19:38:16 +02:00
|
|
|
hash, err = chainhash.NewHashFromStr(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch NewHashFromStr failed: %v\n", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
outpoint = wire.NewOutPoint(hash, 0)
|
2014-07-01 02:51:45 +02:00
|
|
|
f.AddOutPoint(outpoint)
|
2014-07-09 04:59:33 +02:00
|
|
|
if f.MatchTxAndUpdate(tx) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterBloomMatch matched outpoint %s", inputStr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFilterInsertUpdateNone(t *testing.T) {
|
2015-02-05 21:48:38 +01:00
|
|
|
f := bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateNone)
|
2014-07-01 02:51:45 +02:00
|
|
|
|
|
|
|
// Add the generation pubkey
|
|
|
|
inputStr := "04eaafc2314def4ca98ac970241bcab022b9c1e1f4ea423a20f134c" +
|
|
|
|
"876f2c01ec0f0dd5b2e86e7168cefe0d81113c3807420ce13ad1357231a" +
|
|
|
|
"2252247d97a46a91"
|
|
|
|
inputBytes, err := hex.DecodeString(inputStr)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterInsertUpdateNone DecodeString failed: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
f.Add(inputBytes)
|
|
|
|
|
|
|
|
// Add the output address for the 4th transaction
|
|
|
|
inputStr = "b6efd80d99179f4f4ff6f4dd0a007d018c385d21"
|
|
|
|
inputBytes, err = hex.DecodeString(inputStr)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("TestFilterInsertUpdateNone DecodeString failed: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
f.Add(inputBytes)
|
|
|
|
|
|
|
|
inputStr = "147caa76786596590baa4e98f5d9f48b86c7765e489f7a6ff3360fe5c674360b"
|
2016-08-08 19:38:16 +02:00
|
|
|
hash, err := chainhash.NewHashFromStr(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterInsertUpdateNone NewHashFromStr failed: %v", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
outpoint := wire.NewOutPoint(hash, 0)
|
2014-07-01 02:51:45 +02:00
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
if f.MatchesOutPoint(outpoint) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterInsertUpdateNone matched outpoint %s", inputStr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
inputStr = "02981fa052f0481dbc5868f4fc2166035a10f27a03cfd2de67326471df5bc041"
|
2016-08-08 19:38:16 +02:00
|
|
|
hash, err = chainhash.NewHashFromStr(inputStr)
|
2014-07-01 02:51:45 +02:00
|
|
|
if err != nil {
|
2016-08-08 19:38:16 +02:00
|
|
|
t.Errorf("TestFilterInsertUpdateNone NewHashFromStr failed: %v", err)
|
2014-07-01 02:51:45 +02:00
|
|
|
return
|
|
|
|
}
|
2016-08-08 19:38:16 +02:00
|
|
|
outpoint = wire.NewOutPoint(hash, 0)
|
2014-07-01 02:51:45 +02:00
|
|
|
|
2014-07-09 04:59:33 +02:00
|
|
|
if f.MatchesOutPoint(outpoint) {
|
2014-07-01 02:51:45 +02:00
|
|
|
t.Errorf("TestFilterInsertUpdateNone matched outpoint %s", inputStr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-30 04:02:52 +02:00
|
|
|
func TestFilterReload(t *testing.T) {
|
2015-02-05 21:48:38 +01:00
|
|
|
f := bloom.NewFilter(10, 0, 0.000001, wire.BloomUpdateAll)
|
2014-08-30 04:02:52 +02:00
|
|
|
|
|
|
|
bFilter := bloom.LoadFilter(f.MsgFilterLoad())
|
|
|
|
if bFilter.MsgFilterLoad() == nil {
|
|
|
|
t.Errorf("TestFilterReload LoadFilter test failed")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
bFilter.Reload(nil)
|
|
|
|
|
|
|
|
if bFilter.MsgFilterLoad() != nil {
|
|
|
|
t.Errorf("TestFilterReload Reload test failed")
|
|
|
|
}
|
|
|
|
}
|