mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
e477fdfd6d
* Update rules_go and fix proto conflicts * gaz * Update generated code * First pass inclusion of using baked states * more emptypb fixes * remove testnet genesis files, only embed mainnet * Refactoring for SaveGenesisData, fix tests that use mainnet config but do not support mainnet genesis values * a bit more refactoring, load genesis from a file. Needs tests still * Add method to ensure an embedded genesis file also has the appropriate genesis block * gofmt * more clear error * Check genesis fork version to ensure testnet config matches genesis file * viz * test for SaveGenesisData * More genesis db method tests * Merge * Minor tweaks, lint, fmt, etc * Add more test to genesis db methods * Revert beacon-chain/state/stateV0/BUILD.bazel * Update beacon-chain/db/iface/errors.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * PR feedback * Update beacon-chain/db/kv/genesis.go Co-authored-by: terence tsao <terence@prysmaticlabs.com> * fmt.Errorf works better for nil errors Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
33 lines
605 B
Go
33 lines
605 B
Go
package genesis_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/genesis"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
)
|
|
|
|
func TestGenesisState(t *testing.T) {
|
|
tests := []struct {
|
|
name params.ConfigName
|
|
}{
|
|
{
|
|
name: params.Mainnet,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(params.ConfigNames[tt.name], func(t *testing.T) {
|
|
st, err := genesis.State(params.ConfigNames[tt.name])
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if st == nil {
|
|
t.Fatal("nil state")
|
|
}
|
|
if st.NumValidators() <= 0 {
|
|
t.Error("No validators present in state")
|
|
}
|
|
})
|
|
}
|
|
}
|