2023-07-25 23:32:39 +00:00
|
|
|
package epoch_processing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path"
|
|
|
|
"testing"
|
|
|
|
|
2024-02-15 05:46:47 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/core/epoch"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/core/helpers"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/state"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/testing/spectest/utils"
|
2023-07-25 23:32:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// RunSlashingsTests executes "epoch_processing/slashings" tests.
|
|
|
|
func RunSlashingsTests(t *testing.T, config string) {
|
|
|
|
require.NoError(t, utils.SetConfig(t, config))
|
|
|
|
|
|
|
|
testFolders, testsFolderPath := utils.TestFolders(t, config, "deneb", "epoch_processing/slashings/pyspec_tests")
|
|
|
|
for _, folder := range testFolders {
|
|
|
|
t.Run(folder.Name(), func(t *testing.T) {
|
|
|
|
folderPath := path.Join(testsFolderPath, folder.Name())
|
|
|
|
helpers.ClearCache()
|
|
|
|
RunEpochOperationTest(t, folderPath, processSlashingsWrapper)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func processSlashingsWrapper(t *testing.T, st state.BeaconState) (state.BeaconState, error) {
|
|
|
|
st, err := epoch.ProcessSlashings(st, params.BeaconConfig().ProportionalSlashingMultiplierBellatrix)
|
|
|
|
require.NoError(t, err, "Could not process slashings")
|
|
|
|
return st, nil
|
|
|
|
}
|