package epoch_processing import ( "path" "testing" "github.com/prysmaticlabs/prysm/beacon-chain/core/epoch" "github.com/prysmaticlabs/prysm/beacon-chain/state" "github.com/prysmaticlabs/prysm/testing/require" "github.com/prysmaticlabs/prysm/testing/spectest/utils" ) // RunSlashingsResetTests executes "epoch_processing/slashings_reset" tests. func RunSlashingsResetTests(t *testing.T, config string) { require.NoError(t, utils.SetConfig(t, config)) testFolders, testsFolderPath := utils.TestFolders(t, config, "bellatrix", "epoch_processing/slashings_reset/pyspec_tests") for _, folder := range testFolders { t.Run(folder.Name(), func(t *testing.T) { folderPath := path.Join(testsFolderPath, folder.Name()) RunEpochOperationTest(t, folderPath, processSlashingsResetWrapper) }) } } func processSlashingsResetWrapper(t *testing.T, state state.BeaconState) (state.BeaconState, error) { state, err := epoch.ProcessSlashingsReset(state) require.NoError(t, err, "Could not process final updates") return state, nil }