forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_httperror.go
132 lines (117 loc) · 3.32 KB
/
fake_httperror.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// This file was generated by counterfeiter
package errorsfakes
import (
"sync"
"code.cloudfoundry.org/cli/cf/errors"
)
type FakeHTTPError struct {
ErrorStub func() string
errorMutex sync.RWMutex
errorArgsForCall []struct{}
errorReturns struct {
result1 string
}
StatusCodeStub func() int
statusCodeMutex sync.RWMutex
statusCodeArgsForCall []struct{}
statusCodeReturns struct {
result1 int
}
ErrorCodeStub func() string
errorCodeMutex sync.RWMutex
errorCodeArgsForCall []struct{}
errorCodeReturns struct {
result1 string
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeHTTPError) Error() string {
fake.errorMutex.Lock()
fake.errorArgsForCall = append(fake.errorArgsForCall, struct{}{})
fake.recordInvocation("Error", []interface{}{})
fake.errorMutex.Unlock()
if fake.ErrorStub != nil {
return fake.ErrorStub()
} else {
return fake.errorReturns.result1
}
}
func (fake *FakeHTTPError) ErrorCallCount() int {
fake.errorMutex.RLock()
defer fake.errorMutex.RUnlock()
return len(fake.errorArgsForCall)
}
func (fake *FakeHTTPError) ErrorReturns(result1 string) {
fake.ErrorStub = nil
fake.errorReturns = struct {
result1 string
}{result1}
}
func (fake *FakeHTTPError) StatusCode() int {
fake.statusCodeMutex.Lock()
fake.statusCodeArgsForCall = append(fake.statusCodeArgsForCall, struct{}{})
fake.recordInvocation("StatusCode", []interface{}{})
fake.statusCodeMutex.Unlock()
if fake.StatusCodeStub != nil {
return fake.StatusCodeStub()
} else {
return fake.statusCodeReturns.result1
}
}
func (fake *FakeHTTPError) StatusCodeCallCount() int {
fake.statusCodeMutex.RLock()
defer fake.statusCodeMutex.RUnlock()
return len(fake.statusCodeArgsForCall)
}
func (fake *FakeHTTPError) StatusCodeReturns(result1 int) {
fake.StatusCodeStub = nil
fake.statusCodeReturns = struct {
result1 int
}{result1}
}
func (fake *FakeHTTPError) ErrorCode() string {
fake.errorCodeMutex.Lock()
fake.errorCodeArgsForCall = append(fake.errorCodeArgsForCall, struct{}{})
fake.recordInvocation("ErrorCode", []interface{}{})
fake.errorCodeMutex.Unlock()
if fake.ErrorCodeStub != nil {
return fake.ErrorCodeStub()
} else {
return fake.errorCodeReturns.result1
}
}
func (fake *FakeHTTPError) ErrorCodeCallCount() int {
fake.errorCodeMutex.RLock()
defer fake.errorCodeMutex.RUnlock()
return len(fake.errorCodeArgsForCall)
}
func (fake *FakeHTTPError) ErrorCodeReturns(result1 string) {
fake.ErrorCodeStub = nil
fake.errorCodeReturns = struct {
result1 string
}{result1}
}
func (fake *FakeHTTPError) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.errorMutex.RLock()
defer fake.errorMutex.RUnlock()
fake.statusCodeMutex.RLock()
defer fake.statusCodeMutex.RUnlock()
fake.errorCodeMutex.RLock()
defer fake.errorCodeMutex.RUnlock()
return fake.invocations
}
func (fake *FakeHTTPError) 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 _ errors.HTTPError = new(FakeHTTPError)