2019-01-24 20:41:30 +00:00
|
|
|
// VulcanizeDB
|
2019-03-12 15:46:42 +00:00
|
|
|
// Copyright © 2019 Vulcanize
|
2019-01-24 20:41:30 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-10-26 18:26:10 +00:00
|
|
|
|
2019-01-31 23:14:42 +00:00
|
|
|
package mocks
|
2018-10-26 18:26:10 +00:00
|
|
|
|
|
|
|
import (
|
2019-01-31 23:14:42 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2019-10-24 16:35:39 +00:00
|
|
|
|
2019-02-10 22:42:41 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/storage/utils"
|
2019-01-31 23:14:42 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/transformer"
|
2020-01-29 19:00:07 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/eth/datastore/postgres"
|
2018-10-26 18:26:10 +00:00
|
|
|
)
|
|
|
|
|
2019-10-24 16:35:39 +00:00
|
|
|
// MockStorageTransformer for tests
|
2019-01-31 23:14:42 +00:00
|
|
|
type MockStorageTransformer struct {
|
2019-08-16 21:01:01 +00:00
|
|
|
KeccakOfAddress common.Hash
|
|
|
|
ExecuteErr error
|
2019-10-31 16:04:53 +00:00
|
|
|
PassedDiffs []utils.PersistedStorageDiff
|
2019-01-31 23:14:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-24 16:35:39 +00:00
|
|
|
// Execute mock method
|
2019-10-31 16:04:53 +00:00
|
|
|
func (transformer *MockStorageTransformer) Execute(diff utils.PersistedStorageDiff) error {
|
|
|
|
transformer.PassedDiffs = append(transformer.PassedDiffs, diff)
|
2019-01-31 23:14:42 +00:00
|
|
|
return transformer.ExecuteErr
|
|
|
|
}
|
|
|
|
|
2019-10-24 16:35:39 +00:00
|
|
|
// KeccakContractAddress mock method
|
2019-08-16 21:01:01 +00:00
|
|
|
func (transformer *MockStorageTransformer) KeccakContractAddress() common.Hash {
|
|
|
|
return transformer.KeccakOfAddress
|
2019-01-31 23:14:42 +00:00
|
|
|
}
|
|
|
|
|
2019-10-24 16:35:39 +00:00
|
|
|
// FakeTransformerInitializer mock method
|
2019-01-31 23:14:42 +00:00
|
|
|
func (transformer *MockStorageTransformer) FakeTransformerInitializer(db *postgres.DB) transformer.StorageTransformer {
|
|
|
|
return transformer
|
2018-10-26 18:26:10 +00:00
|
|
|
}
|