mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
386b69f473
* fix incorrect exported name in comments * add comments to exported methods
42 lines
1.4 KiB
Go
42 lines
1.4 KiB
Go
package epoch_processing
|
|
|
|
import (
|
|
"context"
|
|
"path"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/epoch/precompute"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
iface "github.com/prysmaticlabs/prysm/beacon-chain/state/interface"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
"github.com/prysmaticlabs/prysm/spectest/utils"
|
|
)
|
|
|
|
// RunRewardsAndPenaltiesTests executes "epoch_processing/rewards_and_penalties" tests.
|
|
func RunRewardsAndPenaltiesTests(t *testing.T, config string) {
|
|
require.NoError(t, utils.SetConfig(t, config))
|
|
|
|
testPath := "epoch_processing/rewards_and_penalties/pyspec_tests"
|
|
testFolders, testsFolderPath := utils.TestFolders(t, config, "phase0", testPath)
|
|
for _, folder := range testFolders {
|
|
helpers.ClearCache()
|
|
t.Run(folder.Name(), func(t *testing.T) {
|
|
folderPath := path.Join(testsFolderPath, folder.Name())
|
|
RunEpochOperationTest(t, folderPath, processRewardsAndPenaltiesPrecomputeWrapper)
|
|
})
|
|
}
|
|
}
|
|
|
|
func processRewardsAndPenaltiesPrecomputeWrapper(t *testing.T, st iface.BeaconState) (iface.BeaconState, error) {
|
|
ctx := context.Background()
|
|
vp, bp, err := precompute.New(ctx, st)
|
|
require.NoError(t, err)
|
|
vp, bp, err = precompute.ProcessAttestations(ctx, st, vp, bp)
|
|
require.NoError(t, err)
|
|
|
|
st, err = precompute.ProcessRewardsAndPenaltiesPrecompute(st, bp, vp, precompute.AttestationsDelta, precompute.ProposersDelta)
|
|
require.NoError(t, err, "Could not process reward")
|
|
|
|
return st, nil
|
|
}
|