-
Notifications
You must be signed in to change notification settings - Fork 261
Expand file tree
/
Copy pathexecutor_lazy_test.go
More file actions
224 lines (183 loc) · 7.51 KB
/
executor_lazy_test.go
File metadata and controls
224 lines (183 loc) · 7.51 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
package executing
import (
"context"
"testing"
"time"
"github.com/ipfs/go-datastore"
"github.com/ipfs/go-datastore/sync"
"github.com/rs/zerolog"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
"github.com/evstack/ev-node/block/internal/cache"
"github.com/evstack/ev-node/block/internal/common"
coreseq "github.com/evstack/ev-node/core/sequencer"
"github.com/evstack/ev-node/pkg/config"
"github.com/evstack/ev-node/pkg/genesis"
"github.com/evstack/ev-node/pkg/store"
testmocks "github.com/evstack/ev-node/test/mocks"
"github.com/evstack/ev-node/types"
)
func TestLazyMode_ProduceBlockLogic(t *testing.T) {
ds := sync.MutexWrap(datastore.NewMapDatastore())
memStore := store.New(ds)
cacheManager, err := cache.NewManager(config.DefaultConfig(), memStore, zerolog.Nop())
require.NoError(t, err)
metrics := common.NopMetrics()
addr, _, signerWrapper := buildTestSigner(t)
cfg := config.DefaultConfig()
cfg.Node.BlockTime = config.DurationWrapper{Duration: 10 * time.Millisecond}
cfg.Node.LazyMode = true
cfg.Node.MaxPendingHeadersAndData = 1000
gen := genesis.Genesis{
ChainID: "test-chain",
InitialHeight: 1,
StartTime: time.Now().Add(-time.Second),
ProposerAddress: addr,
}
mockExec := testmocks.NewMockExecutor(t)
mockSeq := testmocks.NewMockSequencer(t)
hb := common.NewMockBroadcaster[*types.P2PSignedHeader](t)
hb.EXPECT().WriteToStoreAndBroadcast(mock.Anything, mock.Anything).Return(nil).Maybe()
db := common.NewMockBroadcaster[*types.P2PData](t)
db.EXPECT().WriteToStoreAndBroadcast(mock.Anything, mock.Anything).Return(nil).Maybe()
exec, err := NewExecutor(
memStore,
mockExec,
mockSeq,
signerWrapper,
cacheManager,
metrics,
cfg,
gen,
hb,
db,
zerolog.Nop(),
common.DefaultBlockOptions(),
make(chan error, 1),
)
require.NoError(t, err)
// Initialize state
initStateRoot := []byte("init_root")
mockExec.EXPECT().InitChain(mock.Anything, mock.AnythingOfType("time.Time"), gen.InitialHeight, gen.ChainID).
Return(initStateRoot, nil).Once()
mockSeq.EXPECT().SetDAHeight(uint64(0)).Return().Once()
require.NoError(t, exec.initializeState())
// Set up context for the executor (normally done in Start method)
exec.ctx, exec.cancel = context.WithCancel(context.Background())
defer exec.cancel()
// Test 1: Lazy mode should produce blocks when called directly (simulating lazy timer)
mockSeq.EXPECT().GetNextBatch(mock.Anything, mock.AnythingOfType("sequencer.GetNextBatchRequest")).
RunAndReturn(func(ctx context.Context, req coreseq.GetNextBatchRequest) (*coreseq.GetNextBatchResponse, error) {
return &coreseq.GetNextBatchResponse{
Batch: &coreseq.Batch{Transactions: nil}, // Empty batch
Timestamp: time.Now(),
}, nil
}).Once()
mockExec.EXPECT().ExecuteTxs(mock.Anything, mock.Anything, uint64(1), mock.AnythingOfType("time.Time"), initStateRoot).
Return([]byte("new_root_1"), nil).Once()
mockSeq.EXPECT().GetDAHeight().Return(uint64(0)).Once()
// Direct call to ProduceBlock should work (this is what lazy timer does)
err = exec.ProduceBlock(exec.ctx)
require.NoError(t, err)
h1, err := memStore.Height(context.Background())
require.NoError(t, err)
assert.Equal(t, uint64(1), h1, "lazy mode should produce block when called directly")
// Test 2: Produce another block with transactions
mockSeq.EXPECT().GetNextBatch(mock.Anything, mock.AnythingOfType("sequencer.GetNextBatchRequest")).
RunAndReturn(func(ctx context.Context, req coreseq.GetNextBatchRequest) (*coreseq.GetNextBatchResponse, error) {
return &coreseq.GetNextBatchResponse{
Batch: &coreseq.Batch{
Transactions: [][]byte{[]byte("tx1"), []byte("tx2")},
},
Timestamp: time.Now(),
}, nil
}).Once()
mockExec.EXPECT().ExecuteTxs(mock.Anything, mock.Anything, uint64(2), mock.AnythingOfType("time.Time"), []byte("new_root_1")).
Return([]byte("new_root_2"), nil).Once()
mockSeq.EXPECT().GetDAHeight().Return(uint64(0)).Once()
err = exec.ProduceBlock(exec.ctx)
require.NoError(t, err)
h2, err := memStore.Height(context.Background())
require.NoError(t, err)
assert.Equal(t, uint64(2), h2, "should produce block with transactions")
// Verify blocks were stored correctly
sh1, data1, err := memStore.GetBlockData(context.Background(), 1)
require.NoError(t, err)
assert.Equal(t, 0, len(data1.Txs), "first block should be empty")
assert.EqualValues(t, common.DataHashForEmptyTxs, sh1.DataHash)
sh2, data2, err := memStore.GetBlockData(context.Background(), 2)
require.NoError(t, err)
assert.Equal(t, 2, len(data2.Txs), "second block should have 2 transactions")
assert.NotEqual(t, common.DataHashForEmptyTxs, sh2.DataHash, "second block should not have empty data hash")
}
func TestRegularMode_ProduceBlockLogic(t *testing.T) {
ds := sync.MutexWrap(datastore.NewMapDatastore())
memStore := store.New(ds)
cacheManager, err := cache.NewManager(config.DefaultConfig(), memStore, zerolog.Nop())
require.NoError(t, err)
metrics := common.NopMetrics()
addr, _, signerWrapper := buildTestSigner(t)
cfg := config.DefaultConfig()
cfg.Node.BlockTime = config.DurationWrapper{Duration: 10 * time.Millisecond}
cfg.Node.LazyMode = false // Regular mode
cfg.Node.MaxPendingHeadersAndData = 1000
gen := genesis.Genesis{
ChainID: "test-chain",
InitialHeight: 1,
StartTime: time.Now().Add(-time.Second),
ProposerAddress: addr,
}
mockExec := testmocks.NewMockExecutor(t)
mockSeq := testmocks.NewMockSequencer(t)
hb := common.NewMockBroadcaster[*types.P2PSignedHeader](t)
hb.EXPECT().WriteToStoreAndBroadcast(mock.Anything, mock.Anything).Return(nil).Maybe()
db := common.NewMockBroadcaster[*types.P2PData](t)
db.EXPECT().WriteToStoreAndBroadcast(mock.Anything, mock.Anything).Return(nil).Maybe()
exec, err := NewExecutor(
memStore,
mockExec,
mockSeq,
signerWrapper,
cacheManager,
metrics,
cfg,
gen,
hb,
db,
zerolog.Nop(),
common.DefaultBlockOptions(),
make(chan error, 1),
)
require.NoError(t, err)
// Initialize state
initStateRoot := []byte("init_root")
mockExec.EXPECT().InitChain(mock.Anything, mock.AnythingOfType("time.Time"), gen.InitialHeight, gen.ChainID).
Return(initStateRoot, nil).Once()
mockSeq.EXPECT().SetDAHeight(uint64(0)).Return().Once()
require.NoError(t, exec.initializeState())
// Set up context for the executor (normally done in Start method)
exec.ctx, exec.cancel = context.WithCancel(context.Background())
defer exec.cancel()
// Test: Regular mode should produce blocks regardless of transaction availability
mockSeq.EXPECT().GetNextBatch(mock.Anything, mock.AnythingOfType("sequencer.GetNextBatchRequest")).
RunAndReturn(func(ctx context.Context, req coreseq.GetNextBatchRequest) (*coreseq.GetNextBatchResponse, error) {
return &coreseq.GetNextBatchResponse{
Batch: &coreseq.Batch{Transactions: nil}, // Empty batch
Timestamp: time.Now(),
}, nil
}).Once()
mockExec.EXPECT().ExecuteTxs(mock.Anything, mock.Anything, uint64(1), mock.AnythingOfType("time.Time"), initStateRoot).
Return([]byte("new_root_1"), nil).Once()
mockSeq.EXPECT().GetDAHeight().Return(uint64(0)).Once()
err = exec.ProduceBlock(exec.ctx)
require.NoError(t, err)
h1, err := memStore.Height(context.Background())
require.NoError(t, err)
assert.Equal(t, uint64(1), h1, "regular mode should produce block even without transactions")
// Verify the block
sh, data, err := memStore.GetBlockData(context.Background(), 1)
require.NoError(t, err)
assert.Equal(t, 0, len(data.Txs), "block should be empty")
assert.EqualValues(t, common.DataHashForEmptyTxs, sh.DataHash)
}