forked from vmware-archive/atc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_resource_factory_factory.go
99 lines (88 loc) · 2.95 KB
/
fake_resource_factory_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
// Code generated by counterfeiter. DO NOT EDIT.
package resourcefakes
import (
"sync"
"github.com/concourse/atc/resource"
"github.com/concourse/atc/worker"
)
type FakeResourceFactoryFactory struct {
FactoryForStub func(workerClient worker.Client) resource.ResourceFactory
factoryForMutex sync.RWMutex
factoryForArgsForCall []struct {
workerClient worker.Client
}
factoryForReturns struct {
result1 resource.ResourceFactory
}
factoryForReturnsOnCall map[int]struct {
result1 resource.ResourceFactory
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeResourceFactoryFactory) FactoryFor(workerClient worker.Client) resource.ResourceFactory {
fake.factoryForMutex.Lock()
ret, specificReturn := fake.factoryForReturnsOnCall[len(fake.factoryForArgsForCall)]
fake.factoryForArgsForCall = append(fake.factoryForArgsForCall, struct {
workerClient worker.Client
}{workerClient})
fake.recordInvocation("FactoryFor", []interface{}{workerClient})
fake.factoryForMutex.Unlock()
if fake.FactoryForStub != nil {
return fake.FactoryForStub(workerClient)
}
if specificReturn {
return ret.result1
}
return fake.factoryForReturns.result1
}
func (fake *FakeResourceFactoryFactory) FactoryForCallCount() int {
fake.factoryForMutex.RLock()
defer fake.factoryForMutex.RUnlock()
return len(fake.factoryForArgsForCall)
}
func (fake *FakeResourceFactoryFactory) FactoryForArgsForCall(i int) worker.Client {
fake.factoryForMutex.RLock()
defer fake.factoryForMutex.RUnlock()
return fake.factoryForArgsForCall[i].workerClient
}
func (fake *FakeResourceFactoryFactory) FactoryForReturns(result1 resource.ResourceFactory) {
fake.FactoryForStub = nil
fake.factoryForReturns = struct {
result1 resource.ResourceFactory
}{result1}
}
func (fake *FakeResourceFactoryFactory) FactoryForReturnsOnCall(i int, result1 resource.ResourceFactory) {
fake.FactoryForStub = nil
if fake.factoryForReturnsOnCall == nil {
fake.factoryForReturnsOnCall = make(map[int]struct {
result1 resource.ResourceFactory
})
}
fake.factoryForReturnsOnCall[i] = struct {
result1 resource.ResourceFactory
}{result1}
}
func (fake *FakeResourceFactoryFactory) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.factoryForMutex.RLock()
defer fake.factoryForMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeResourceFactoryFactory) 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 _ resource.ResourceFactoryFactory = new(FakeResourceFactoryFactory)