-
Notifications
You must be signed in to change notification settings - Fork 162
/
fake_deployment_template_factory.go
77 lines (67 loc) · 2.78 KB
/
fake_deployment_template_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
// This file was generated by counterfeiter
package templatefakes
import (
"sync"
"github.com/cloudfoundry/bosh-cli/deployment/template"
)
type FakeDeploymentTemplateFactory struct {
NewDeploymentTemplateFromPathStub func(path string) (template.DeploymentTemplate, error)
newDeploymentTemplateFromPathMutex sync.RWMutex
newDeploymentTemplateFromPathArgsForCall []struct {
path string
}
newDeploymentTemplateFromPathReturns struct {
result1 template.DeploymentTemplate
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeDeploymentTemplateFactory) NewDeploymentTemplateFromPath(path string) (template.DeploymentTemplate, error) {
fake.newDeploymentTemplateFromPathMutex.Lock()
fake.newDeploymentTemplateFromPathArgsForCall = append(fake.newDeploymentTemplateFromPathArgsForCall, struct {
path string
}{path})
fake.recordInvocation("NewDeploymentTemplateFromPath", []interface{}{path})
fake.newDeploymentTemplateFromPathMutex.Unlock()
if fake.NewDeploymentTemplateFromPathStub != nil {
return fake.NewDeploymentTemplateFromPathStub(path)
}
return fake.newDeploymentTemplateFromPathReturns.result1, fake.newDeploymentTemplateFromPathReturns.result2
}
func (fake *FakeDeploymentTemplateFactory) NewDeploymentTemplateFromPathCallCount() int {
fake.newDeploymentTemplateFromPathMutex.RLock()
defer fake.newDeploymentTemplateFromPathMutex.RUnlock()
return len(fake.newDeploymentTemplateFromPathArgsForCall)
}
func (fake *FakeDeploymentTemplateFactory) NewDeploymentTemplateFromPathArgsForCall(i int) string {
fake.newDeploymentTemplateFromPathMutex.RLock()
defer fake.newDeploymentTemplateFromPathMutex.RUnlock()
return fake.newDeploymentTemplateFromPathArgsForCall[i].path
}
func (fake *FakeDeploymentTemplateFactory) NewDeploymentTemplateFromPathReturns(result1 template.DeploymentTemplate, result2 error) {
fake.NewDeploymentTemplateFromPathStub = nil
fake.newDeploymentTemplateFromPathReturns = struct {
result1 template.DeploymentTemplate
result2 error
}{result1, result2}
}
func (fake *FakeDeploymentTemplateFactory) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.newDeploymentTemplateFromPathMutex.RLock()
defer fake.newDeploymentTemplateFromPathMutex.RUnlock()
return fake.invocations
}
func (fake *FakeDeploymentTemplateFactory) 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 _ template.DeploymentTemplateFactory = new(FakeDeploymentTemplateFactory)