-
Notifications
You must be signed in to change notification settings - Fork 162
/
fake_login_strategy.go
66 lines (57 loc) · 1.56 KB
/
fake_login_strategy.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
// This file was generated by counterfeiter
package cmdfakes
import (
"sync"
"github.com/cloudfoundry/bosh-cli/cmd"
)
type FakeLoginStrategy struct {
TryStub func() error
tryMutex sync.RWMutex
tryArgsForCall []struct{}
tryReturns struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeLoginStrategy) Try() error {
fake.tryMutex.Lock()
fake.tryArgsForCall = append(fake.tryArgsForCall, struct{}{})
fake.recordInvocation("Try", []interface{}{})
fake.tryMutex.Unlock()
if fake.TryStub != nil {
return fake.TryStub()
} else {
return fake.tryReturns.result1
}
}
func (fake *FakeLoginStrategy) TryCallCount() int {
fake.tryMutex.RLock()
defer fake.tryMutex.RUnlock()
return len(fake.tryArgsForCall)
}
func (fake *FakeLoginStrategy) TryReturns(result1 error) {
fake.TryStub = nil
fake.tryReturns = struct {
result1 error
}{result1}
}
func (fake *FakeLoginStrategy) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.tryMutex.RLock()
defer fake.tryMutex.RUnlock()
return fake.invocations
}
func (fake *FakeLoginStrategy) 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 _ cmd.LoginStrategy = new(FakeLoginStrategy)