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-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"
|
2018-10-26 18:26:10 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
|
|
|
)
|
|
|
|
|
2019-01-31 23:14:42 +00:00
|
|
|
type MockStorageTransformer struct {
|
2019-08-16 21:01:01 +00:00
|
|
|
KeccakOfAddress common.Hash
|
|
|
|
ExecuteErr error
|
|
|
|
PassedDiff utils.StorageDiff
|
2019-01-31 23:14:42 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 19:28:20 +00:00
|
|
|
func (transformer *MockStorageTransformer) Execute(diff utils.StorageDiff) error {
|
|
|
|
transformer.PassedDiff = diff
|
2019-01-31 23:14:42 +00:00
|
|
|
return transformer.ExecuteErr
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
func (transformer *MockStorageTransformer) FakeTransformerInitializer(db *postgres.DB) transformer.StorageTransformer {
|
|
|
|
return transformer
|
2018-10-26 18:26:10 +00:00
|
|
|
}
|