forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 1
/
util_test.go
88 lines (82 loc) · 1.86 KB
/
util_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
package op_service
import (
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/stretchr/testify/require"
"github.com/urfave/cli/v2"
)
func TestCLIFlagsToEnvVars(t *testing.T) {
flags := []cli.Flag{
&cli.StringFlag{
Name: "test",
EnvVars: []string{"OP_NODE_TEST_VAR"},
},
&cli.IntFlag{
Name: "no env var",
},
}
res := cliFlagsToEnvVars(flags)
require.Contains(t, res, "OP_NODE_TEST_VAR")
}
func TestValidateEnvVars(t *testing.T) {
provided := []string{"OP_BATCHER_CONFIG=true", "OP_BATCHER_FAKE=false", "LD_PRELOAD=/lib/fake.so"}
defined := map[string]struct{}{
"OP_BATCHER_CONFIG": {},
"OP_BATCHER_OTHER": {},
}
invalids := validateEnvVars("OP_BATCHER", provided, defined)
require.ElementsMatch(t, invalids, []string{"OP_BATCHER_FAKE=false"})
}
func TestParse256BitChainID(t *testing.T) {
tests := []struct {
name string
input string
expected common.Hash
err bool
}{
{
name: "valid int",
input: "12345",
expected: common.Hash{30: 0x30, 31: 0x39},
err: false,
},
{
name: "invalid hash",
input: common.Hash{0x00: 0xff}.String(),
expected: common.Hash{0x00: 0xff},
err: false,
},
{
name: "hash overflow",
input: "0xff0000000000000000000000000000000000000000000000000000000000000000",
err: true,
},
{
name: "number overflow",
// (2^256 - 1) + 1
input: "115792089237316195423570985008687907853269984665640564039457584007913129639936",
err: true,
},
{
name: "invalid hex",
input: "0xnope",
err: true,
},
{
name: "invalid number",
input: "nope",
err: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
res, err := Parse256BitChainID(tt.input)
if tt.err {
require.Error(t, err)
} else {
require.NoError(t, err)
require.Equal(t, tt.expected, res)
}
})
}
}