mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-02 08:17:39 +00:00
648e360842
* Refactor shared/testutil/spectest * update operations * update epoch_processing * rename spectest.go
30 lines
987 B
Go
30 lines
987 B
Go
package epoch_processing
|
|
|
|
import (
|
|
"path"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/epoch"
|
|
iface "github.com/prysmaticlabs/prysm/beacon-chain/state/interface"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
"github.com/prysmaticlabs/prysm/spectest/utils"
|
|
)
|
|
|
|
func RunRandaoMixesResetTests(t *testing.T, config string) {
|
|
require.NoError(t, utils.SetConfig(t, config))
|
|
|
|
testFolders, testsFolderPath := utils.TestFolders(t, config, "phase0", "epoch_processing/randao_mixes_reset/pyspec_tests")
|
|
for _, folder := range testFolders {
|
|
t.Run(folder.Name(), func(t *testing.T) {
|
|
folderPath := path.Join(testsFolderPath, folder.Name())
|
|
RunEpochOperationTest(t, folderPath, processRandaoMixesResetWrapper)
|
|
})
|
|
}
|
|
}
|
|
|
|
func processRandaoMixesResetWrapper(t *testing.T, state iface.BeaconState) (iface.BeaconState, error) {
|
|
state, err := epoch.ProcessRandaoMixesReset(state)
|
|
require.NoError(t, err, "Could not process final updates")
|
|
return state, nil
|
|
}
|