-
Notifications
You must be signed in to change notification settings - Fork 17
/
builder_test.go
373 lines (349 loc) · 11.1 KB
/
builder_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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
package square_test
import (
"bytes"
_ "embed"
"encoding/json"
"fmt"
"math/rand"
"testing"
"github.com/celestiaorg/go-square/v2"
"github.com/celestiaorg/go-square/v2/internal/test"
"github.com/celestiaorg/go-square/v2/share"
"github.com/celestiaorg/go-square/v2/tx"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestBuilderSquareSizeEstimation(t *testing.T) {
type test struct {
name string
normalTxs int
pfbCount, pfbSize int
expectedSquareSize int
}
tests := []test{
{"empty block", 0, 0, 0, 1},
{"one normal tx", 1, 0, 0, 1},
{"one small pfb small block", 0, 1, 100, 2},
{"mixed small block", 10, 12, 500, 8},
{"small block 2", 0, 12, 1000, 8},
{"mixed medium block 2", 10, 20, 10000, 32},
{"one large pfb large block", 0, 1, 1000000, 64},
{"one hundred large pfb large block", 0, 100, 100000, 64},
{"one hundred large pfb medium block", 100, 100, 100000, 64},
{"mixed transactions large block", 100, 100, 100000, 64},
{"mixed transactions large block 2", 1000, 1000, 10000, 64},
{"mostly transactions large block", 10000, 1000, 100, 64},
{"only small pfb large block", 0, 10000, 1, 64},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
txs := generateMixedTxs(tt.normalTxs, tt.pfbCount, 1, tt.pfbSize)
square, _, err := square.Build(txs, 64, defaultSubtreeRootThreshold)
require.NoError(t, err)
require.EqualValues(t, tt.expectedSquareSize, square.Size())
})
}
}
func TestBuilderRejectsTransactions(t *testing.T) {
builder, err := square.NewBuilder(2, 64) // 2 x 2 square
require.NoError(t, err)
require.False(t, builder.AppendTx(newTx(share.AvailableBytesFromCompactShares(4)+1)))
require.True(t, builder.AppendTx(newTx(share.AvailableBytesFromCompactShares(4))))
require.False(t, builder.AppendTx(newTx(1)))
}
func TestBuilderRejectsBlobTransactions(t *testing.T) {
ns1 := share.MustNewV0Namespace(bytes.Repeat([]byte{1}, share.NamespaceVersionZeroIDSize))
testCases := []struct {
blobSize []int
added bool
}{
{
blobSize: []int{share.AvailableBytesFromSparseShares(3) + 1},
added: false,
},
{
blobSize: []int{share.AvailableBytesFromSparseShares(3)},
added: true,
},
{
blobSize: []int{share.AvailableBytesFromSparseShares(2) + 1, share.AvailableBytesFromSparseShares(1)},
added: false,
},
{
blobSize: []int{share.AvailableBytesFromSparseShares(1), share.AvailableBytesFromSparseShares(1)},
added: true,
},
}
for idx, tc := range testCases {
t.Run(fmt.Sprintf("case%d", idx), func(t *testing.T) {
builder, err := square.NewBuilder(2, 64)
require.NoError(t, err)
txs := generateBlobTxsWithNamespaces(ns1.Repeat(len(tc.blobSize)), [][]int{tc.blobSize})
require.Len(t, txs, 1)
blobTx, isBlobTx, err := tx.UnmarshalBlobTx(txs[0])
require.NoError(t, err)
require.True(t, isBlobTx)
require.Equal(t, tc.added, builder.AppendBlobTx(blobTx))
})
}
}
func TestBuilderInvalidConstructor(t *testing.T) {
_, err := square.NewBuilder(-4, 64)
require.Error(t, err)
_, err = square.NewBuilder(0, 64)
require.Error(t, err)
_, err = square.NewBuilder(13, 64)
require.Error(t, err)
}
func newTx(len int) []byte {
return bytes.Repeat([]byte{0}, len-test.DelimLen(uint64(len)))
}
func TestBuilderFindTxShareRange(t *testing.T) {
blockTxs := generateOrderedTxs(5, 5, 1000, 10)
require.Len(t, blockTxs, 10)
builder, err := square.NewBuilder(128, 64, blockTxs...)
require.NoError(t, err)
dataSquare, err := builder.Export()
require.NoError(t, err)
size := dataSquare.Size() * dataSquare.Size()
var lastEnd int
for idx, txBytes := range blockTxs {
blobTx, isBlobTx, err := tx.UnmarshalBlobTx(txBytes)
if isBlobTx {
require.NoError(t, err)
txBytes = blobTx.Tx
}
shareRange, err := builder.FindTxShareRange(idx)
require.NoError(t, err)
if idx == 5 {
// normal txs and PFBs use a different namespace so there
// can't be any overlap in the index
require.Greater(t, shareRange.Start, lastEnd-1)
} else {
require.GreaterOrEqual(t, shareRange.Start, lastEnd-1)
}
require.LessOrEqual(t, shareRange.End, size)
txShares := dataSquare[shareRange.Start : shareRange.End+1]
parsedShares, err := rawData(txShares)
require.NoError(t, err)
require.True(t, bytes.Contains(parsedShares, txBytes))
lastEnd = shareRange.End
}
}
func rawData(shares []share.Share) ([]byte, error) {
var data []byte
for _, share := range shares {
data = append(data, share.RawData()...)
}
return data, nil
}
// TestSquareBlobPositions ensures that the share commitment rules which dictate the padding
// between blobs is followed as well as the ordering of blobs by namespace.
func TestSquareBlobPostions(t *testing.T) {
ns1 := share.MustNewV0Namespace(bytes.Repeat([]byte{1}, share.NamespaceVersionZeroIDSize))
ns2 := share.MustNewV0Namespace(bytes.Repeat([]byte{2}, share.NamespaceVersionZeroIDSize))
ns3 := share.MustNewV0Namespace(bytes.Repeat([]byte{3}, share.NamespaceVersionZeroIDSize))
type testCase struct {
squareSize int
blobTxs [][]byte
expectedIndexes [][]uint32
}
tests := []testCase{
{
squareSize: 4,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1},
[][]int{{1}},
),
expectedIndexes: [][]uint32{{1}},
},
{
squareSize: 4,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns1},
test.Repeat([]int{100}, 2),
),
expectedIndexes: [][]uint32{{2}, {3}},
},
{
squareSize: 4,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns1, ns1, ns1, ns1, ns1, ns1, ns1, ns1},
test.Repeat([]int{100}, 9),
),
expectedIndexes: [][]uint32{{7}, {8}, {9}, {10}, {11}, {12}, {13}, {14}, {15}},
},
{
squareSize: 4,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns1, ns1},
[][]int{{10000}, {10000}, {1000000}},
),
expectedIndexes: [][]uint32{},
},
{
squareSize: 64,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns1, ns1},
[][]int{{1000}, {10000}, {10000}},
),
expectedIndexes: [][]uint32{{3}, {6}, {27}},
},
{
squareSize: 32,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns2, ns1, ns1},
[][]int{{100}, {100}, {100}},
),
expectedIndexes: [][]uint32{{5}, {3}, {4}},
},
{
squareSize: 16,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns2, ns1},
[][]int{{100}, {900}, {900}}, // 1, 2, 2 shares respectively
),
expectedIndexes: [][]uint32{{3}, {6}, {4}},
},
{
squareSize: 4,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns3, ns3, ns2},
[][]int{{100}, {1000, 1000}, {420}},
),
expectedIndexes: [][]uint32{{3}, {5, 8}, {4}},
},
{
// no blob txs should make it in the square
squareSize: 1,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns2, ns3},
[][]int{{1000}, {1000}, {1000}},
),
expectedIndexes: [][]uint32{},
},
{
// only two blob txs should make it in the square (after reordering)
squareSize: 4,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns3, ns2, ns1},
[][]int{{2000}, {2000}, {5000}},
),
expectedIndexes: [][]uint32{{7}, {2}},
},
{
squareSize: 4,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns3, ns3, ns2, ns1},
[][]int{{1800, 1000}, {22000}, {1800}},
),
// should be ns1 and {ns3, ns3} as ns2 is too large
expectedIndexes: [][]uint32{{6, 10}, {2}},
},
{
squareSize: 4,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns3, ns3, ns1, ns2, ns2},
[][]int{{100}, {1400, 900, 200, 200}, {420}},
),
expectedIndexes: [][]uint32{{3}, {7, 10, 4, 5}, {6}},
},
{
squareSize: 4,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns3, ns3, ns1, ns2, ns2},
[][]int{{100}, {900, 1400, 200, 200}, {420}},
),
expectedIndexes: [][]uint32{{3}, {7, 9, 4, 5}, {6}},
},
{
squareSize: 16,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns1},
[][]int{{100}, {share.AvailableBytesFromSparseShares(64)}},
),
// There should be one share padding between the two blobs
expectedIndexes: [][]uint32{{2}, {3}},
},
{
squareSize: 16,
blobTxs: generateBlobTxsWithNamespaces(
[]share.Namespace{ns1, ns1},
[][]int{{100}, {share.AvailableBytesFromSparseShares(64) + 1}},
),
// There should be one share padding between the two blobs
expectedIndexes: [][]uint32{{2}, {4}},
},
}
for i, tt := range tests {
t.Run(fmt.Sprintf("case%d", i), func(t *testing.T) {
builder, err := square.NewBuilder(tt.squareSize, defaultSubtreeRootThreshold)
require.NoError(t, err)
for _, txBytes := range tt.blobTxs {
blobTx, isBlobTx, err := tx.UnmarshalBlobTx(txBytes)
require.NoError(t, err)
require.True(t, isBlobTx)
_ = builder.AppendBlobTx(blobTx)
}
square, err := builder.Export()
require.NoError(t, err)
txs, err := share.ParseTxs(square)
require.NoError(t, err)
for j, rawTx := range txs {
wrappedPFB, isWrappedPFB := tx.UnmarshalIndexWrapper(rawTx)
assert.True(t, isWrappedPFB)
assert.Equal(t, tt.expectedIndexes[j], wrappedPFB.ShareIndexes, j)
}
})
}
}
func generateMixedTxs(normalTxCount, pfbCount, blobsPerPfb, blobSize int) [][]byte {
return shuffle(generateOrderedTxs(normalTxCount, pfbCount, blobsPerPfb, blobSize))
}
func generateOrderedTxs(normalTxCount, pfbCount, blobsPerPfb, blobSize int) [][]byte {
pfbTxs := test.GenerateBlobTxs(pfbCount, blobsPerPfb, blobSize)
normieTxs := test.GenerateTxs(200, 400, normalTxCount)
return append(normieTxs, pfbTxs...)
}
func shuffle(slice [][]byte) [][]byte {
for i := range slice {
j := rand.Intn(i + 1)
slice[i], slice[j] = slice[j], slice[i]
}
return slice
}
func generateBlobTxsWithNamespaces(namespaces []share.Namespace, blobSizes [][]int) [][]byte {
txs := make([][]byte, len(blobSizes))
counter := 0
for i := 0; i < len(txs); i++ {
n := namespaces[counter : counter+len(blobSizes[i])]
txs[i] = test.GenerateBlobTxWithNamespace(n, blobSizes[i], share.ShareVersionZero)
counter += len(blobSizes[i])
}
return txs
}
type block struct {
Txs [][]byte `protobuf:"bytes,1,rep,name=txs,proto3" json:"txs,omitempty"`
}
// TestBigBlock indirectly verifies that the worst case share padding
// calculation is computed using the rules on celestia-app v1.x. This test does
// so by using a big_block.json file generated via celestia-app v1.x and then
// verifies the share index of a particular blob. Note: if worst case share
// padding is modified then we expect this test to fail and need a new valid
// testdata/big_block.json.
//
// https://github.com/celestiaorg/go-square/issues/47
func TestBigBlock(t *testing.T) {
bigBlock := block{}
err := json.Unmarshal([]byte(bigBlockJSON), &bigBlock)
require.NoError(t, err)
builder, err := square.NewBuilder(defaultMaxSquareSize, defaultSubtreeRootThreshold, bigBlock.Txs...)
require.NoError(t, err)
assert.Len(t, builder.Blobs, 84)
assert.Len(t, builder.Pfbs, 25)
index, err := builder.FindBlobStartingIndex(0, 0)
require.NoError(t, err)
assert.Equal(t, 2234, index)
}
//go:embed "internal/testdata/big_block.json"
var bigBlockJSON string