mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
Co-authored-by: colin <102356659+colinlyguo@users.noreply.github.com> Co-authored-by: colinlyguo <colinlyguo@scroll.io> Co-authored-by: Péter Garamvölgyi <peter@scroll.io> Co-authored-by: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Co-authored-by: HAOYUatHZ <haoyu@protonmail.com>
145 lines
4.8 KiB
Go
145 lines
4.8 KiB
Go
package tests
|
|
|
|
import (
|
|
"context"
|
|
"math/big"
|
|
"testing"
|
|
|
|
"github.com/scroll-tech/go-ethereum/accounts/abi/bind"
|
|
"github.com/scroll-tech/go-ethereum/common"
|
|
gethTypes "github.com/scroll-tech/go-ethereum/core/types"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"scroll-tech/common/database"
|
|
"scroll-tech/common/types"
|
|
"scroll-tech/common/types/message"
|
|
|
|
"scroll-tech/bridge/internal/config"
|
|
"scroll-tech/bridge/internal/controller/relayer"
|
|
"scroll-tech/bridge/internal/controller/watcher"
|
|
"scroll-tech/bridge/internal/orm"
|
|
)
|
|
|
|
func testCommitBatchAndFinalizeBatch(t *testing.T) {
|
|
db := setupDB(t)
|
|
defer database.CloseDB(db)
|
|
|
|
prepareContracts(t)
|
|
|
|
// Create L2Relayer
|
|
l2Cfg := bridgeApp.Config.L2Config
|
|
l2Relayer, err := relayer.NewLayer2Relayer(context.Background(), l2Client, db, l2Cfg.RelayerConfig, false)
|
|
assert.NoError(t, err)
|
|
|
|
// Create L1Watcher
|
|
l1Cfg := bridgeApp.Config.L1Config
|
|
l1Watcher := watcher.NewL1WatcherClient(context.Background(), l1Client, 0, l1Cfg.Confirmations, l1Cfg.L1MessengerAddress, l1Cfg.L1MessageQueueAddress, l1Cfg.ScrollChainContractAddress, db)
|
|
|
|
// add some blocks to db
|
|
var wrappedBlocks []*types.WrappedBlock
|
|
for i := 0; i < 10; i++ {
|
|
header := gethTypes.Header{
|
|
Number: big.NewInt(int64(i)),
|
|
ParentHash: common.Hash{},
|
|
Difficulty: big.NewInt(0),
|
|
BaseFee: big.NewInt(0),
|
|
}
|
|
wrappedBlocks = append(wrappedBlocks, &types.WrappedBlock{
|
|
Header: &header,
|
|
Transactions: nil,
|
|
WithdrawRoot: common.Hash{},
|
|
RowConsumption: &gethTypes.RowConsumption{},
|
|
})
|
|
}
|
|
|
|
l2BlockOrm := orm.NewL2Block(db)
|
|
err = l2BlockOrm.InsertL2Blocks(context.Background(), wrappedBlocks)
|
|
assert.NoError(t, err)
|
|
|
|
cp := watcher.NewChunkProposer(context.Background(), &config.ChunkProposerConfig{
|
|
MaxTxGasPerChunk: 1000000000,
|
|
MaxL2TxNumPerChunk: 10000,
|
|
MaxL1CommitGasPerChunk: 50000000000,
|
|
MaxL1CommitCalldataSizePerChunk: 1000000,
|
|
MinL1CommitCalldataSizePerChunk: 0,
|
|
MaxRowConsumptionPerChunk: 1048319,
|
|
ChunkTimeoutSec: 300,
|
|
}, db)
|
|
cp.TryProposeChunk()
|
|
|
|
chunkOrm := orm.NewChunk(db)
|
|
chunks, err := chunkOrm.GetUnbatchedChunks(context.Background())
|
|
assert.NoError(t, err)
|
|
assert.Len(t, chunks, 1)
|
|
|
|
bp := watcher.NewBatchProposer(context.Background(), &config.BatchProposerConfig{
|
|
MaxChunkNumPerBatch: 10,
|
|
MaxL1CommitGasPerBatch: 50000000000,
|
|
MaxL1CommitCalldataSizePerBatch: 1000000,
|
|
MinChunkNumPerBatch: 1,
|
|
BatchTimeoutSec: 300,
|
|
}, db)
|
|
bp.TryProposeBatch()
|
|
|
|
l2Relayer.ProcessPendingBatches()
|
|
|
|
batchOrm := orm.NewBatch(db)
|
|
batch, err := batchOrm.GetLatestBatch(context.Background())
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, batch)
|
|
batchHash := batch.Hash
|
|
assert.NotEmpty(t, batch.CommitTxHash)
|
|
assert.Equal(t, types.RollupCommitting, types.RollupStatus(batch.RollupStatus))
|
|
|
|
assert.NoError(t, err)
|
|
commitTx, _, err := l1Client.TransactionByHash(context.Background(), common.HexToHash(batch.CommitTxHash))
|
|
assert.NoError(t, err)
|
|
commitTxReceipt, err := bind.WaitMined(context.Background(), l1Client, commitTx)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, len(commitTxReceipt.Logs), 1)
|
|
|
|
// fetch rollup events
|
|
err = l1Watcher.FetchContractEvent()
|
|
assert.NoError(t, err)
|
|
statuses, err := batchOrm.GetRollupStatusByHashList(context.Background(), []string{batchHash})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, 1, len(statuses))
|
|
assert.Equal(t, types.RollupCommitted, statuses[0])
|
|
|
|
// add dummy proof
|
|
proof := &message.BatchProof{
|
|
Proof: []byte{0, 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},
|
|
}
|
|
err = batchOrm.UpdateProofByHash(context.Background(), batchHash, proof, 100)
|
|
assert.NoError(t, err)
|
|
err = batchOrm.UpdateProvingStatus(context.Background(), batchHash, types.ProvingTaskVerified)
|
|
assert.NoError(t, err)
|
|
|
|
// process committed batch and check status
|
|
l2Relayer.ProcessCommittedBatches()
|
|
|
|
statuses, err = batchOrm.GetRollupStatusByHashList(context.Background(), []string{batchHash})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, 1, len(statuses))
|
|
assert.Equal(t, types.RollupFinalizing, statuses[0])
|
|
|
|
batch, err = batchOrm.GetLatestBatch(context.Background())
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, batch)
|
|
assert.NotEmpty(t, batch.FinalizeTxHash)
|
|
|
|
finalizeTx, _, err := l1Client.TransactionByHash(context.Background(), common.HexToHash(batch.FinalizeTxHash))
|
|
assert.NoError(t, err)
|
|
finalizeTxReceipt, err := bind.WaitMined(context.Background(), l1Client, finalizeTx)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, len(finalizeTxReceipt.Logs), 1)
|
|
|
|
// fetch rollup events
|
|
err = l1Watcher.FetchContractEvent()
|
|
assert.NoError(t, err)
|
|
statuses, err = batchOrm.GetRollupStatusByHashList(context.Background(), []string{batchHash})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, 1, len(statuses))
|
|
assert.Equal(t, types.RollupFinalized, statuses[0])
|
|
}
|