mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
d0c740f477
* WIP * WIP * adding in migration function * updating mock validator and gaz * adding descriptive logs * fixing mocking * fixing tests * fixing mock * adding changes to handle enable builder settings * fixing tests and edge case * reduce cognative complexity of function * further reducing cognative complexity on function * WIP * fixing unit test on migration * adding more tests * gaz and fix unit test * fixing deepsource issues * fixing more deesource issues missed previously * removing unused reciever name * WIP fix to migration logic * fixing loging info * reverting migration logic, converting logic to address issues discussed on slack, adding unit tests * adding test for builder setting only not saved to db * addressing comment * fixing flag * removing accidently missed deprecated flags * rolling back mock on pr * fixing fmt linting * updating comments based on feedback * Update config/features/flags.go Co-authored-by: Sammy Rosso <15244892+saolyn@users.noreply.github.com> * fixing based on feedback on PR * Update config/validator/service/proposer_settings.go Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com> * Update validator/client/runner.go Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com> * Update validator/db/kv/proposer_settings.go Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com> * adding additional logs to clear up some steps based on feedback * fixing log * deepsource * adding comments based on review feedback --------- Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Sammy Rosso <15244892+saolyn@users.noreply.github.com> Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
215 lines
5.8 KiB
Go
215 lines
5.8 KiB
Go
package mock
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
validatorserviceconfig "github.com/prysmaticlabs/prysm/v4/config/validator/service"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/primitives"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v4/validator/accounts/iface"
|
|
iface2 "github.com/prysmaticlabs/prysm/v4/validator/client/iface"
|
|
"github.com/prysmaticlabs/prysm/v4/validator/keymanager"
|
|
)
|
|
|
|
// Wallet contains an in-memory, simulated wallet implementation.
|
|
type Wallet struct {
|
|
InnerAccountsDir string
|
|
Directories []string
|
|
Files map[string]map[string][]byte
|
|
EncryptedSeedFile []byte
|
|
AccountPasswords map[string]string
|
|
WalletPassword string
|
|
UnlockAccounts bool
|
|
lock sync.RWMutex
|
|
HasWriteFileError bool
|
|
}
|
|
|
|
// AccountNames --
|
|
func (w *Wallet) AccountNames() ([]string, error) {
|
|
w.lock.RLock()
|
|
defer w.lock.RUnlock()
|
|
names := make([]string, 0)
|
|
for name := range w.AccountPasswords {
|
|
names = append(names, name)
|
|
}
|
|
return names, nil
|
|
}
|
|
|
|
// AccountsDir --
|
|
func (w *Wallet) AccountsDir() string {
|
|
return w.InnerAccountsDir
|
|
}
|
|
|
|
// Exists --
|
|
func (w *Wallet) Exists() (bool, error) {
|
|
return len(w.Directories) > 0, nil
|
|
}
|
|
|
|
// Password --
|
|
func (w *Wallet) Password() string {
|
|
return w.WalletPassword
|
|
}
|
|
|
|
// WriteFileAtPath --
|
|
func (w *Wallet) WriteFileAtPath(_ context.Context, pathName, fileName string, data []byte) error {
|
|
w.lock.Lock()
|
|
defer w.lock.Unlock()
|
|
if w.HasWriteFileError {
|
|
// reset the flag to not contaminate other tests
|
|
w.HasWriteFileError = false
|
|
return errors.New("could not write keystore file for accounts")
|
|
}
|
|
if w.Files[pathName] == nil {
|
|
w.Files[pathName] = make(map[string][]byte)
|
|
}
|
|
w.Files[pathName][fileName] = data
|
|
return nil
|
|
}
|
|
|
|
// ReadFileAtPath --
|
|
func (w *Wallet) ReadFileAtPath(_ context.Context, pathName, fileName string) ([]byte, error) {
|
|
w.lock.RLock()
|
|
defer w.lock.RUnlock()
|
|
for f, v := range w.Files[pathName] {
|
|
if strings.Contains(fileName, f) {
|
|
return v, nil
|
|
}
|
|
}
|
|
return nil, errors.New("no files found")
|
|
}
|
|
|
|
// InitializeKeymanager --
|
|
func (_ *Wallet) InitializeKeymanager(_ context.Context, _ iface.InitKeymanagerConfig) (keymanager.IKeymanager, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
type MockValidator struct {
|
|
Km keymanager.IKeymanager
|
|
proposerSettings *validatorserviceconfig.ProposerSettings
|
|
}
|
|
|
|
func (_ *MockValidator) LogSyncCommitteeMessagesSubmitted() {}
|
|
|
|
func (_ *MockValidator) Done() {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) WaitForChainStart(_ context.Context) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) WaitForSync(_ context.Context) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) WaitForActivation(_ context.Context, _ chan [][48]byte) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) CanonicalHeadSlot(_ context.Context) (primitives.Slot, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) NextSlot() <-chan primitives.Slot {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) SlotDeadline(_ primitives.Slot) time.Time {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) LogValidatorGainsAndLosses(_ context.Context, _ primitives.Slot) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) UpdateDuties(_ context.Context, _ primitives.Slot) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) RolesAt(_ context.Context, _ primitives.Slot) (map[[48]byte][]iface2.ValidatorRole, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) SubmitAttestation(_ context.Context, _ primitives.Slot, _ [48]byte) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) ProposeBlock(_ context.Context, _ primitives.Slot, _ [48]byte) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) SubmitAggregateAndProof(_ context.Context, _ primitives.Slot, _ [48]byte) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) SubmitSyncCommitteeMessage(_ context.Context, _ primitives.Slot, _ [48]byte) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) SubmitSignedContributionAndProof(_ context.Context, _ primitives.Slot, _ [48]byte) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) LogAttestationsSubmitted() {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) UpdateDomainDataCaches(_ context.Context, _ primitives.Slot) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) WaitForKeymanagerInitialization(_ context.Context) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (m *MockValidator) Keymanager() (keymanager.IKeymanager, error) {
|
|
return m.Km, nil
|
|
}
|
|
|
|
func (_ *MockValidator) ReceiveBlocks(_ context.Context, _ chan<- error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) HandleKeyReload(_ context.Context, _ [][48]byte) (bool, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (_ *MockValidator) CheckDoppelGanger(_ context.Context) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
// HasProposerSettings for mocking
|
|
func (*MockValidator) HasProposerSettings() bool {
|
|
panic("implement me")
|
|
}
|
|
|
|
// PushProposerSettings for mocking
|
|
func (_ *MockValidator) PushProposerSettings(_ context.Context, _ keymanager.IKeymanager, _ primitives.Slot, _ time.Time) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
// SetPubKeyToValidatorIndexMap for mocking
|
|
func (_ *MockValidator) SetPubKeyToValidatorIndexMap(_ context.Context, _ keymanager.IKeymanager) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
// SignValidatorRegistrationRequest for mocking
|
|
func (_ *MockValidator) SignValidatorRegistrationRequest(_ context.Context, _ iface2.SigningFunc, _ *ethpb.ValidatorRegistrationV1) (*ethpb.SignedValidatorRegistrationV1, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
// ProposerSettings for mocking
|
|
func (m *MockValidator) ProposerSettings() *validatorserviceconfig.ProposerSettings {
|
|
return m.proposerSettings
|
|
}
|
|
|
|
// SetProposerSettings for mocking
|
|
func (m *MockValidator) SetProposerSettings(_ context.Context, settings *validatorserviceconfig.ProposerSettings) error {
|
|
m.proposerSettings = settings
|
|
return nil
|
|
}
|