代码拉取完成,页面将自动刷新
package http
import (
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
"net/http"
)
type RespCheck func(*http.Response) error
var (
errBodyMismatch = errors.New("body mismatch")
)
func makeValidateResponse(config *responseParameters) RespCheck {
var checks []RespCheck
if config.Status > 0 {
checks = append(checks, checkStatus(config.Status))
} else {
checks = append(checks, checkStatusOK)
}
if len(config.RecvHeaders) > 0 {
checks = append(checks, checkHeaders(config.RecvHeaders))
}
if len(config.RecvBody) > 0 {
checks = append(checks, checkBody([]byte(config.RecvBody)))
}
return checkAll(checks...)
}
func checkOK(_ *http.Response) error { return nil }
// TODO: collect all errors into on error message.
func checkAll(checks ...RespCheck) RespCheck {
switch len(checks) {
case 0:
return checkOK
case 1:
return checks[0]
}
return func(r *http.Response) error {
for _, check := range checks {
if err := check(r); err != nil {
return err
}
}
return nil
}
}
func checkStatus(status uint16) RespCheck {
return func(r *http.Response) error {
if r.StatusCode == int(status) {
return nil
}
return fmt.Errorf("received status code %v expecting %v", r.StatusCode, status)
}
}
func checkStatusOK(r *http.Response) error {
if r.StatusCode >= 400 {
return errors.New(r.Status)
}
return nil
}
func checkHeaders(headers map[string]string) RespCheck {
return func(r *http.Response) error {
for k, v := range headers {
value := r.Header.Get(k)
if v != value {
return fmt.Errorf("header %v is '%v' expecting '%v' ", k, value, v)
}
}
return nil
}
}
func checkBody(body []byte) RespCheck {
return func(r *http.Response) error {
// read up to len(body)+1 bytes for comparing content to be equal
in := io.LimitReader(r.Body, int64(len(body))+1)
content, err := ioutil.ReadAll(in)
if err != nil {
return err
}
if !bytes.Equal(body, content) {
return errBodyMismatch
}
return nil
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。