-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscope.go
237 lines (195 loc) · 5.84 KB
/
scope.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package gnock
import (
"fmt"
"net/http"
"net/url"
"regexp"
"strings"
)
type Scope struct {
parent *Scope
child *Scope
host string
hostRegexp *regexp.Regexp
interceptors []*Interceptor
defaultHeaders http.Header
}
// Make sure Scope conforms to the RoundTripper interface and can be used as a Transport
var _ http.RoundTripper = (*Scope)(nil)
func NewScope(parent *Scope, host string) *Scope {
parsed, err := url.Parse(host)
if err != nil {
panic(err.Error())
}
if parsed.Path != "" {
panic(fmt.Sprintf("host should only contain scheme, host and port not path, got: %q", host))
}
return &Scope{
parent: parent,
host: host,
interceptors: make([]*Interceptor, 0),
defaultHeaders: make(http.Header, 0),
}
}
func NewRegexpScope(parent *Scope, hostRegexp *regexp.Regexp) *Scope {
return &Scope{
parent: parent,
hostRegexp: hostRegexp,
interceptors: make([]*Interceptor, 0),
defaultHeaders: make(http.Header, 0),
}
}
func (s *Scope) ReplaceDefault() *Scope {
if originalDefaultTransport != nil {
originalDefaultTransport = http.DefaultTransport
}
http.DefaultTransport = s
return s
}
func (s *Scope) Gnock(host string) *Scope {
s.child = NewScope(s, host)
return s.child
}
func (s *Scope) GnockRegexp(host string) *Scope {
s.child = NewRegexpScope(s, regexp.MustCompile(host))
return s.child
}
func (s *Scope) RoundTrip(req *http.Request) (*http.Response, error) {
// This method makes sure to start at the root of the scope hierarchy...
if s.parent != nil {
return s.parent.RoundTrip(req)
}
return s.roundTrip(req)
}
func (s *Scope) roundTrip(req *http.Request) (*http.Response, error) {
// ...and this method serves matched requests down the scope hierarchy.
for _, interceptor := range s.interceptors {
if interceptor.intercepts(req) {
return interceptor.respond(req)
}
}
if s.child != nil {
return s.child.roundTrip(req)
}
panic(fmt.Sprintf("Gnock found no match for request: %s\n\nRegistered interceptors:\n%s\n%s", describeRequest(req), describeInterceptors(s), describeUsage(req)))
}
func (s *Scope) IsDone() {
for _, interceptor := range s.interceptors {
if interceptor.times > 0 {
panic(fmt.Sprintf("Not all interceptors have been used! Found: %+v", interceptor))
}
}
}
func (s *Scope) DefaultReplyHeaders(headers http.Header) *Scope {
s.defaultHeaders = headers
return s
}
func (s *Scope) Intercept(method, path string) *Interceptor {
i := NewInterceptor(s, method, path)
s.interceptors = append(s.interceptors, i)
return i
}
func (s *Scope) Interceptf(method, pathTemplate string, args ...interface{}) *Interceptor {
i := NewInterceptor(s, method, fmt.Sprintf(pathTemplate, args...))
s.interceptors = append(s.interceptors, i)
return i
}
func (s *Scope) InterceptRegexp(method, path string) *Interceptor {
i := NewRegexpInterceptor(s, method, regexp.MustCompile(path))
s.interceptors = append(s.interceptors, i)
return i
}
func (s *Scope) Get(path string) *Interceptor {
return s.Intercept("GET", path)
}
func (s *Scope) Post(path string) *Interceptor {
return s.Intercept("POST", path)
}
func (s *Scope) Put(path string) *Interceptor {
return s.Intercept("PUT", path)
}
func (s *Scope) Options(path string) *Interceptor {
return s.Intercept("OPTIONS", path)
}
func (s *Scope) Delete(path string) *Interceptor {
return s.Intercept("DELETE", path)
}
func (s *Scope) Getf(pathTemplate string, args ...interface{}) *Interceptor {
return s.Interceptf("GET", pathTemplate, args...)
}
func (s *Scope) Postf(pathTemplate string, args ...interface{}) *Interceptor {
return s.Interceptf("POST", pathTemplate, args...)
}
func (s *Scope) Putf(pathTemplate string, args ...interface{}) *Interceptor {
return s.Interceptf("PUT", pathTemplate, args...)
}
func (s *Scope) Optionsf(pathTemplate string, args ...interface{}) *Interceptor {
return s.Interceptf("OPTIONS", pathTemplate, args...)
}
func (s *Scope) Deletef(pathTemplate string, args ...interface{}) *Interceptor {
return s.Interceptf("DELETE", pathTemplate, args...)
}
func (s *Scope) GetRegexp(path string) *Interceptor {
return s.InterceptRegexp("GET", path)
}
func (s *Scope) PostRegexp(path string) *Interceptor {
return s.InterceptRegexp("POST", path)
}
func (s *Scope) PutRegexp(path string) *Interceptor {
return s.InterceptRegexp("PUT", path)
}
func (s *Scope) OptionsRegexp(path string) *Interceptor {
return s.InterceptRegexp("OPTIONS", path)
}
func (s *Scope) DeleteRegexp(path string) *Interceptor {
return s.InterceptRegexp("DELETE", path)
}
func (s *Scope) String() string {
if s.hostRegexp != nil {
return s.hostRegexp.String()
}
return s.host
}
func (s *Scope) intercepts(req *http.Request) bool {
schemeAndHost := req.URL.Scheme + "://" + req.URL.Host
if s.hostRegexp != nil {
return s.hostRegexp.MatchString(schemeAndHost)
}
return s.host == schemeAndHost
}
func describeRequest(req *http.Request) string {
return fmt.Sprintf("%s %s", req.Method, req.URL.String())
}
func describeInterceptors(s *Scope) string {
result := ""
if s.parent != nil {
result = describeInterceptors(s.parent)
}
for _, i := range s.interceptors {
result += i.String()
}
if result == "" {
return "none\n"
}
return result
}
var existingHTTPMethodFuncs = map[string]bool{
"Get": true,
"Post": true,
"Put": true,
"Options": true,
"Delete": true,
}
func describeUsage(req *http.Request) string {
schemeAndHost := req.URL.Scheme + "://" + req.URL.Host
httpMethodFunc := strings.Title(strings.ToLower(req.Method))
interceptorParams := fmt.Sprintf(`"%s"`, req.URL.Path)
if !existingHTTPMethodFuncs[httpMethodFunc] {
httpMethodFunc = "Intercept"
interceptorParams = fmt.Sprintf(`"%s", "%s"`, req.Method, req.URL.Path)
}
return fmt.Sprintf(`Did you forget to add the interceptor?
gnock.Gnock("%s").
%s(%s).
Reply(200, "OK")`, schemeAndHost, httpMethodFunc, interceptorParams)
}