2019-01-28 22:52:47 +00:00
|
|
|
// VulcanizeDB
|
2019-03-12 15:46:42 +00:00
|
|
|
// Copyright © 2019 Vulcanize
|
2019-01-28 22:52:47 +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/>.
|
|
|
|
|
2019-08-06 21:57:08 +00:00
|
|
|
package mocks
|
2019-01-28 22:52:47 +00:00
|
|
|
|
|
|
|
import (
|
2019-08-06 21:57:08 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/transformer"
|
2019-01-28 22:52:47 +00:00
|
|
|
)
|
|
|
|
|
2019-08-06 21:57:08 +00:00
|
|
|
type MockLogDelegator struct {
|
|
|
|
AddedTransformers []transformer.EventTransformer
|
2019-08-12 17:26:49 +00:00
|
|
|
DelegateCallCount int
|
|
|
|
DelegateErrors []error
|
2019-08-06 21:57:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (delegator *MockLogDelegator) AddTransformer(t transformer.EventTransformer) {
|
|
|
|
delegator.AddedTransformers = append(delegator.AddedTransformers, t)
|
|
|
|
}
|
|
|
|
|
2019-09-19 01:55:15 +00:00
|
|
|
func (delegator *MockLogDelegator) DelegateLogs() error {
|
2019-08-12 17:26:49 +00:00
|
|
|
delegator.DelegateCallCount++
|
2019-09-19 01:55:15 +00:00
|
|
|
if len(delegator.DelegateErrors) > 1 {
|
|
|
|
var delegateErrorThisRun error
|
|
|
|
delegateErrorThisRun, delegator.DelegateErrors = delegator.DelegateErrors[0], delegator.DelegateErrors[1:]
|
|
|
|
return delegateErrorThisRun
|
|
|
|
} else if len(delegator.DelegateErrors) == 1 {
|
|
|
|
thisErr := delegator.DelegateErrors[0]
|
|
|
|
delegator.DelegateErrors = []error{}
|
|
|
|
return thisErr
|
2019-08-12 17:26:49 +00:00
|
|
|
}
|
2019-09-19 01:55:15 +00:00
|
|
|
return nil
|
2019-01-28 22:52:47 +00:00
|
|
|
}
|