-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathservice_test.go
215 lines (180 loc) · 6.38 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
package service
import (
"context"
"encoding/json"
"fmt"
"strconv"
"testing"
"github.com/attestantio/go-eth2-client/spec/deneb"
"github.com/attestantio/go-eth2-client/spec/phase0"
"github.com/base-org/blob-archiver/common/beacon/beacontest"
"github.com/base-org/blob-archiver/common/blobtest"
"github.com/base-org/blob-archiver/common/storage"
"github.com/ethereum-optimism/optimism/op-service/testlog"
"github.com/ethereum/go-ethereum/log"
"github.com/stretchr/testify/require"
)
var (
blockOne = strconv.FormatUint(blobtest.StartSlot+1, 10)
)
type response struct {
data storage.BlobSidecars
err error
statusCode int
}
type stubBlobSidecarClient struct {
data map[string]response
}
// setResponses configures the stub to return the same data as the beacon client for all FetchSidecars invocations
func (s *stubBlobSidecarClient) setResponses(sbc *beacontest.StubBeaconClient) {
for k, v := range sbc.Blobs {
s.data[k] = response{
data: storage.BlobSidecars{Data: v},
err: nil,
statusCode: 200,
}
}
}
// setResponse overrides a single FetchSidecars response
func (s *stubBlobSidecarClient) setResponse(id string, statusCode int, data storage.BlobSidecars, err error) {
s.data[id] = response{
data: data,
err: err,
statusCode: statusCode,
}
}
func (s *stubBlobSidecarClient) FetchSidecars(id string, format Format) (int, storage.BlobSidecars, error) {
response, ok := s.data[id]
if !ok {
return 0, storage.BlobSidecars{}, fmt.Errorf("not found")
}
return response.statusCode, response.data, response.err
}
func setup(t *testing.T) (*ValidatorService, *beacontest.StubBeaconClient, *stubBlobSidecarClient, *stubBlobSidecarClient) {
l := testlog.Logger(t, log.LvlInfo)
headerClient := beacontest.NewDefaultStubBeaconClient(t)
cancel := func(error) {}
beacon := &stubBlobSidecarClient{
data: make(map[string]response),
}
blob := &stubBlobSidecarClient{
data: make(map[string]response),
}
numBlocks := 600
return NewValidator(l, headerClient, beacon, blob, cancel, numBlocks), headerClient, beacon, blob
}
func TestValidatorService_OnFetchError(t *testing.T) {
validator, _, _, _ := setup(t)
result := validator.checkBlobs(context.Background(), phase0.Slot(blobtest.StartSlot), phase0.Slot(blobtest.StartSlot+1))
// Expect an error for both SSZ and JSON
startSlot := strconv.FormatUint(blobtest.StartSlot, 10)
endSlot := strconv.FormatUint(blobtest.StartSlot+1, 10)
require.Equal(t, result.ErrorFetching, []string{startSlot, startSlot, endSlot, endSlot})
require.Empty(t, result.MismatchedStatus)
require.Empty(t, result.MismatchedData)
}
func TestValidatorService_AllMatch(t *testing.T) {
validator, headers, beacon, blob := setup(t)
// Set the beacon + blob APIs to return the same data
beacon.setResponses(headers)
blob.setResponses(headers)
result := validator.checkBlobs(context.Background(), phase0.Slot(blobtest.StartSlot), phase0.Slot(blobtest.EndSlot))
require.Empty(t, result.MismatchedStatus)
require.Empty(t, result.MismatchedData)
require.Empty(t, result.ErrorFetching)
}
func TestValidatorService_MismatchedStatus(t *testing.T) {
validator, headers, beacon, blob := setup(t)
// Set the blob API to return a 404 for blob=1
beacon.setResponses(headers)
blob.setResponses(headers)
blob.setResponse(blockOne, 404, storage.BlobSidecars{}, nil)
result := validator.checkBlobs(context.Background(), phase0.Slot(blobtest.StartSlot), phase0.Slot(blobtest.EndSlot))
require.Empty(t, result.MismatchedData)
require.Empty(t, result.ErrorFetching)
require.Len(t, result.MismatchedStatus, 2)
// The first mismatch is the JSON format, the second is the SSZ format
require.Equal(t, result.MismatchedStatus, []string{blockOne, blockOne})
}
func TestValidatorService_CompletelyDifferentBlobData(t *testing.T) {
validator, headers, beacon, blob := setup(t)
// Modify the blobs for block 1 to be new random data
beacon.setResponses(headers)
blob.setResponses(headers)
blob.setResponse(blockOne, 200, storage.BlobSidecars{
Data: blobtest.NewBlobSidecars(t, 1),
}, nil)
result := validator.checkBlobs(context.Background(), phase0.Slot(blobtest.StartSlot), phase0.Slot(blobtest.EndSlot))
require.Empty(t, result.MismatchedStatus)
require.Empty(t, result.ErrorFetching)
require.Len(t, result.MismatchedData, 2)
// The first mismatch is the JSON format, the second is the SSZ format
require.Equal(t, result.MismatchedData, []string{blockOne, blockOne})
}
func TestValidatorService_MistmatchedBlobFields(t *testing.T) {
tests := []struct {
name string
modification func(i *[]*deneb.BlobSidecar)
}{
{
name: "mismatched index",
modification: func(i *[]*deneb.BlobSidecar) {
(*i)[0].Index = deneb.BlobIndex(9)
},
},
{
name: "mismatched blob",
modification: func(i *[]*deneb.BlobSidecar) {
(*i)[0].Blob = deneb.Blob{0, 0, 0}
},
},
{
name: "mismatched kzg commitment",
modification: func(i *[]*deneb.BlobSidecar) {
(*i)[0].KZGCommitment = deneb.KZGCommitment{0, 0, 0}
},
},
{
name: "mismatched kzg proof",
modification: func(i *[]*deneb.BlobSidecar) {
(*i)[0].KZGProof = deneb.KZGProof{0, 0, 0}
},
},
{
name: "mismatched signed block header",
modification: func(i *[]*deneb.BlobSidecar) {
(*i)[0].SignedBlockHeader = nil
},
},
{
name: "mismatched kzg commitment inclusion proof",
modification: func(i *[]*deneb.BlobSidecar) {
(*i)[0].KZGCommitmentInclusionProof = deneb.KZGCommitmentInclusionProof{{1, 2, 9}}
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
validator, headers, beacon, blob := setup(t)
// Modify the blobs for block 1 to be new random data
beacon.setResponses(headers)
blob.setResponses(headers)
// Deep copy the blob data
d, err := json.Marshal(headers.Blobs[blockOne])
require.NoError(t, err)
var c []*deneb.BlobSidecar
err = json.Unmarshal(d, &c)
require.NoError(t, err)
test.modification(&c)
blob.setResponse(blockOne, 200, storage.BlobSidecars{
Data: c,
}, nil)
result := validator.checkBlobs(context.Background(), phase0.Slot(blobtest.StartSlot), phase0.Slot(blobtest.EndSlot))
require.Empty(t, result.MismatchedStatus)
require.Empty(t, result.ErrorFetching)
require.Len(t, result.MismatchedData, 2)
// The first mismatch is the JSON format, the second is the SSZ format
require.Equal(t, result.MismatchedData, []string{blockOne, blockOne})
})
}
}