-
Notifications
You must be signed in to change notification settings - Fork 534
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9040ca9
commit 7b1f128
Showing
3 changed files
with
173 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
package polybft | ||
|
||
import ( | ||
"math/big" | ||
"testing" | ||
"time" | ||
|
||
"github.com/0xPolygon/polygon-edge/chain" | ||
"github.com/0xPolygon/polygon-edge/consensus/polybft/wallet" | ||
"github.com/0xPolygon/polygon-edge/crypto" | ||
"github.com/0xPolygon/polygon-edge/helper/common" | ||
"github.com/0xPolygon/polygon-edge/state" | ||
itrie "github.com/0xPolygon/polygon-edge/state/immutable-trie" | ||
"github.com/0xPolygon/polygon-edge/types" | ||
"github.com/hashicorp/go-hclog" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
"github.com/umbracle/ethgo" | ||
) | ||
|
||
func TestBlockBuilder_BuildBlockTxOneFailedTxAndOneTakesTooMuchGas(t *testing.T) { | ||
t.Parallel() | ||
|
||
const ( | ||
amount = 1_000 | ||
gasPrice = 1_000 | ||
gasLimit = 21000 | ||
blockGasLimit = 21000 * 3 | ||
chainID = 100 | ||
) | ||
|
||
accounts := [6]*wallet.Account{} | ||
|
||
for i := range accounts { | ||
accounts[i] = generateTestAccount(t) | ||
} | ||
|
||
forks := &chain.Forks{} | ||
logger := hclog.NewNullLogger() | ||
signer := crypto.NewSigner(forks.At(0), chainID) | ||
|
||
mchain := &chain.Chain{ | ||
Params: &chain.Params{ | ||
ChainID: chainID, | ||
Forks: forks, | ||
}, | ||
} | ||
|
||
mstate := itrie.NewState(itrie.NewMemoryStorage()) | ||
executor := state.NewExecutor(mchain.Params, mstate, logger) | ||
|
||
executor.GetHash = func(header *types.Header) func(i uint64) types.Hash { | ||
return func(i uint64) (res types.Hash) { | ||
return types.BytesToHash(common.EncodeUint64ToBytes(i)) | ||
} | ||
} | ||
|
||
balanceMap := map[types.Address]*chain.GenesisAccount{} | ||
|
||
for i, acc := range accounts { | ||
// the third tx will fail because of insufficient balance | ||
if i != 2 { | ||
balanceMap[types.Address(acc.Ecdsa.Address())] = &chain.GenesisAccount{ | ||
Balance: ethgo.Ether(1), | ||
} | ||
} | ||
} | ||
|
||
hash, err := executor.WriteGenesis(balanceMap, types.ZeroHash) | ||
|
||
require.NoError(t, err) | ||
require.NotEqual(t, types.ZeroHash, hash) | ||
|
||
// Gas Limit is important to be high for tx pool | ||
parentHeader := &types.Header{StateRoot: hash, GasLimit: 1_000_000_000_000_000} | ||
|
||
txPool := &txPoolMock{} | ||
txPool.On("Prepare", uint64(0)).Once() | ||
|
||
for i, acc := range accounts { | ||
receiver := types.Address(acc.Ecdsa.Address()) | ||
privateKey, err := acc.GetEcdsaPrivateKey() | ||
|
||
require.NoError(t, err) | ||
|
||
tx := &types.Transaction{ | ||
Value: big.NewInt(amount), | ||
GasPrice: big.NewInt(gasPrice), | ||
Gas: gasLimit, | ||
Nonce: 0, | ||
To: &receiver, | ||
} | ||
|
||
// fifth tx will cause filling to stop | ||
if i == 4 { | ||
tx.Gas = blockGasLimit - 1 | ||
} | ||
|
||
tx, err = signer.SignTx(tx, privateKey) | ||
require.NoError(t, err) | ||
|
||
// all tx until the fifth will be retrieved from the pool | ||
if i <= 4 { | ||
txPool.On("Peek").Return(tx).Once() | ||
} | ||
|
||
// first two and fourth will be added to the block, third will be demoted | ||
if i == 2 { | ||
txPool.On("Demote", tx) | ||
} else if i < 4 { | ||
txPool.On("Pop", tx) | ||
} | ||
} | ||
|
||
bb := NewBlockBuilder(&BlockBuilderParams{ | ||
BlockTime: time.Millisecond * 100, | ||
Parent: parentHeader, | ||
Coinbase: types.ZeroAddress, | ||
Executor: executor, | ||
GasLimit: blockGasLimit, | ||
TxPool: txPool, | ||
Logger: logger, | ||
}) | ||
|
||
require.NoError(t, bb.Reset()) | ||
|
||
bb.Fill() | ||
|
||
fb, err := bb.Build(func(h *types.Header) { | ||
// fake the logs for bloom | ||
rs := bb.Receipts() | ||
|
||
if len(rs) == 3 { | ||
rs[0].Logs = []*types.Log{ | ||
{Address: types.StringToAddress("ff7783")}, | ||
} | ||
rs[1].Logs = []*types.Log{ | ||
{Address: types.StringToAddress("03bbcc")}, | ||
{Address: types.StringToAddress("112233")}, | ||
} | ||
} | ||
}) | ||
require.NoError(t, err) | ||
|
||
txPool.AssertExpectations(t) | ||
require.Len(t, bb.txns, 3, "Should have 3 transactions but has %d", len(bb.txns)) | ||
require.Len(t, bb.Receipts(), 3) | ||
|
||
// assert logs bloom | ||
for _, r := range bb.Receipts() { | ||
for _, l := range r.Logs { | ||
assert.True(t, fb.Block.Header.LogsBloom.IsLogInBloom(l)) | ||
} | ||
} | ||
|
||
assert.False(t, fb.Block.Header.LogsBloom.IsLogInBloom( | ||
&types.Log{Address: types.StringToAddress("999911117777")})) | ||
assert.False(t, fb.Block.Header.LogsBloom.IsLogInBloom( | ||
&types.Log{Address: types.StringToAddress("111177779999")})) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters