mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-08 21:48:11 -05:00
177 lines
6.0 KiB
Go
177 lines
6.0 KiB
Go
package watcher
|
|
|
|
import (
|
|
"context"
|
|
"math/big"
|
|
"testing"
|
|
|
|
"github.com/scroll-tech/da-codec/encoding"
|
|
"github.com/scroll-tech/go-ethereum/common"
|
|
"github.com/scroll-tech/go-ethereum/common/math"
|
|
gethTypes "github.com/scroll-tech/go-ethereum/core/types"
|
|
"github.com/scroll-tech/go-ethereum/params"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"scroll-tech/common/database"
|
|
|
|
"scroll-tech/rollup/internal/config"
|
|
"scroll-tech/rollup/internal/orm"
|
|
"scroll-tech/rollup/internal/utils"
|
|
)
|
|
|
|
func testChunkProposerLimitsCodecV7(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
maxL2Gas uint64
|
|
chunkTimeoutSec uint64
|
|
expectedChunksLen int
|
|
expectedBlocksInFirstChunk int // only be checked when expectedChunksLen > 0
|
|
}{
|
|
{
|
|
name: "NoLimitReached",
|
|
maxL2Gas: 20_000_000,
|
|
chunkTimeoutSec: 1000000000000,
|
|
expectedChunksLen: 0,
|
|
},
|
|
{
|
|
name: "Timeout",
|
|
maxL2Gas: 20_000_000,
|
|
chunkTimeoutSec: 0,
|
|
expectedChunksLen: 1,
|
|
expectedBlocksInFirstChunk: 2,
|
|
},
|
|
{
|
|
name: "MaxL2GasPerChunkIs0",
|
|
maxL2Gas: 0,
|
|
chunkTimeoutSec: 1000000000000,
|
|
expectedChunksLen: 0,
|
|
},
|
|
{
|
|
name: "SingleBlockByGasLimit",
|
|
maxL2Gas: 1_100_000,
|
|
chunkTimeoutSec: 1000000000000,
|
|
expectedChunksLen: 1,
|
|
expectedBlocksInFirstChunk: 1,
|
|
},
|
|
{
|
|
// In this test the second block is not included in the chunk because together
|
|
// with the first block it exceeds the maxL2GasPerChunk limit.
|
|
name: "MaxL2GasPerChunkIsSecondBlock",
|
|
maxL2Gas: 1_153_000,
|
|
chunkTimeoutSec: 1000000000000,
|
|
expectedChunksLen: 1,
|
|
expectedBlocksInFirstChunk: 1,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
db := setupDB(t)
|
|
defer database.CloseDB(db)
|
|
|
|
l2BlockOrm := orm.NewL2Block(db)
|
|
err := l2BlockOrm.InsertL2Blocks(context.Background(), []*encoding.Block{block1, block2})
|
|
assert.NoError(t, err)
|
|
|
|
// Add genesis chunk.
|
|
chunkOrm := orm.NewChunk(db)
|
|
_, err = chunkOrm.InsertChunk(context.Background(), &encoding.Chunk{Blocks: []*encoding.Block{{Header: &gethTypes.Header{Number: big.NewInt(0)}}}}, encoding.CodecV0, utils.ChunkMetrics{})
|
|
assert.NoError(t, err)
|
|
|
|
cp := NewChunkProposer(context.Background(), &config.ChunkProposerConfig{
|
|
MaxL2GasPerChunk: tt.maxL2Gas,
|
|
ChunkTimeoutSec: tt.chunkTimeoutSec,
|
|
MaxUncompressedBatchBytesSize: math.MaxUint64,
|
|
}, encoding.CodecV7, ¶ms.ChainConfig{LondonBlock: big.NewInt(0), BernoulliBlock: big.NewInt(0), CurieBlock: big.NewInt(0), DarwinTime: new(uint64), DarwinV2Time: new(uint64), EuclidTime: new(uint64), EuclidV2Time: new(uint64)}, db, nil)
|
|
cp.TryProposeChunk()
|
|
|
|
chunks, err := chunkOrm.GetChunksGEIndex(context.Background(), 1, 0)
|
|
assert.NoError(t, err)
|
|
assert.Len(t, chunks, tt.expectedChunksLen)
|
|
|
|
if len(chunks) > 0 {
|
|
blockOrm := orm.NewL2Block(db)
|
|
chunkHashes, err := blockOrm.GetChunkHashes(context.Background(), tt.expectedBlocksInFirstChunk)
|
|
assert.NoError(t, err)
|
|
assert.Len(t, chunkHashes, tt.expectedBlocksInFirstChunk)
|
|
firstChunkHash := chunks[0].Hash
|
|
for _, chunkHash := range chunkHashes {
|
|
assert.Equal(t, firstChunkHash, chunkHash)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func testChunkProposerUncompressedBatchBytesLimitCodecV8(t *testing.T) {
|
|
db := setupDB(t)
|
|
defer database.CloseDB(db)
|
|
|
|
// Create a block with very large calldata to test uncompressed batch bytes limit
|
|
block := readBlockFromJSON(t, "../../../testdata/blockTrace_03.json")
|
|
|
|
// Create a transaction with large calldata (around 3KiB)
|
|
largeCalldata := make([]byte, 3*1024) // 3KiB calldata
|
|
for i := range largeCalldata {
|
|
largeCalldata[i] = byte(i % 256)
|
|
}
|
|
|
|
// Modify the block to have a transaction with large calldata
|
|
block.Transactions[0].Data = "0x" + common.Bytes2Hex(largeCalldata)
|
|
|
|
// Insert two identical blocks with large calldata
|
|
l2BlockOrm := orm.NewL2Block(db)
|
|
for i := uint64(0); i < 2; i++ {
|
|
blockCopy := *block
|
|
blockCopy.Header = &gethTypes.Header{}
|
|
*blockCopy.Header = *block.Header
|
|
blockCopy.Header.Number = new(big.Int).SetUint64(i + 1)
|
|
blockCopy.Header.Time = i + 1
|
|
err := l2BlockOrm.InsertL2Blocks(context.Background(), []*encoding.Block{&blockCopy})
|
|
assert.NoError(t, err)
|
|
}
|
|
|
|
// Add genesis chunk
|
|
chunkOrm := orm.NewChunk(db)
|
|
_, err := chunkOrm.InsertChunk(context.Background(), &encoding.Chunk{Blocks: []*encoding.Block{{Header: &gethTypes.Header{Number: big.NewInt(0)}}}}, encoding.CodecV0, utils.ChunkMetrics{})
|
|
assert.NoError(t, err)
|
|
|
|
chainConfig := ¶ms.ChainConfig{
|
|
LondonBlock: big.NewInt(0),
|
|
BernoulliBlock: big.NewInt(0),
|
|
CurieBlock: big.NewInt(0),
|
|
DarwinTime: new(uint64),
|
|
DarwinV2Time: new(uint64),
|
|
EuclidTime: new(uint64),
|
|
EuclidV2Time: new(uint64),
|
|
FeynmanTime: new(uint64),
|
|
}
|
|
|
|
// Set max_uncompressed_batch_bytes_size to 4KiB (4 * 1024)
|
|
// One block (~3KiB) should fit, but two blocks (~6KiB) should exceed the limit
|
|
cp := NewChunkProposer(context.Background(), &config.ChunkProposerConfig{
|
|
MaxL2GasPerChunk: math.MaxUint64, // No gas limit
|
|
ChunkTimeoutSec: math.MaxUint32, // No timeout limit
|
|
MaxUncompressedBatchBytesSize: 4 * 1024, // 4KiB limit
|
|
}, encoding.CodecV8, chainConfig, db, nil)
|
|
|
|
// Try to propose chunk
|
|
cp.TryProposeChunk()
|
|
|
|
// Check that a chunk was created
|
|
chunks, err := chunkOrm.GetChunksGEIndex(context.Background(), 1, 0)
|
|
assert.NoError(t, err)
|
|
assert.Len(t, chunks, 1)
|
|
|
|
// Verify that the chunk contains only 1 block (not 2) due to uncompressed batch bytes limit
|
|
chunk := chunks[0]
|
|
assert.Equal(t, uint64(1), chunk.StartBlockNumber)
|
|
assert.Equal(t, uint64(1), chunk.EndBlockNumber)
|
|
|
|
// Verify that the second block is still available for next chunk
|
|
blockOrm := orm.NewL2Block(db)
|
|
blocks, err := blockOrm.GetL2BlocksGEHeight(context.Background(), 2, 0)
|
|
assert.NoError(t, err)
|
|
assert.Len(t, blocks, 1) // Second block should still be available
|
|
}
|