forked from celestiaorg/celestia-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice_test.go
238 lines (211 loc) · 6.89 KB
/
service_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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package fraud
import (
"context"
"encoding/hex"
"testing"
"time"
"github.com/ipfs/go-datastore"
"github.com/ipfs/go-datastore/namespace"
"github.com/ipfs/go-datastore/sync"
pubsub "github.com/libp2p/go-libp2p-pubsub"
pubsubpb "github.com/libp2p/go-libp2p-pubsub/pb"
"github.com/libp2p/go-libp2p/core/host"
mocknet "github.com/libp2p/go-libp2p/p2p/net/mock"
"github.com/stretchr/testify/require"
"github.com/celestiaorg/celestia-node/header"
)
func TestService_Subscribe(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*1)
t.Cleanup(cancel)
s, _ := CreateTestService(t, false)
proof := newValidProof()
require.NoError(t, s.Start(ctx))
_, err := s.Subscribe(proof.Type())
require.NoError(t, err)
}
func TestService_SubscribeFails(t *testing.T) {
s, _ := CreateTestService(t, false)
proof := newValidProof()
_, err := s.Subscribe(proof.Type())
require.Error(t, err)
}
func TestService_BroadcastFails(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*1)
t.Cleanup(cancel)
s, _ := CreateTestService(t, false)
p := newValidProof()
require.Error(t, s.Broadcast(ctx, p))
}
func TestService_Broadcast(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*15)
t.Cleanup(cancel)
s, _ := CreateTestService(t, false)
proof := newValidProof()
require.NoError(t, s.Start(ctx))
subs, err := s.Subscribe(proof.Type())
require.NoError(t, err)
require.NoError(t, s.Broadcast(ctx, proof))
_, err = subs.Proof(ctx)
require.NoError(t, err)
require.NoError(t, nil)
}
func TestService_processIncoming(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
t.Cleanup(cancel)
// create mock network
net, err := mocknet.FullMeshLinked(2)
require.NoError(t, err)
var tests = []struct {
precondition func()
proof *mockProof
validationResult pubsub.ValidationResult
}{
{
nil,
newValidProof(),
pubsub.ValidationAccept,
},
{
nil,
newInvalidProof(),
pubsub.ValidationReject,
},
{
func() {
delete(defaultUnmarshalers, mockProofType)
},
newValidProof(),
pubsub.ValidationReject,
},
}
for _, test := range tests {
bin, err := test.proof.MarshalBinary()
require.NoError(t, err)
// create first fraud service that will broadcast incorrect Fraud Proof
service, _ := createTestServiceWithHost(ctx, t, net.Hosts()[0], false)
msg := &pubsub.Message{
Message: &pubsubpb.Message{
Data: bin,
},
ReceivedFrom: net.Hosts()[1].ID(),
}
if test.precondition != nil {
test.precondition()
}
require.NoError(t, service.Start(ctx))
res := service.processIncoming(ctx, test.proof.Type(), net.Hosts()[1].ID(), msg)
require.True(t, res == test.validationResult)
}
}
func TestService_ReGossiping(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
t.Cleanup(cancel)
// create mock network
net, err := mocknet.FullMeshLinked(3)
require.NoError(t, err)
// create first fraud service that will broadcast incorrect Fraud Proof
pserviceA, _ := createTestServiceWithHost(ctx, t, net.Hosts()[0], false)
require.NoError(t, err)
// create pub sub in order to listen for Fraud Proof
psB, err := pubsub.NewGossipSub(ctx, net.Hosts()[1], // -> B
pubsub.WithMessageSignaturePolicy(pubsub.StrictNoSign))
require.NoError(t, err)
// create second service that will receive and validate Fraud Proof
pserviceB := NewProofService(
psB,
net.Hosts()[1],
func(ctx context.Context, u uint64) (*header.ExtendedHeader, error) {
return &header.ExtendedHeader{}, nil
},
sync.MutexWrap(datastore.NewMapDatastore()),
false,
"private",
)
addrB := host.InfoFromHost(net.Hosts()[1]) // -> B
// create pub sub in order to listen for Fraud Proof
psC, err := pubsub.NewGossipSub(ctx, net.Hosts()[2], // -> C
pubsub.WithMessageSignaturePolicy(pubsub.StrictNoSign))
require.NoError(t, err)
pserviceC := NewProofService(
psC,
net.Hosts()[2],
func(ctx context.Context, u uint64) (*header.ExtendedHeader, error) {
return &header.ExtendedHeader{}, nil
},
sync.MutexWrap(datastore.NewMapDatastore()),
false,
"private",
)
// establish connections
// connect peers: A -> B -> C, so A and C are not connected to each other
require.NoError(t, net.Hosts()[0].Connect(ctx, *addrB)) // host[0] is A
require.NoError(t, net.Hosts()[2].Connect(ctx, *addrB)) // host[2] is C
befp := newValidProof()
bin, err := befp.MarshalBinary()
require.NoError(t, err)
require.NoError(t, pserviceA.Start(ctx))
require.NoError(t, pserviceB.Start(ctx))
require.NoError(t, pserviceC.Start(ctx))
subsA, err := pserviceA.Subscribe(mockProofType)
require.NoError(t, err)
defer subsA.Cancel()
subsB, err := pserviceB.Subscribe(mockProofType)
require.NoError(t, err)
defer subsB.Cancel()
subsC, err := pserviceC.Subscribe(mockProofType)
require.NoError(t, err)
defer subsC.Cancel()
// we cannot avoid sleep because it helps to avoid flakiness
time.Sleep(time.Millisecond * 100)
err = pserviceA.topics[mockProofType].Publish(ctx, bin, pubsub.WithReadiness(pubsub.MinTopicSize(1)))
require.NoError(t, err)
newCtx, cancel := context.WithTimeout(ctx, time.Millisecond*100)
t.Cleanup(cancel)
_, err = subsB.Proof(newCtx)
require.NoError(t, err)
_, err = subsC.Proof(ctx)
require.NoError(t, err)
// we cannot avoid sleep because it helps to avoid flakiness
time.Sleep(time.Millisecond * 100)
}
func TestService_Get(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
t.Cleanup(cancel)
proof := newValidProof()
bin, err := proof.MarshalBinary()
require.NoError(t, err)
pService, _ := CreateTestService(t, false)
// try to fetch proof
_, err = pService.Get(ctx, proof.Type())
// error is expected here because storage is empty
require.Error(t, err)
// create store
store := initStore(proof.Type(), pService.ds)
// add proof to storage
require.NoError(t, put(ctx, store, hex.EncodeToString(proof.HeaderHash()), bin))
// fetch proof
_, err = pService.Get(ctx, proof.Type())
require.NoError(t, err)
}
func TestService_Sync(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
t.Cleanup(cancel)
// create mock network
net, err := mocknet.FullMeshLinked(2)
require.NoError(t, err)
pserviceA, _ := createTestServiceWithHost(ctx, t, net.Hosts()[0], false)
pserviceB, _ := createTestServiceWithHost(ctx, t, net.Hosts()[1], true)
proof := newValidProof()
require.NoError(t, pserviceA.Start(ctx))
require.NoError(t, pserviceB.Start(ctx))
subs, err := pserviceB.Subscribe(mockProofType)
require.NoError(t, err)
bin, err := proof.MarshalBinary()
require.NoError(t, err)
store := namespace.Wrap(pserviceA.ds, makeKey(mockProofType))
require.NoError(t, put(ctx, store, string(proof.HeaderHash()), bin))
addrB := host.InfoFromHost(net.Hosts()[1])
require.NoError(t, net.Hosts()[0].Connect(ctx, *addrB))
_, err = subs.Proof(ctx)
require.NoError(t, err)
}