149 lines
3.7 KiB
Go
149 lines
3.7 KiB
Go
// Code generated by counterfeiter. DO NOT EDIT.
|
|
package metricsfakes
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/hyperledger/fabric/common/metrics"
|
|
)
|
|
|
|
type Histogram struct {
|
|
ObserveStub func(float64)
|
|
observeMutex sync.RWMutex
|
|
observeArgsForCall []struct {
|
|
arg1 float64
|
|
}
|
|
WithStub func(...string) metrics.Histogram
|
|
withMutex sync.RWMutex
|
|
withArgsForCall []struct {
|
|
arg1 []string
|
|
}
|
|
withReturns struct {
|
|
result1 metrics.Histogram
|
|
}
|
|
withReturnsOnCall map[int]struct {
|
|
result1 metrics.Histogram
|
|
}
|
|
invocations map[string][][]interface{}
|
|
invocationsMutex sync.RWMutex
|
|
}
|
|
|
|
func (fake *Histogram) Observe(arg1 float64) {
|
|
fake.observeMutex.Lock()
|
|
fake.observeArgsForCall = append(fake.observeArgsForCall, struct {
|
|
arg1 float64
|
|
}{arg1})
|
|
fake.recordInvocation("Observe", []interface{}{arg1})
|
|
fake.observeMutex.Unlock()
|
|
if fake.ObserveStub != nil {
|
|
fake.ObserveStub(arg1)
|
|
}
|
|
}
|
|
|
|
func (fake *Histogram) ObserveCallCount() int {
|
|
fake.observeMutex.RLock()
|
|
defer fake.observeMutex.RUnlock()
|
|
return len(fake.observeArgsForCall)
|
|
}
|
|
|
|
func (fake *Histogram) ObserveCalls(stub func(float64)) {
|
|
fake.observeMutex.Lock()
|
|
defer fake.observeMutex.Unlock()
|
|
fake.ObserveStub = stub
|
|
}
|
|
|
|
func (fake *Histogram) ObserveArgsForCall(i int) float64 {
|
|
fake.observeMutex.RLock()
|
|
defer fake.observeMutex.RUnlock()
|
|
argsForCall := fake.observeArgsForCall[i]
|
|
return argsForCall.arg1
|
|
}
|
|
|
|
func (fake *Histogram) With(arg1 ...string) metrics.Histogram {
|
|
fake.withMutex.Lock()
|
|
ret, specificReturn := fake.withReturnsOnCall[len(fake.withArgsForCall)]
|
|
fake.withArgsForCall = append(fake.withArgsForCall, struct {
|
|
arg1 []string
|
|
}{arg1})
|
|
fake.recordInvocation("With", []interface{}{arg1})
|
|
fake.withMutex.Unlock()
|
|
if fake.WithStub != nil {
|
|
return fake.WithStub(arg1...)
|
|
}
|
|
if specificReturn {
|
|
return ret.result1
|
|
}
|
|
fakeReturns := fake.withReturns
|
|
return fakeReturns.result1
|
|
}
|
|
|
|
func (fake *Histogram) WithCallCount() int {
|
|
fake.withMutex.RLock()
|
|
defer fake.withMutex.RUnlock()
|
|
return len(fake.withArgsForCall)
|
|
}
|
|
|
|
func (fake *Histogram) WithCalls(stub func(...string) metrics.Histogram) {
|
|
fake.withMutex.Lock()
|
|
defer fake.withMutex.Unlock()
|
|
fake.WithStub = stub
|
|
}
|
|
|
|
func (fake *Histogram) WithArgsForCall(i int) []string {
|
|
fake.withMutex.RLock()
|
|
defer fake.withMutex.RUnlock()
|
|
argsForCall := fake.withArgsForCall[i]
|
|
return argsForCall.arg1
|
|
}
|
|
|
|
func (fake *Histogram) WithReturns(result1 metrics.Histogram) {
|
|
fake.withMutex.Lock()
|
|
defer fake.withMutex.Unlock()
|
|
fake.WithStub = nil
|
|
fake.withReturns = struct {
|
|
result1 metrics.Histogram
|
|
}{result1}
|
|
}
|
|
|
|
func (fake *Histogram) WithReturnsOnCall(i int, result1 metrics.Histogram) {
|
|
fake.withMutex.Lock()
|
|
defer fake.withMutex.Unlock()
|
|
fake.WithStub = nil
|
|
if fake.withReturnsOnCall == nil {
|
|
fake.withReturnsOnCall = make(map[int]struct {
|
|
result1 metrics.Histogram
|
|
})
|
|
}
|
|
fake.withReturnsOnCall[i] = struct {
|
|
result1 metrics.Histogram
|
|
}{result1}
|
|
}
|
|
|
|
func (fake *Histogram) Invocations() map[string][][]interface{} {
|
|
fake.invocationsMutex.RLock()
|
|
defer fake.invocationsMutex.RUnlock()
|
|
fake.observeMutex.RLock()
|
|
defer fake.observeMutex.RUnlock()
|
|
fake.withMutex.RLock()
|
|
defer fake.withMutex.RUnlock()
|
|
copiedInvocations := map[string][][]interface{}{}
|
|
for key, value := range fake.invocations {
|
|
copiedInvocations[key] = value
|
|
}
|
|
return copiedInvocations
|
|
}
|
|
|
|
func (fake *Histogram) recordInvocation(key string, args []interface{}) {
|
|
fake.invocationsMutex.Lock()
|
|
defer fake.invocationsMutex.Unlock()
|
|
if fake.invocations == nil {
|
|
fake.invocations = map[string][][]interface{}{}
|
|
}
|
|
if fake.invocations[key] == nil {
|
|
fake.invocations[key] = [][]interface{}{}
|
|
}
|
|
fake.invocations[key] = append(fake.invocations[key], args)
|
|
}
|
|
|
|
var _ metrics.Histogram = new(Histogram)
|