-
Notifications
You must be signed in to change notification settings - Fork 202
/
accountsAdapterStub.go
201 lines (166 loc) · 5.08 KB
/
accountsAdapterStub.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
package state
import (
"errors"
"github.com/ElrondNetwork/elrond-go-core/core"
"github.com/ElrondNetwork/elrond-go/common"
"github.com/ElrondNetwork/elrond-go/state"
vmcommon "github.com/ElrondNetwork/elrond-vm-common"
)
var errNotImplemented = errors.New("not implemented")
// AccountsStub -
type AccountsStub struct {
GetExistingAccountCalled func(addressContainer []byte) (vmcommon.AccountHandler, error)
LoadAccountCalled func(container []byte) (vmcommon.AccountHandler, error)
SaveAccountCalled func(account vmcommon.AccountHandler) error
RemoveAccountCalled func(addressContainer []byte) error
CommitCalled func() ([]byte, error)
JournalLenCalled func() int
RevertToSnapshotCalled func(snapshot int) error
RootHashCalled func() ([]byte, error)
RecreateTrieCalled func(rootHash []byte) error
PruneTrieCalled func(rootHash []byte, identifier state.TriePruningIdentifier)
CancelPruneCalled func(rootHash []byte, identifier state.TriePruningIdentifier)
SnapshotStateCalled func(rootHash []byte)
SetStateCheckpointCalled func(rootHash []byte)
IsPruningEnabledCalled func() bool
GetAllLeavesCalled func(rootHash []byte) (chan core.KeyValueHolder, error)
RecreateAllTriesCalled func(rootHash []byte) (map[string]common.Trie, error)
GetNumCheckpointsCalled func() uint32
GetCodeCalled func([]byte) []byte
GetTrieCalled func([]byte) (common.Trie, error)
}
// GetTrie -
func (as *AccountsStub) GetTrie(codeHash []byte) (common.Trie, error) {
if as.GetTrieCalled != nil {
return as.GetTrieCalled(codeHash)
}
return nil, nil
}
// GetCode -
func (as *AccountsStub) GetCode(codeHash []byte) []byte {
if as.GetCodeCalled != nil {
return as.GetCodeCalled(codeHash)
}
return nil
}
// RecreateAllTries -
func (as *AccountsStub) RecreateAllTries(rootHash []byte) (map[string]common.Trie, error) {
if as.RecreateAllTriesCalled != nil {
return as.RecreateAllTriesCalled(rootHash)
}
return nil, nil
}
// LoadAccount -
func (as *AccountsStub) LoadAccount(address []byte) (vmcommon.AccountHandler, error) {
if as.LoadAccountCalled != nil {
return as.LoadAccountCalled(address)
}
return NewAccountWrapMock(address), nil
}
// SaveAccount -
func (as *AccountsStub) SaveAccount(account vmcommon.AccountHandler) error {
if as.SaveAccountCalled != nil {
return as.SaveAccountCalled(account)
}
return nil
}
// GetAllLeaves -
func (as *AccountsStub) GetAllLeaves(rootHash []byte) (chan core.KeyValueHolder, error) {
if as.GetAllLeavesCalled != nil {
return as.GetAllLeavesCalled(rootHash)
}
return nil, nil
}
// Commit -
func (as *AccountsStub) Commit() ([]byte, error) {
if as.CommitCalled != nil {
return as.CommitCalled()
}
return nil, errNotImplemented
}
// GetExistingAccount -
func (as *AccountsStub) GetExistingAccount(addressContainer []byte) (vmcommon.AccountHandler, error) {
if as.GetExistingAccountCalled != nil {
return as.GetExistingAccountCalled(addressContainer)
}
return nil, errNotImplemented
}
// JournalLen -
func (as *AccountsStub) JournalLen() int {
if as.JournalLenCalled != nil {
return as.JournalLenCalled()
}
return 0
}
// RemoveAccount -
func (as *AccountsStub) RemoveAccount(addressContainer []byte) error {
if as.RemoveAccountCalled != nil {
return as.RemoveAccountCalled(addressContainer)
}
return errNotImplemented
}
// RevertToSnapshot -
func (as *AccountsStub) RevertToSnapshot(snapshot int) error {
if as.RevertToSnapshotCalled != nil {
return as.RevertToSnapshotCalled(snapshot)
}
return errNotImplemented
}
// RootHash -
func (as *AccountsStub) RootHash() ([]byte, error) {
if as.RootHashCalled != nil {
return as.RootHashCalled()
}
return nil, errNotImplemented
}
// RecreateTrie -
func (as *AccountsStub) RecreateTrie(rootHash []byte) error {
if as.RecreateTrieCalled != nil {
return as.RecreateTrieCalled(rootHash)
}
return errNotImplemented
}
// PruneTrie -
func (as *AccountsStub) PruneTrie(rootHash []byte, identifier state.TriePruningIdentifier) {
as.PruneTrieCalled(rootHash, identifier)
}
// CancelPrune -
func (as *AccountsStub) CancelPrune(rootHash []byte, identifier state.TriePruningIdentifier) {
if as.CancelPruneCalled != nil {
as.CancelPruneCalled(rootHash, identifier)
}
}
// SnapshotState -
func (as *AccountsStub) SnapshotState(rootHash []byte) {
if as.SnapshotStateCalled != nil {
as.SnapshotStateCalled(rootHash)
}
}
// SetStateCheckpoint -
func (as *AccountsStub) SetStateCheckpoint(rootHash []byte) {
if as.SetStateCheckpointCalled != nil {
as.SetStateCheckpointCalled(rootHash)
}
}
// IsPruningEnabled -
func (as *AccountsStub) IsPruningEnabled() bool {
if as.IsPruningEnabledCalled != nil {
return as.IsPruningEnabledCalled()
}
return false
}
// GetNumCheckpoints -
func (as *AccountsStub) GetNumCheckpoints() uint32 {
if as.GetNumCheckpointsCalled != nil {
return as.GetNumCheckpointsCalled()
}
return 0
}
// Close -
func (as *AccountsStub) Close() error {
return nil
}
// IsInterfaceNil returns true if there is no value under the interface
func (as *AccountsStub) IsInterfaceNil() bool {
return as == nil
}