Skip to content

Commit 7c3a449

Browse files
authored
chore!: remove excess blobTx file and add more test coverage (#99)
I forgot to remove the blobTx file when moving it to it's own folder. This PR deletes it and tidies up the imports. I also added a few tests to the marshalling/unmarshalling which weren't previously covered
1 parent d406386 commit 7c3a449

12 files changed

+312
-111
lines changed

builder.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ func NewBuilder(maxSquareSize int, subtreeRootThreshold int, txs ...[]byte) (*Bu
5050
PfbCounter: share.NewCompactShareCounter(),
5151
}
5252
seenFirstBlobTx := false
53-
for idx, tx := range txs {
54-
blobTx, isBlobTx, err := share.UnmarshalBlobTx(tx)
53+
for idx, txBytes := range txs {
54+
blobTx, isBlobTx, err := tx.UnmarshalBlobTx(txBytes)
5555
if err != nil && isBlobTx {
5656
return nil, fmt.Errorf("unmarshalling blob tx at index %d: %w", idx, err)
5757
}
@@ -64,7 +64,7 @@ func NewBuilder(maxSquareSize int, subtreeRootThreshold int, txs ...[]byte) (*Bu
6464
if seenFirstBlobTx {
6565
return nil, fmt.Errorf("normal tx at index %d can not be appended after blob tx", idx)
6666
}
67-
if !builder.AppendTx(tx) {
67+
if !builder.AppendTx(txBytes) {
6868
return nil, fmt.Errorf("not enough space to append tx at index %d", idx)
6969
}
7070
}
@@ -88,7 +88,7 @@ func (b *Builder) AppendTx(tx []byte) bool {
8888

8989
// AppendBlobTx attempts to allocate the blob transaction to the square. It returns false if there is not
9090
// enough space in the square to fit the transaction.
91-
func (b *Builder) AppendBlobTx(blobTx *share.BlobTx) bool {
91+
func (b *Builder) AppendBlobTx(blobTx *tx.BlobTx) bool {
9292
iw := tx.NewIndexWrapper(blobTx.Tx, worstCaseShareIndexes(len(blobTx.Blobs))...)
9393
size := proto.Size(iw)
9494
pfbShareDiff := b.PfbCounter.Add(size)

builder_test.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func TestBuilderRejectsBlobTransactions(t *testing.T) {
8686
require.NoError(t, err)
8787
txs := generateBlobTxsWithNamespaces(ns1.Repeat(len(tc.blobSize)), [][]int{tc.blobSize})
8888
require.Len(t, txs, 1)
89-
blobTx, isBlobTx, err := share.UnmarshalBlobTx(txs[0])
89+
blobTx, isBlobTx, err := tx.UnmarshalBlobTx(txs[0])
9090
require.NoError(t, err)
9191
require.True(t, isBlobTx)
9292
require.Equal(t, tc.added, builder.AppendBlobTx(blobTx))
@@ -119,11 +119,11 @@ func TestBuilderFindTxShareRange(t *testing.T) {
119119
size := dataSquare.Size() * dataSquare.Size()
120120

121121
var lastEnd int
122-
for idx, tx := range blockTxs {
123-
blobTx, isBlobTx, err := share.UnmarshalBlobTx(tx)
122+
for idx, txBytes := range blockTxs {
123+
blobTx, isBlobTx, err := tx.UnmarshalBlobTx(txBytes)
124124
if isBlobTx {
125125
require.NoError(t, err)
126-
tx = blobTx.Tx
126+
txBytes = blobTx.Tx
127127
}
128128
shareRange, err := builder.FindTxShareRange(idx)
129129
require.NoError(t, err)
@@ -138,7 +138,7 @@ func TestBuilderFindTxShareRange(t *testing.T) {
138138
txShares := dataSquare[shareRange.Start : shareRange.End+1]
139139
parsedShares, err := rawData(txShares)
140140
require.NoError(t, err)
141-
require.True(t, bytes.Contains(parsedShares, tx))
141+
require.True(t, bytes.Contains(parsedShares, txBytes))
142142
lastEnd = shareRange.End
143143
}
144144
}
@@ -294,8 +294,8 @@ func TestSquareBlobPostions(t *testing.T) {
294294
t.Run(fmt.Sprintf("case%d", i), func(t *testing.T) {
295295
builder, err := square.NewBuilder(tt.squareSize, defaultSubtreeRootThreshold)
296296
require.NoError(t, err)
297-
for _, tx := range tt.blobTxs {
298-
blobTx, isBlobTx, err := share.UnmarshalBlobTx(tx)
297+
for _, txBytes := range tt.blobTxs {
298+
blobTx, isBlobTx, err := tx.UnmarshalBlobTx(txBytes)
299299
require.NoError(t, err)
300300
require.True(t, isBlobTx)
301301
_ = builder.AppendBlobTx(blobTx)

inclusion/commitment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func MerkleMountainRangeSizes(totalSize, maxTreeSize uint64) ([]uint64, error) {
107107
return treeSizes, nil
108108
}
109109

110-
// SplitBlobs splits the provided blobs into shares.
110+
// splitBlobs splits the provided blobs into shares.
111111
func splitBlobs(blobs ...*sh.Blob) ([]sh.Share, error) {
112112
writer := sh.NewSparseShareSplitter()
113113
for _, blob := range blobs {

internal/test/factory.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"math/rand"
88

99
"github.com/celestiaorg/go-square/v2/share"
10+
"github.com/celestiaorg/go-square/v2/tx"
1011
)
1112

1213
var DefaultTestNamespace = share.MustNewV0Namespace([]byte("test"))
@@ -52,7 +53,7 @@ func GenerateBlobTxWithNamespace(namespaces []share.Namespace, blobSizes []int,
5253
panic(err)
5354
}
5455
}
55-
blobTx, err := share.MarshalBlobTx(MockPFB(toUint32(blobSizes)), blobs...)
56+
blobTx, err := tx.MarshalBlobTx(MockPFB(toUint32(blobSizes)), blobs...)
5657
if err != nil {
5758
panic(err)
5859
}

share/blob.go

+15-10
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,18 @@ func UnmarshalBlob(blob []byte) (*Blob, error) {
6262
return NewBlobFromProto(pb)
6363
}
6464

65+
// Marshal marshals the blob to the proto encoded bytes
66+
func (b *Blob) Marshal() ([]byte, error) {
67+
pb := &v1.BlobProto{
68+
NamespaceId: b.namespace.ID(),
69+
NamespaceVersion: uint32(b.namespace.Version()),
70+
ShareVersion: uint32(b.shareVersion),
71+
Data: b.data,
72+
Signer: b.signer,
73+
}
74+
return proto.Marshal(pb)
75+
}
76+
6577
// NewBlobFromProto creates a new blob from the proto generated type
6678
func NewBlobFromProto(pb *v1.BlobProto) (*Blob, error) {
6779
if pb.NamespaceVersion > NamespaceVersionMax {
@@ -102,16 +114,9 @@ func (b *Blob) Data() []byte {
102114
return b.data
103115
}
104116

105-
// Marshal marshals the blob to the proto encoded bytes
106-
func (b *Blob) Marshal() ([]byte, error) {
107-
pb := &v1.BlobProto{
108-
NamespaceId: b.namespace.ID(),
109-
NamespaceVersion: uint32(b.namespace.Version()),
110-
ShareVersion: uint32(b.shareVersion),
111-
Data: b.data,
112-
Signer: b.signer,
113-
}
114-
return proto.Marshal(pb)
117+
// DataLen returns the length of the data of the blob
118+
func (b *Blob) DataLen() int {
119+
return len(b.data)
115120
}
116121

117122
// Compare is used to order two blobs based on their namespace

share/blob_test.go

+142
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
package share
2+
3+
import (
4+
"bytes"
5+
"crypto/rand"
6+
"testing"
7+
8+
v1 "github.com/celestiaorg/go-square/v2/proto/blob/v1"
9+
"github.com/stretchr/testify/require"
10+
)
11+
12+
func TestProtoEncoding(t *testing.T) {
13+
signer := make([]byte, 20)
14+
_, err := rand.Read(signer)
15+
require.NoError(t, err)
16+
blob, err := NewBlob(RandomNamespace(), []byte{1, 2, 3, 4, 5}, 1, signer)
17+
require.NoError(t, err)
18+
19+
blobBytes, err := blob.Marshal()
20+
require.NoError(t, err)
21+
22+
newBlob, err := UnmarshalBlob(blobBytes)
23+
require.NoError(t, err)
24+
25+
require.Equal(t, blob, newBlob)
26+
}
27+
28+
func TestBlobConstructor(t *testing.T) {
29+
signer := make([]byte, 20)
30+
_, err := rand.Read(signer)
31+
require.NoError(t, err)
32+
33+
ns := RandomNamespace()
34+
data := []byte{1, 2, 3, 4, 5}
35+
36+
// test all invalid cases
37+
_, err = NewBlob(ns, data, 0, signer)
38+
require.Error(t, err)
39+
require.Contains(t, err.Error(), "share version 0 does not support signer")
40+
41+
_, err = NewBlob(ns, nil, 0, nil)
42+
require.Error(t, err)
43+
require.Contains(t, err.Error(), "data can not be empty")
44+
45+
_, err = NewBlob(ns, data, 1, nil)
46+
require.Error(t, err)
47+
require.Contains(t, err.Error(), "share version 1 requires signer of size")
48+
49+
_, err = NewBlob(ns, data, 128, nil)
50+
require.Error(t, err)
51+
require.Contains(t, err.Error(), "share version can not be greater than MaxShareVersion")
52+
}
53+
54+
func TestNewBlobFromProto(t *testing.T) {
55+
namespace := RandomNamespace()
56+
testCases := []struct {
57+
name string
58+
proto *v1.BlobProto
59+
expectedErr string
60+
}{
61+
{
62+
name: "valid blob",
63+
proto: &v1.BlobProto{
64+
NamespaceId: namespace.ID(),
65+
NamespaceVersion: uint32(namespace.Version()),
66+
ShareVersion: 0,
67+
Data: []byte{1, 2, 3, 4, 5},
68+
},
69+
expectedErr: "",
70+
},
71+
{
72+
name: "invalid namespace version",
73+
proto: &v1.BlobProto{
74+
NamespaceId: namespace.ID(),
75+
NamespaceVersion: 256,
76+
ShareVersion: 0,
77+
Data: []byte{1, 2, 3, 4, 5},
78+
},
79+
expectedErr: "namespace version can not be greater than MaxNamespaceVersion",
80+
},
81+
{
82+
name: "empty data",
83+
proto: &v1.BlobProto{
84+
NamespaceId: namespace.ID(),
85+
NamespaceVersion: 0,
86+
ShareVersion: 0,
87+
Data: []byte{},
88+
},
89+
expectedErr: "blob data can not be empty",
90+
},
91+
{
92+
name: "invalid namespace ID length",
93+
proto: &v1.BlobProto{
94+
NamespaceId: []byte{1, 2, 3},
95+
NamespaceVersion: 0,
96+
ShareVersion: 0,
97+
Data: []byte{1, 2, 3, 4, 5},
98+
},
99+
expectedErr: "invalid namespace",
100+
},
101+
{
102+
name: "valid blob with signer",
103+
proto: &v1.BlobProto{
104+
NamespaceId: namespace.ID(),
105+
NamespaceVersion: 0,
106+
ShareVersion: 1,
107+
Data: []byte{1, 2, 3, 4, 5},
108+
Signer: bytes.Repeat([]byte{1}, SignerSize),
109+
},
110+
expectedErr: "",
111+
},
112+
{
113+
name: "invalid signer length",
114+
proto: &v1.BlobProto{
115+
NamespaceId: namespace.ID(),
116+
NamespaceVersion: 0,
117+
ShareVersion: 1,
118+
Data: []byte{1, 2, 3, 4, 5},
119+
Signer: []byte{1, 2, 3},
120+
},
121+
expectedErr: "share version 1 requires signer of size",
122+
},
123+
}
124+
125+
for _, tc := range testCases {
126+
t.Run(tc.name, func(t *testing.T) {
127+
blob, err := NewBlobFromProto(tc.proto)
128+
if tc.expectedErr != "" {
129+
require.Error(t, err)
130+
require.Contains(t, err.Error(), tc.expectedErr)
131+
} else {
132+
require.NoError(t, err)
133+
require.NotNil(t, blob)
134+
require.Equal(t, tc.proto.NamespaceId, blob.Namespace().ID())
135+
require.Equal(t, uint8(tc.proto.NamespaceVersion), blob.Namespace().Version())
136+
require.Equal(t, uint8(tc.proto.ShareVersion), blob.ShareVersion())
137+
require.Equal(t, tc.proto.Data, blob.Data())
138+
require.Equal(t, tc.proto.Signer, blob.Signer())
139+
}
140+
})
141+
}
142+
}

share/blob_tx.go

-78
This file was deleted.

0 commit comments

Comments
 (0)