-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathfiltercontrol_test.go
52 lines (45 loc) · 1.31 KB
/
filtercontrol_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package chainsync
import (
"testing"
"github.com/btcsuite/btcd/chaincfg"
"github.com/btcsuite/btcd/chaincfg/chainhash"
"github.com/btcsuite/btcd/wire"
)
func TestControlCFHeader(t *testing.T) {
t.Parallel()
// We'll modify our backing list of checkpoints for this test.
height := uint32(999)
header := hashFromStr(
"4a242283a406a7c089f671bb8df7671e5d5e9ba577cea1047d30a7f4919df193",
)
filterHeaderCheckpoints = map[wire.BitcoinNet]map[uint32]*chainhash.Hash{
chaincfg.MainNetParams.Net: {
height: header,
},
}
// Expect the control at height to succeed.
err := ControlCFHeader(
chaincfg.MainNetParams, wire.GCSFilterRegular, height, header,
)
if err != nil {
t.Fatalf("error checking height: %v", err)
}
// Pass an invalid header, this should return an error.
header = hashFromStr(
"000000000006a7c089f671bb8df7671e5d5e9ba577cea1047d30a7f4919df193",
)
err = ControlCFHeader(
chaincfg.MainNetParams, wire.GCSFilterRegular, height, header,
)
if err != ErrCheckpointMismatch {
t.Fatalf("expected ErrCheckpointMismatch, got %v", err)
}
// Finally, control an unknown height. This should also pass since we
// don't have the checkpoint stored.
err = ControlCFHeader(
chaincfg.MainNetParams, wire.GCSFilterRegular, 99, header,
)
if err != nil {
t.Fatalf("error checking height: %v", err)
}
}