mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
bbde2a6820
* add reset funcs * init -> TestMain for beacon config params * fixes build file * core/epoch spectests updated * core/blocks spectests updated * fix the rest of spectests * SetupTestConfigCleanup * revert copy() api * rever all cases of copy() * fixes spectests * updates fork_test * config_test update * fixes spectest/config_test * Merge refs/heads/master into assert-no-side-effects-occur-in-tests * Merge branch 'master' into assert-no-side-effects-occur-in-tests * Merge refs/heads/master into assert-no-side-effects-occur-in-tests * Merge refs/heads/master into assert-no-side-effects-occur-in-tests * Merge refs/heads/master into assert-no-side-effects-occur-in-tests * Merge refs/heads/master into assert-no-side-effects-occur-in-tests * Merge refs/heads/master into assert-no-side-effects-occur-in-tests * Merge refs/heads/master into assert-no-side-effects-occur-in-tests * Merge refs/heads/master into assert-no-side-effects-occur-in-tests * Merge branch 'master' into assert-no-side-effects-occur-in-tests * Merge refs/heads/master into assert-no-side-effects-occur-in-tests * Merge refs/heads/master into assert-no-side-effects-occur-in-tests
30 lines
834 B
Go
30 lines
834 B
Go
// Package spectest allows for easy switching of chain
|
|
// configuration parameters in spec conformity unit tests.
|
|
package spectest
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
)
|
|
|
|
// SetConfig sets the global params for spec tests depending on the option chosen.
|
|
// Provides reset function allowing to get back to the previous configuration at the end of a test.
|
|
func SetConfig(t *testing.T, config string) error {
|
|
params.SetupTestConfigCleanup(t)
|
|
switch config {
|
|
case "minimal":
|
|
params.OverrideBeaconConfig(params.MinimalSpecConfig())
|
|
return nil
|
|
case "mainnet":
|
|
params.OverrideBeaconConfig(params.MainnetConfig())
|
|
return nil
|
|
case "":
|
|
return errors.New("no config provided")
|
|
default:
|
|
return fmt.Errorf("did not receive a valid config, instead received this %s", config)
|
|
}
|
|
}
|