-
Notifications
You must be signed in to change notification settings - Fork 0
/
cc_client.go
106 lines (97 loc) · 3.19 KB
/
cc_client.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
// Code generated by counterfeiter. DO NOT EDIT.
package fakes
import (
"sync"
)
type CCClient struct {
GetLiveAppGUIDsStub func(token string, appGUIDs []string) (map[string]struct{}, error)
getLiveAppGUIDsMutex sync.RWMutex
getLiveAppGUIDsArgsForCall []struct {
token string
appGUIDs []string
}
getLiveAppGUIDsReturns struct {
result1 map[string]struct{}
result2 error
}
getLiveAppGUIDsReturnsOnCall map[int]struct {
result1 map[string]struct{}
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *CCClient) GetLiveAppGUIDs(token string, appGUIDs []string) (map[string]struct{}, error) {
var appGUIDsCopy []string
if appGUIDs != nil {
appGUIDsCopy = make([]string, len(appGUIDs))
copy(appGUIDsCopy, appGUIDs)
}
fake.getLiveAppGUIDsMutex.Lock()
ret, specificReturn := fake.getLiveAppGUIDsReturnsOnCall[len(fake.getLiveAppGUIDsArgsForCall)]
fake.getLiveAppGUIDsArgsForCall = append(fake.getLiveAppGUIDsArgsForCall, struct {
token string
appGUIDs []string
}{token, appGUIDsCopy})
fake.recordInvocation("GetLiveAppGUIDs", []interface{}{token, appGUIDsCopy})
fake.getLiveAppGUIDsMutex.Unlock()
if fake.GetLiveAppGUIDsStub != nil {
return fake.GetLiveAppGUIDsStub(token, appGUIDs)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.getLiveAppGUIDsReturns.result1, fake.getLiveAppGUIDsReturns.result2
}
func (fake *CCClient) GetLiveAppGUIDsCallCount() int {
fake.getLiveAppGUIDsMutex.RLock()
defer fake.getLiveAppGUIDsMutex.RUnlock()
return len(fake.getLiveAppGUIDsArgsForCall)
}
func (fake *CCClient) GetLiveAppGUIDsArgsForCall(i int) (string, []string) {
fake.getLiveAppGUIDsMutex.RLock()
defer fake.getLiveAppGUIDsMutex.RUnlock()
return fake.getLiveAppGUIDsArgsForCall[i].token, fake.getLiveAppGUIDsArgsForCall[i].appGUIDs
}
func (fake *CCClient) GetLiveAppGUIDsReturns(result1 map[string]struct{}, result2 error) {
fake.GetLiveAppGUIDsStub = nil
fake.getLiveAppGUIDsReturns = struct {
result1 map[string]struct{}
result2 error
}{result1, result2}
}
func (fake *CCClient) GetLiveAppGUIDsReturnsOnCall(i int, result1 map[string]struct{}, result2 error) {
fake.GetLiveAppGUIDsStub = nil
if fake.getLiveAppGUIDsReturnsOnCall == nil {
fake.getLiveAppGUIDsReturnsOnCall = make(map[int]struct {
result1 map[string]struct{}
result2 error
})
}
fake.getLiveAppGUIDsReturnsOnCall[i] = struct {
result1 map[string]struct{}
result2 error
}{result1, result2}
}
func (fake *CCClient) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.getLiveAppGUIDsMutex.RLock()
defer fake.getLiveAppGUIDsMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *CCClient) 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)
}