mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 22:27:17 +00:00
386b69f473
* fix incorrect exported name in comments * add comments to exported methods
40 lines
1.4 KiB
Go
40 lines
1.4 KiB
Go
package epoch_processing
|
|
|
|
import (
|
|
"context"
|
|
"path"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/epoch/precompute"
|
|
iface "github.com/prysmaticlabs/prysm/beacon-chain/state/interface"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
"github.com/prysmaticlabs/prysm/spectest/utils"
|
|
)
|
|
|
|
// RunJustificationAndFinalizationTests executes "epoch_processing/justification_and_finalization" tests.
|
|
func RunJustificationAndFinalizationTests(t *testing.T, config string) {
|
|
require.NoError(t, utils.SetConfig(t, config))
|
|
|
|
testPath := "epoch_processing/justification_and_finalization/pyspec_tests"
|
|
testFolders, testsFolderPath := utils.TestFolders(t, config, "phase0", testPath)
|
|
for _, folder := range testFolders {
|
|
t.Run(folder.Name(), func(t *testing.T) {
|
|
folderPath := path.Join(testsFolderPath, folder.Name())
|
|
RunEpochOperationTest(t, folderPath, processJustificationAndFinalizationPrecomputeWrapper)
|
|
})
|
|
}
|
|
}
|
|
|
|
func processJustificationAndFinalizationPrecomputeWrapper(t *testing.T, st iface.BeaconState) (iface.BeaconState, error) {
|
|
ctx := context.Background()
|
|
vp, bp, err := precompute.New(ctx, st)
|
|
require.NoError(t, err)
|
|
_, bp, err = precompute.ProcessAttestations(ctx, st, vp, bp)
|
|
require.NoError(t, err)
|
|
|
|
st, err = precompute.ProcessJustificationAndFinalizationPreCompute(st, bp)
|
|
require.NoError(t, err, "Could not process justification")
|
|
|
|
return st, nil
|
|
}
|