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
|
package test
import (
"bytes"
"github.com/nbio/st"
"gopkg.in/h2non/gock.v1"
"io/ioutil"
"net/http"
"testing"
)
func TestRegExpMatching(t *testing.T) {
defer gock.Disable()
gock.New("http://foo.com").
Post("/bar").
MatchHeader("Authorization", "Bearer (.*)").
BodyString(`{"foo":".*"}`).
Reply(200).
SetHeader("Server", "gock").
JSON(map[string]string{"foo": "bar"})
req, _ := http.NewRequest("POST", "http://foo.com/bar", bytes.NewBuffer([]byte(`{"foo":"baz"}`)))
req.Header.Set("Authorization", "Bearer s3cr3t")
res, err := http.DefaultClient.Do(req)
st.Expect(t, err, nil)
st.Expect(t, res.StatusCode, 200)
st.Expect(t, res.Header.Get("Server"), "gock")
body, _ := ioutil.ReadAll(res.Body)
st.Expect(t, string(body)[:13], `{"foo":"bar"}`)
}
|