-
Notifications
You must be signed in to change notification settings - Fork 3
/
sign_test.go
112 lines (87 loc) · 2.41 KB
/
sign_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
package faucet
import (
"errors"
"testing"
"github.com/gnolang/gno/tm2/pkg/crypto"
"github.com/gnolang/gno/tm2/pkg/std"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestSignTransaction(t *testing.T) {
t.Parallel()
t.Run("valid signature", func(t *testing.T) {
t.Parallel()
var (
chainID = "gno"
accountNumber = uint64(1)
sequence = uint64(0)
capturedSignData []byte
signature = []byte("signature")
mockPubKey = &mockPubKey{
stringFn: func() string {
return "public key"
},
}
mockPrivKey = &mockPrivKey{
signFn: func(signData []byte) ([]byte, error) {
capturedSignData = signData
return signature, nil
},
pubKeyFn: func() crypto.PubKey {
return mockPubKey
},
}
)
// Create a dummy tx
tx := &std.Tx{}
expectedSignBytes, err := tx.GetSignBytes(chainID, accountNumber, sequence)
require.NoError(t, err)
cfg := signCfg{
chainID: chainID,
accountNumber: accountNumber,
sequence: sequence,
}
// Sign the transaction
require.NoError(t, signTransaction(tx, mockPrivKey, cfg))
// Make sure the correct bytes were signed
assert.Equal(t, expectedSignBytes, capturedSignData)
// Make sure the signature was appended
require.Len(t, tx.Signatures, 1)
// Make sure the signature is valid
sig := tx.Signatures[0]
assert.Equal(t, signature, sig.Signature)
assert.Equal(t, mockPubKey.String(), sig.PubKey.String())
})
t.Run("invalid signature", func(t *testing.T) {
t.Parallel()
var (
chainID = "gno"
accountNumber = uint64(1)
sequence = uint64(0)
capturedSignData []byte
signErr = errors.New("invalid sign data")
mockPrivKey = &mockPrivKey{
signFn: func(signData []byte) ([]byte, error) {
capturedSignData = signData
return nil, signErr
},
}
)
// Create a dummy tx
tx := &std.Tx{}
expectedSignBytes, err := tx.GetSignBytes(chainID, accountNumber, sequence)
require.NoError(t, err)
cfg := signCfg{
chainID: chainID,
accountNumber: accountNumber,
sequence: sequence,
}
// Sign the transaction
require.ErrorIs(t, signTransaction(tx, mockPrivKey, cfg), signErr)
// Make sure the appropriate bytes were attempted
// to be signed
assert.Equal(t, expectedSignBytes, capturedSignData)
// Make sure no signatures were appended
assert.Len(t, tx.Signatures, 0)
})
}