本文整理匯總了Golang中github.com/dghubble/sling.Sling.Request方法的典型用法代碼示例。如果您正苦於以下問題:Golang Sling.Request方法的具體用法?Golang Sling.Request怎麽用?Golang Sling.Request使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/dghubble/sling.Sling
的用法示例。
在下文中一共展示了Sling.Request方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: DoRequest
func DoRequest(r *sling.Sling) *http.Response {
req, err := r.Request()
Expect(err).To(BeNil())
response, err := http.DefaultClient.Do(req)
Expect(err).To(BeNil())
return response
}
示例2: DoRequestThroughProxy
func DoRequestThroughProxy(r *sling.Sling) *http.Response {
req, err := r.Request()
Expect(err).To(BeNil())
proxy, err := url.Parse(hoverflyProxyUrl)
proxyHttpClient := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxy)}}
response, err := proxyHttpClient.Do(req)
Expect(err).To(BeNil())
return response
}
示例3: DoRequestThroughProxy
func DoRequestThroughProxy(r *sling.Sling) *http.Response {
req, err := r.Request()
Expect(err).To(BeNil())
proxy, err := url.Parse(hoverflyProxyUrl)
proxyHttpClient := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxy)}, CheckRedirect: func(req *http.Request, via []*http.Request) error { return http.ErrUseLastResponse }}
response, err := proxyHttpClient.Do(req)
Expect(err).To(BeNil())
return response
}
示例4: request
func request(_sling *sling.Sling, acceptHeader string, authInfo ...usrInfo) (int, []byte, error) {
_sling = _sling.Set("Accept", acceptHeader)
req, err := _sling.Request()
if err != nil {
return 400, nil, err
}
if len(authInfo) > 0 {
req.SetBasicAuth(authInfo[0].Name, authInfo[0].Passwd)
}
w := httptest.NewRecorder()
beego.BeeApp.Handlers.ServeHTTP(w, req)
body, err := ioutil.ReadAll(w.Body)
return w.Code, body, err
}
示例5: doRequest
func (h *Hoverfly) doRequest(request *sling.Sling) (*http.Response, error) {
httpRequest, err := request.Request()
if err != nil {
log.Debug(err.Error())
return nil, errors.New("Could not communicate with Hoverfly")
}
response, err := h.httpClient.Do(httpRequest)
if err != nil {
log.Debug(err.Error())
return nil, errors.New("Could not communicate with Hoverfly")
}
if response.StatusCode == 401 {
return nil, errors.New("Hoverfly requires authentication")
}
return response, nil
}
示例6: performAPIRequest
func (h *Hoverfly) performAPIRequest(slingRequest *sling.Sling) (*http.Response, error) {
slingRequest, err := h.addAuthIfNeeded(slingRequest)
if err != nil {
log.Warn(err.Error())
return nil, errors.New("Could not authenticate with Hoverfly")
}
request, err := slingRequest.Request()
if err != nil {
log.Warn(err.Error())
return nil, errors.New("Could not communicate with Hoverfly")
}
response, err := h.httpClient.Do(request)
if err != nil {
log.Warn(err.Error())
return nil, errors.New("Could not communicate with Hoverfly")
}
return response, nil
}