forked from cloudfoundry/bosh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_runner.go
86 lines (76 loc) · 2.19 KB
/
fake_runner.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
// This file was generated by counterfeiter
package sshfakes
import (
"sync"
"github.com/cloudfoundry/bosh-cli/director"
"github.com/cloudfoundry/bosh-cli/ssh"
)
type FakeRunner struct {
RunStub func(ssh.ConnectionOpts, director.SSHResult, []string) error
runMutex sync.RWMutex
runArgsForCall []struct {
arg1 ssh.ConnectionOpts
arg2 director.SSHResult
arg3 []string
}
runReturns struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeRunner) Run(arg1 ssh.ConnectionOpts, arg2 director.SSHResult, arg3 []string) error {
var arg3Copy []string
if arg3 != nil {
arg3Copy = make([]string, len(arg3))
copy(arg3Copy, arg3)
}
fake.runMutex.Lock()
fake.runArgsForCall = append(fake.runArgsForCall, struct {
arg1 ssh.ConnectionOpts
arg2 director.SSHResult
arg3 []string
}{arg1, arg2, arg3Copy})
fake.recordInvocation("Run", []interface{}{arg1, arg2, arg3Copy})
fake.runMutex.Unlock()
if fake.RunStub != nil {
return fake.RunStub(arg1, arg2, arg3)
} else {
return fake.runReturns.result1
}
}
func (fake *FakeRunner) RunCallCount() int {
fake.runMutex.RLock()
defer fake.runMutex.RUnlock()
return len(fake.runArgsForCall)
}
func (fake *FakeRunner) RunArgsForCall(i int) (ssh.ConnectionOpts, director.SSHResult, []string) {
fake.runMutex.RLock()
defer fake.runMutex.RUnlock()
return fake.runArgsForCall[i].arg1, fake.runArgsForCall[i].arg2, fake.runArgsForCall[i].arg3
}
func (fake *FakeRunner) RunReturns(result1 error) {
fake.RunStub = nil
fake.runReturns = struct {
result1 error
}{result1}
}
func (fake *FakeRunner) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.runMutex.RLock()
defer fake.runMutex.RUnlock()
return fake.invocations
}
func (fake *FakeRunner) 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 _ ssh.Runner = new(FakeRunner)