-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sovereign chain simulator updates #6773
Merged
axenteoctavian
merged 7 commits into
feat/chain-go-sdk
from
sovereign-cs-functions-update
Feb 6, 2025
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d28fb21
sovereign chain simulator updates
axenteoctavian f77cdd0
sovereign chain simulator tests updates
axenteoctavian 05e8752
sovereign chain simulator tests updates
axenteoctavian 5480f22
fixes after review
axenteoctavian 779a7a5
fixes after review
axenteoctavian d0482d5
fixes after review
axenteoctavian da17c87
fixes after review
axenteoctavian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -6,18 +6,70 @@ import ( | |
"testing" | ||
"time" | ||
|
||
"github.com/multiversx/mx-chain-go/node/chainSimulator/dtos" | ||
"github.com/multiversx/mx-chain-go/node/chainSimulator/errors" | ||
chainSimulatorProcess "github.com/multiversx/mx-chain-go/node/chainSimulator/process" | ||
"github.com/multiversx/mx-chain-go/process" | ||
|
||
"github.com/multiversx/mx-chain-core-go/core" | ||
coreAPI "github.com/multiversx/mx-chain-core-go/data/api" | ||
"github.com/multiversx/mx-chain-core-go/data/transaction" | ||
vmcommon "github.com/multiversx/mx-chain-vm-common-go" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/multiversx/mx-chain-go/node/chainSimulator/dtos" | ||
"github.com/multiversx/mx-chain-go/node/chainSimulator/errors" | ||
chainSimulatorProcess "github.com/multiversx/mx-chain-go/node/chainSimulator/process" | ||
"github.com/multiversx/mx-chain-go/process" | ||
) | ||
|
||
// GenerateBlocksAndEpochChange - | ||
func GenerateBlocksAndEpochChange(t *testing.T, chainSimulator ChainSimulator) { | ||
genesisBalances := make(map[string]*big.Int) | ||
for _, stakeWallet := range chainSimulator.GetInitialWalletKeys().StakeWallets { | ||
initialAccount, errGet := getAccount(chainSimulator, stakeWallet.Address) | ||
require.Nil(t, errGet) | ||
|
||
genesisBalances[stakeWallet.Address.Bech32] = initialAccount.GetBalance() | ||
} | ||
|
||
time.Sleep(time.Second) | ||
|
||
err := chainSimulator.GenerateBlocksUntilEpochIsReached(4) | ||
require.Nil(t, err) | ||
|
||
numAccountsWithIncreasedBalances := 0 | ||
for _, stakeWallet := range chainSimulator.GetInitialWalletKeys().StakeWallets { | ||
account, errGet := getAccount(chainSimulator, stakeWallet.Address) | ||
require.Nil(t, errGet) | ||
|
||
if account.GetBalance().Cmp(genesisBalances[stakeWallet.Address.Bech32]) > 0 { | ||
numAccountsWithIncreasedBalances++ | ||
} | ||
} | ||
|
||
require.True(t, numAccountsWithIncreasedBalances > 0) | ||
} | ||
|
||
func getAccount(chainSimulator ChainSimulator, address dtos.WalletAddress) (vmcommon.UserAccountHandler, error) { | ||
shardID := GetShardForAddress(chainSimulator, address.Bech32) | ||
account, err := chainSimulator.GetNodeHandler(shardID).GetStateComponents().AccountsAdapter().GetExistingAccount(address.Bytes) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return account.(vmcommon.UserAccountHandler), nil | ||
} | ||
|
||
// TriggerChangeOfEpoch - | ||
func TriggerChangeOfEpoch(t *testing.T, chainSimulator ChainSimulator, nodeHandler chainSimulatorProcess.NodeHandler) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This func can definelty fail if called from any other epoch than 0. We can do it better and iterate from i:= currentEpoch; i< currentEpoch+4 |
||
startEpoch := nodeHandler.GetProcessComponents().EpochStartTrigger().Epoch() | ||
|
||
for i := startEpoch; i < startEpoch+4; i++ { | ||
err := chainSimulator.ForceChangeOfEpoch() | ||
require.Nil(t, err) | ||
|
||
currentEpoch := nodeHandler.GetProcessComponents().EpochStartTrigger().Epoch() | ||
require.Equal(t, i+1, currentEpoch) | ||
} | ||
} | ||
|
||
// CheckSetState - | ||
func CheckSetState(t *testing.T, chainSimulator ChainSimulator, nodeHandler chainSimulatorProcess.NodeHandler) { | ||
keyValueMap := map[string]string{ | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These tests are duplicated from:
1.
TestChainSimulator_GenerateBlocksAndEpochChangeShouldWork
2.
TestSimulator_TriggerChangeOfEpoch
Also, I think we can delete that
time.Sleep
if it works regardlessThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could add a common test functoinality with chainSimulator interface in which you pass which node(shardID) to use