-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathgenesis_test.go
More file actions
237 lines (225 loc) · 9.74 KB
/
genesis_test.go
File metadata and controls
237 lines (225 loc) · 9.74 KB
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
// SPDX-License-Identifier: BUSL-1.1
//
// Copyright (C) 2025, Berachain Foundation. All rights reserved.
// Use of this software is governed by the Business Source License included
// in the LICENSE file of this repository and at www.mariadb.com/bsl11.
//
// ANY USE OF THE LICENSED WORK IN VIOLATION OF THIS LICENSE WILL AUTOMATICALLY
// TERMINATE YOUR RIGHTS UNDER THIS LICENSE FOR THE CURRENT AND ALL OTHER
// VERSIONS OF THE LICENSED WORK.
//
// THIS LICENSE DOES NOT GRANT YOU ANY RIGHT IN ANY TRADEMARK OR LOGO OF
// LICENSOR OR ITS AFFILIATES (PROVIDED THAT YOU MAY USE A TRADEMARK OR LOGO OF
// LICENSOR AS EXPRESSLY REQUIRED BY THIS LICENSE).
//
// TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
// AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
// EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
// TITLE.
//nolint:lll // long strings.
package types_test
import (
"testing"
"github.com/berachain/beacon-kit/consensus-types/types"
"github.com/berachain/beacon-kit/primitives/bytes"
"github.com/berachain/beacon-kit/primitives/common"
"github.com/berachain/beacon-kit/primitives/math"
"github.com/berachain/beacon-kit/primitives/version"
"github.com/stretchr/testify/require"
)
func TestDefaultGenesis(t *testing.T) {
t.Parallel()
runForAllSupportedVersions(t, func(t *testing.T, v common.Version) {
g := types.DefaultGenesis(v)
if !version.Equals(g.ForkVersion, v) {
t.Errorf(
"Expected fork version %v, but got %v",
v,
g.ForkVersion,
)
}
if len(g.Deposits) != 0 {
t.Errorf("Expected no deposits, but got %v", len(g.Deposits))
}
// add assertions for ExecutionPayloadHeader
require.NotNil(t, g.ExecutionPayloadHeader,
"Expected ExecutionPayloadHeader to be non-nil")
require.Equal(t, common.ExecutionHash{},
g.ExecutionPayloadHeader.GetParentHash(),
"Unexpected ParentHash")
require.Equal(t, common.ExecutionAddress{},
g.ExecutionPayloadHeader.GetFeeRecipient(),
"Unexpected FeeRecipient")
require.Equal(t, math.U64(30000000),
g.ExecutionPayloadHeader.GetGasLimit(),
"Unexpected GasLimit")
require.Equal(t, math.U64(0),
g.ExecutionPayloadHeader.GetGasUsed(),
"Unexpected GasUsed")
require.Equal(t, math.U64(0),
g.ExecutionPayloadHeader.GetTimestamp(),
"Unexpected Timestamp")
})
}
func TestDefaultGenesisExecutionPayloadHeader(t *testing.T) {
t.Parallel()
header, err := types.DefaultGenesisExecutionPayloadHeader()
require.NoError(t, err)
require.NotNil(t, header)
}
func TestGenesisGetForkVersion(t *testing.T) {
t.Parallel()
runForAllSupportedVersions(t, func(t *testing.T, v common.Version) {
g := types.DefaultGenesis(v)
forkVersion := g.GetForkVersion()
require.Equal(t, v, forkVersion)
})
}
func TestGenesisGetDeposits(t *testing.T) {
t.Parallel()
runForAllSupportedVersions(t, func(t *testing.T, v common.Version) {
g := types.DefaultGenesis(v)
deposits := g.GetDeposits()
require.Empty(t, deposits)
})
}
func TestGenesisGetExecutionPayloadHeader(t *testing.T) {
t.Parallel()
runForAllSupportedVersions(t, func(t *testing.T, v common.Version) {
g := types.DefaultGenesis(v)
header := g.GetExecutionPayloadHeader()
require.NotNil(t, header)
})
}
func TestDefaultGenesisPanics(t *testing.T) {
t.Parallel()
runForAllSupportedVersions(t, func(t *testing.T, v common.Version) {
require.NotPanics(t, func() {
types.DefaultGenesis(v)
})
})
}
func TestGenesisUnmarshalJSON(t *testing.T) {
t.Parallel()
t.Helper()
testCases := []struct {
name string
jsonInput string
expectedError bool
expectedFork bytes.B4
expectedDepositsLen int
}{
{
name: "Valid JSON with empty deposits",
jsonInput: `{
"fork_version": "0x04000000",
"deposits": [],
"execution_payload_header": {
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"feeRecipient": "0x0000000000000000000000000000000000000000",
"stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"receiptsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"prevRandao": "0x0000000000000000000000000000000000000000000000000000000000000000",
"blockNumber": "0x0",
"gasLimit": "0x0",
"gasUsed": "0x0",
"timestamp": "0x0",
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
"baseFeePerGas": "0x0",
"blockHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"transactionsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"withdrawalsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"blobGasUsed": "0x0",
"excessBlobGas": "0x0"
}
}`,
expectedError: false,
expectedFork: bytes.B4{0x4, 0x0, 0x0, 0x0},
expectedDepositsLen: 0,
},
{
name: "Valid JSON with non-empty deposits",
jsonInput: `{
"fork_version": "0x04000000",
"deposits": [{"key": "value"}],
"execution_payload_header": {
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"feeRecipient": "0x0000000000000000000000000000000000000000",
"stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"receiptsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"prevRandao": "0x0000000000000000000000000000000000000000000000000000000000000000",
"blockNumber": "0x0",
"gasLimit": "0x0",
"gasUsed": "0x0",
"timestamp": "0x0",
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
"baseFeePerGas": "0x0",
"blockHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"transactionsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"withdrawalsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"blobGasUsed": "0x0",
"excessBlobGas": "0x0"
}
}`,
expectedError: false,
expectedFork: bytes.B4{0x4, 0x0, 0x0, 0x0},
expectedDepositsLen: 1,
},
{
name: "Invalid JSON input",
jsonInput: `{
"fork_version": 12345,
"deposits": [],
"execution_payload_header": {
}
}`,
expectedError: true,
},
{
name: "Missing fields in JSON input",
jsonInput: `{
"fork_version": "0x04000000",
"deposits": [{"key": "value"}],
"execution_payload_header": {
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"feeRecipient": "0x0000000000000000000000000000000000000000",
"stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"receiptsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"prevRandao": "0x0000000000000000000000000000000000000000000000000000000000000000",
"gasLimit": "0x1c9c380",
"gasUsed": "0x0",
"timestamp": "0x0",
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
"baseFeePerGas": "0x3b9aca",
"blockHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"transactionsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"withdrawalsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"blobGasUsed": "0x0",
"excessBlobGas": "0x0"
}
}`,
expectedError: true,
},
}
for _, tc := range testCases {
runForAllSupportedVersions(t, func(t *testing.T, v common.Version) {
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
g := types.DefaultGenesis(v)
err := g.UnmarshalJSON([]byte(tc.jsonInput))
if tc.expectedError {
require.Error(t, err, "Expected error but got none")
} else {
require.NoError(t, err, "Unexpected error")
require.Equal(t, tc.expectedFork, g.ForkVersion, "Unexpected ForkVersion")
require.Len(t, g.Deposits, tc.expectedDepositsLen, "Unexpected number of deposits")
require.NotNil(t, g.ExecutionPayloadHeader, "Expected ExecutionPayloadHeader to be non-nil")
}
})
})
}
}