forked from pivotal-cf/on-demand-service-broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_dns_retriever_factory.go
110 lines (98 loc) · 2.85 KB
/
fake_dns_retriever_factory.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
// Code generated by counterfeiter. DO NOT EDIT.
package fakes
import (
"sync"
"github.com/amansingh066/on-demand-service-broker/boshdirector"
)
type FakeDNSRetrieverFactory struct {
Stub func(boshdirector.HTTP) boshdirector.DNSRetriever
mutex sync.RWMutex
argsForCall []struct {
arg1 boshdirector.HTTP
}
returns struct {
result1 boshdirector.DNSRetriever
}
returnsOnCall map[int]struct {
result1 boshdirector.DNSRetriever
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeDNSRetrieverFactory) Spy(arg1 boshdirector.HTTP) boshdirector.DNSRetriever {
fake.mutex.Lock()
ret, specificReturn := fake.returnsOnCall[len(fake.argsForCall)]
fake.argsForCall = append(fake.argsForCall, struct {
arg1 boshdirector.HTTP
}{arg1})
stub := fake.Stub
returns := fake.returns
fake.recordInvocation("DNSRetrieverFactory", []interface{}{arg1})
fake.mutex.Unlock()
if stub != nil {
return stub(arg1)
}
if specificReturn {
return ret.result1
}
return returns.result1
}
func (fake *FakeDNSRetrieverFactory) CallCount() int {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return len(fake.argsForCall)
}
func (fake *FakeDNSRetrieverFactory) Calls(stub func(boshdirector.HTTP) boshdirector.DNSRetriever) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = stub
}
func (fake *FakeDNSRetrieverFactory) ArgsForCall(i int) boshdirector.HTTP {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return fake.argsForCall[i].arg1
}
func (fake *FakeDNSRetrieverFactory) Returns(result1 boshdirector.DNSRetriever) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = nil
fake.returns = struct {
result1 boshdirector.DNSRetriever
}{result1}
}
func (fake *FakeDNSRetrieverFactory) ReturnsOnCall(i int, result1 boshdirector.DNSRetriever) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = nil
if fake.returnsOnCall == nil {
fake.returnsOnCall = make(map[int]struct {
result1 boshdirector.DNSRetriever
})
}
fake.returnsOnCall[i] = struct {
result1 boshdirector.DNSRetriever
}{result1}
}
func (fake *FakeDNSRetrieverFactory) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.mutex.RLock()
defer fake.mutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeDNSRetrieverFactory) 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 _ boshdirector.DNSRetrieverFactory = new(FakeDNSRetrieverFactory).Spy