forked from cloudfoundry-community/cloudfoundry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_sshactor.go
111 lines (99 loc) · 3.34 KB
/
fake_sshactor.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
111
// Code generated by counterfeiter. DO NOT EDIT.
package v3actionfakes
import (
"sync"
"code.cloudfoundry.org/cli/actor/sharedaction"
"code.cloudfoundry.org/cli/actor/v3action"
)
type FakeSSHActor struct {
ExecuteSecureShellStub func(sharedaction.SSHOptions) error
executeSecureShellMutex sync.RWMutex
executeSecureShellArgsForCall []struct {
arg1 sharedaction.SSHOptions
}
executeSecureShellReturns struct {
result1 error
}
executeSecureShellReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeSSHActor) ExecuteSecureShell(arg1 sharedaction.SSHOptions) error {
fake.executeSecureShellMutex.Lock()
ret, specificReturn := fake.executeSecureShellReturnsOnCall[len(fake.executeSecureShellArgsForCall)]
fake.executeSecureShellArgsForCall = append(fake.executeSecureShellArgsForCall, struct {
arg1 sharedaction.SSHOptions
}{arg1})
fake.recordInvocation("ExecuteSecureShell", []interface{}{arg1})
fake.executeSecureShellMutex.Unlock()
if fake.ExecuteSecureShellStub != nil {
return fake.ExecuteSecureShellStub(arg1)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.executeSecureShellReturns
return fakeReturns.result1
}
func (fake *FakeSSHActor) ExecuteSecureShellCallCount() int {
fake.executeSecureShellMutex.RLock()
defer fake.executeSecureShellMutex.RUnlock()
return len(fake.executeSecureShellArgsForCall)
}
func (fake *FakeSSHActor) ExecuteSecureShellCalls(stub func(sharedaction.SSHOptions) error) {
fake.executeSecureShellMutex.Lock()
defer fake.executeSecureShellMutex.Unlock()
fake.ExecuteSecureShellStub = stub
}
func (fake *FakeSSHActor) ExecuteSecureShellArgsForCall(i int) sharedaction.SSHOptions {
fake.executeSecureShellMutex.RLock()
defer fake.executeSecureShellMutex.RUnlock()
argsForCall := fake.executeSecureShellArgsForCall[i]
return argsForCall.arg1
}
func (fake *FakeSSHActor) ExecuteSecureShellReturns(result1 error) {
fake.executeSecureShellMutex.Lock()
defer fake.executeSecureShellMutex.Unlock()
fake.ExecuteSecureShellStub = nil
fake.executeSecureShellReturns = struct {
result1 error
}{result1}
}
func (fake *FakeSSHActor) ExecuteSecureShellReturnsOnCall(i int, result1 error) {
fake.executeSecureShellMutex.Lock()
defer fake.executeSecureShellMutex.Unlock()
fake.ExecuteSecureShellStub = nil
if fake.executeSecureShellReturnsOnCall == nil {
fake.executeSecureShellReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.executeSecureShellReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *FakeSSHActor) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.executeSecureShellMutex.RLock()
defer fake.executeSecureShellMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeSSHActor) 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 _ v3action.SSHActor = new(FakeSSHActor)