-
Notifications
You must be signed in to change notification settings - Fork 86
/
address_test.go
323 lines (268 loc) · 9.14 KB
/
address_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
/*
* Flow Go SDK
*
* Copyright Flow Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package flow
import (
"encoding/json"
"math/bits"
"math/rand"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type addressWrapper struct {
Address Address
}
func TestHexToAddress(t *testing.T) {
type testCase struct {
literal string
value []byte
}
for _, test := range []testCase{
{"123", []byte{0x1, 0x23}},
{"1", []byte{0x1}},
// leading zero
{"01", []byte{0x1}},
} {
expected := BytesToAddress(test.value)
assert.Equal(t, expected, HexToAddress(test.literal))
assert.Equal(t, expected, HexToAddress("0x"+test.literal))
}
}
func TestHexWithPrefix(t *testing.T) {
type testCase struct {
literal string
value []byte
}
for _, test := range []testCase{
{"0x0000000000000123", []byte{0x1, 0x23}},
{"0x0000000000000001", []byte{0x1}},
{"0xe03daebed8ca0615", []byte{0xe0, 0x3d, 0xae, 0xbe, 0xd8, 0xca, 0x06, 0x15}},
} {
addr := BytesToAddress(test.value)
expected := addr.HexWithPrefix()
assert.Equal(t, expected, test.literal)
assert.Equal(t, expected, test.literal)
}
}
func TestAddressJSON(t *testing.T) {
addr := ServiceAddress(Mainnet)
data, err := json.Marshal(addressWrapper{Address: addr})
require.Nil(t, err)
var out addressWrapper
err = json.Unmarshal(data, &out)
require.Nil(t, err)
assert.Equal(t, addr, out.Address)
}
func TestAddressConstants(t *testing.T) {
// check n and k fit in 8 and 6 bytes
assert.LessOrEqual(t, linearCodeN, 8*8)
assert.LessOrEqual(t, linearCodeK, 6*8)
// Test addresses for all type of networks
networks := []ChainID{
Mainnet,
Testnet,
Emulator,
}
for _, net := range networks {
// check the zero and service constants
expected := uint64ToAddress(chainCustomizer(net))
assert.Equal(t, zeroAddress(net), expected)
expected = uint64ToAddress(generatorMatrixRows[0] ^ chainCustomizer(net))
assert.Equal(t, ServiceAddress(net), expected)
// check the transition from account zero to service
generator := NewAddressGenerator(net)
address := generator.NextAddress()
assert.Equal(t, address, ServiceAddress(net))
// check high state values: generation should fail for high value states
generator = newAddressGeneratorAtState(net, maxState)
assert.NotPanics(t, func() { generator.NextAddress() })
assert.Panics(t, func() { generator.NextAddress() })
// check zeroAddress(net) is an invalid address
z := zeroAddress(net)
check := z.IsValid(net)
assert.False(t, check, "should be invalid")
}
}
const invalidCodeWord = uint64(0xab2ae42382900010)
func TestAddressGeneration(t *testing.T) {
// seed random generator
rand.Seed(time.Now().UnixNano())
// loops in each test
const iterations = 3
// Test addresses for all type of networks
networks := []ChainID{
Mainnet,
Testnet,
Emulator,
}
for _, net := range networks {
t.Run(net.String(), func(t *testing.T) {
t.Run("NextAddress", func(t *testing.T) {
// sanity check of NextAddress function consistency
generator := NewAddressGenerator(net)
expectedState := zeroAddressState
for i := 0; i < iterations; i++ {
address := generator.NextAddress()
expectedState++
expectedAddress := generateAddress(net, expectedState)
assert.Equal(t, address, expectedAddress)
}
})
t.Run("Address", func(t *testing.T) {
// sanity check of Address function consistency
generator := NewAddressGenerator(net)
expectedState := zeroAddressState
for i := 0; i < iterations; i++ {
address := generator.Address()
expectedAddress := generateAddress(net, expectedState)
assert.Equal(t, address, expectedAddress)
generator.Next()
expectedState++
}
})
t.Run("SetIndex", func(t *testing.T) {
const indexA = 8
const indexB = 16
generatorA := NewAddressGenerator(net)
generatorB := NewAddressGenerator(net)
// fast-forward manually (to indexA)
for i := 0; i < indexA; i++ {
generatorA.Next()
}
// fast-forward with SetIndex (to indexA)
generatorB.SetIndex(indexA)
addressA1 := generatorA.Address()
addressB1 := generatorB.Address()
assert.Equal(t, addressA1, addressB1)
// fast-forward manually (to indexB)
for i := indexA; i < indexB; i++ {
generatorA.Next()
}
// fast-forward with SetIndex (to indexB)
generatorB.SetIndex(indexB)
addressA2 := generatorA.Address()
addressB2 := generatorB.Address()
assert.Equal(t, addressA2, addressB2)
// rewind with SetIndex (back to indexA)
generatorB.SetIndex(indexA)
addressB3 := generatorB.Address()
assert.Equal(t, addressA1, addressB3)
})
t.Run("Weights", func(t *testing.T) {
// sanity check of addresses weights in Flow.
// All addresses hamming weights must be less than d.
// this is only a sanity check of the implementation and not an exhaustive proof
if net == Mainnet {
r := rand.Intn(maxState - iterations)
generator := newAddressGeneratorAtState(net, addressState(r))
for i := 0; i < iterations; i++ {
address := generator.NextAddress()
weight := bits.OnesCount64(address.uint64())
assert.LessOrEqual(t, linearCodeD, weight)
}
}
})
t.Run("Distances", func(t *testing.T) {
// sanity check of address distances.
// All distances between any two addresses must be less than d.
// this is only a sanity check of the implementation and not an exhaustive proof
r := rand.Intn(maxState - iterations - 1)
generator := newAddressGeneratorAtState(net, addressState(r))
refAddress := generator.NextAddress()
for i := 0; i < iterations; i++ {
address := generator.NextAddress()
distance := bits.OnesCount64(address.uint64() ^ refAddress.uint64())
assert.LessOrEqual(t, linearCodeD, distance)
}
})
t.Run("Valid", func(t *testing.T) {
// sanity check of valid account addresses.
// All valid addresses must pass IsValid.
r := rand.Intn(maxState - iterations)
generator := newAddressGeneratorAtState(net, addressState(r))
for i := 0; i < iterations; i++ {
address := generator.NextAddress()
check := address.IsValid(net)
assert.True(t, check, "account address format should be valid")
}
})
t.Run("Invalid", func(t *testing.T) {
// sanity check of invalid account addresses.
// All invalid addresses must fail IsValid.
invalidAddress := uint64ToAddress(invalidCodeWord)
check := invalidAddress.IsValid(net)
assert.False(t, check, "account address format should be invalid")
r := rand.Intn(maxState - iterations)
generator := newAddressGeneratorAtState(net, addressState(r))
for i := 0; i < iterations; i++ {
address := generator.NextAddress()
invalidAddress = uint64ToAddress(address.uint64() ^ invalidCodeWord)
check := invalidAddress.IsValid(net)
assert.False(t, check, "account address format should be invalid")
}
})
})
}
}
func TestAddressesIntersection(t *testing.T) {
// seed random generator
rand.Seed(time.Now().UnixNano())
// loops in each test
const loop = 50
// Test addresses for all type of networks
networks := []ChainID{
Testnet,
Emulator,
}
for _, net := range networks {
// All valid test addresses must fail Flow Mainnet check
r := rand.Intn(maxState - loop)
generator := newAddressGeneratorAtState(net, addressState(r))
for i := 0; i < loop; i++ {
address := generator.NextAddress()
check := address.IsValid(Mainnet)
assert.False(t, check, "test account address format should be invalid in Flow")
}
// sanity check: mainnet addresses must fail the test check
r = rand.Intn(maxState - loop)
generator = newAddressGeneratorAtState(Mainnet, addressState(r))
for i := 0; i < loop; i++ {
invalidAddress := generator.NextAddress()
check := invalidAddress.IsValid(net)
assert.False(t, check, "account address format should be invalid")
}
// sanity check of invalid account addresses in all networks
require.NotEqual(t, invalidCodeWord, uint64(0))
invalidAddress := uint64ToAddress(invalidCodeWord)
check := invalidAddress.IsValid(net)
assert.False(t, check, "account address format should be invalid")
r = rand.Intn(maxState - loop)
generator = newAddressGeneratorAtState(net, addressState(r))
for i := 0; i < loop; i++ {
address := generator.NextAddress()
invalidAddress = uint64ToAddress(address.uint64() ^ invalidCodeWord)
// must fail test network check
check = invalidAddress.IsValid(net)
assert.False(t, check, "account address format should be invalid")
// must fail mainnet check
check := invalidAddress.IsValid(Mainnet)
assert.False(t, check, "account address format should be invalid")
}
}
}