mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
386b69f473
* fix incorrect exported name in comments * add comments to exported methods
31 lines
1.0 KiB
Go
31 lines
1.0 KiB
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"
|
|
)
|
|
|
|
// RunEth1DataResetTests executes "epoch_processing/eth1_data_reset" tests.
|
|
func RunEth1DataResetTests(t *testing.T, config string) {
|
|
require.NoError(t, utils.SetConfig(t, config))
|
|
|
|
testFolders, testsFolderPath := utils.TestFolders(t, config, "phase0", "epoch_processing/eth1_data_reset/pyspec_tests")
|
|
for _, folder := range testFolders {
|
|
t.Run(folder.Name(), func(t *testing.T) {
|
|
folderPath := path.Join(testsFolderPath, folder.Name())
|
|
RunEpochOperationTest(t, folderPath, processEth1DataResetWrapper)
|
|
})
|
|
}
|
|
}
|
|
|
|
func processEth1DataResetWrapper(t *testing.T, state iface.BeaconState) (iface.BeaconState, error) {
|
|
state, err := epoch.ProcessEth1DataReset(state)
|
|
require.NoError(t, err, "Could not process final updates")
|
|
return state, nil
|
|
}
|