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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
package httpmock
import (
"bytes"
"encoding/json"
"errors"
"io/ioutil"
"net"
"net/http"
"net/url"
"reflect"
"strings"
"testing"
"time"
)
var testUrl = "http://www.example.com/"
func assertBody(t *testing.T, resp *http.Response, expected string) {
defer resp.Body.Close()
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
got := string(data)
if got != expected {
t.Errorf("Expected body: %#v, got %#v", expected, got)
}
}
func TestMockTransport(t *testing.T) {
Activate()
defer Deactivate()
url := "https://github.com/"
body := "hello world"
RegisterResponder("GET", url, NewStringResponder(200, body))
resp, err := http.Get(url)
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
if string(data) != body {
t.FailNow()
}
// the http client wraps our NoResponderFound error, so we just try and match on text
if _, err := http.Get(testUrl); !strings.Contains(err.Error(),
NoResponderFound.Error()) {
t.Fatal(err)
}
}
func TestMockTransportReset(t *testing.T) {
DeactivateAndReset()
if len(DefaultTransport.responders) > 0 {
t.Fatal("expected no responders at this point")
}
RegisterResponder("GET", testUrl, nil)
if len(DefaultTransport.responders) != 1 {
t.Fatal("expected one responder")
}
Reset()
if len(DefaultTransport.responders) > 0 {
t.Fatal("expected no responders as they were just reset")
}
}
func TestMockTransportNoResponder(t *testing.T) {
Activate()
defer DeactivateAndReset()
Reset()
if DefaultTransport.noResponder != nil {
t.Fatal("expected noResponder to be nil")
}
if _, err := http.Get(testUrl); err == nil {
t.Fatal("expected to receive a connection error due to lack of responders")
}
RegisterNoResponder(NewStringResponder(200, "hello world"))
resp, err := http.Get(testUrl)
if err != nil {
t.Fatal("expected request to succeed")
}
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
if string(data) != "hello world" {
t.Fatal("expected body to be 'hello world'")
}
}
func TestMockTransportQuerystringFallback(t *testing.T) {
Activate()
defer DeactivateAndReset()
// register the testUrl responder
RegisterResponder("GET", testUrl, NewStringResponder(200, "hello world"))
// make a request for the testUrl with a querystring
resp, err := http.Get(testUrl + "?hello=world")
if err != nil {
t.Fatal("expected request to succeed")
}
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
if string(data) != "hello world" {
t.Fatal("expected body to be 'hello world'")
}
}
type dummyTripper struct{}
func (d *dummyTripper) RoundTrip(*http.Request) (*http.Response, error) {
return nil, nil
}
func TestMockTransportInitialTransport(t *testing.T) {
DeactivateAndReset()
tripper := &dummyTripper{}
http.DefaultTransport = tripper
Activate()
if http.DefaultTransport == tripper {
t.Fatal("expected http.DefaultTransport to be a mock transport")
}
Deactivate()
if http.DefaultTransport != tripper {
t.Fatal("expected http.DefaultTransport to be dummy")
}
}
func TestMockTransportNonDefault(t *testing.T) {
// create a custom http client w/ custom Roundtripper
client := &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
Dial: (&net.Dialer{
Timeout: 60 * time.Second,
KeepAlive: 30 * time.Second,
}).Dial,
TLSHandshakeTimeout: 60 * time.Second,
},
}
// activate mocks for the client
ActivateNonDefault(client)
defer DeactivateAndReset()
body := "hello world!"
RegisterResponder("GET", testUrl, NewStringResponder(200, body))
req, err := http.NewRequest("GET", testUrl, nil)
if err != nil {
t.Fatal(err)
}
resp, err := client.Do(req)
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
if string(data) != body {
t.FailNow()
}
}
func TestMockTransportRespectsCancel(t *testing.T) {
Activate()
defer DeactivateAndReset()
cases := []struct {
withCancel bool
cancelNow bool
withPanic bool
expectedBody string
expectedErr error
}{
// No cancel specified at all. Falls back to normal behavior
{false, false, false, "hello world", nil},
// Cancel returns error
{true, true, false, "", errors.New("request canceled")},
// Request can be cancelled but it is not cancelled.
{true, false, false, "hello world", nil},
// Panic in cancelled request is handled
{true, false, true, "", errors.New(`panic in responder: got "oh no"`)},
}
for _, c := range cases {
Reset()
if c.withPanic {
RegisterResponder("GET", testUrl, func(r *http.Request) (*http.Response, error) {
time.Sleep(time.Millisecond)
panic("oh no")
})
} else {
RegisterResponder("GET", testUrl, func(r *http.Request) (*http.Response, error) {
time.Sleep(time.Millisecond)
return NewStringResponse(http.StatusOK, "hello world"), nil
})
}
req, err := http.NewRequest("GET", testUrl, nil)
if err != nil {
t.Fatal(err)
}
if c.withCancel {
cancel := make(chan struct{}, 1)
req.Cancel = cancel
if c.cancelNow {
cancel <- struct{}{}
}
}
resp, err := http.DefaultClient.Do(req)
// If we expect and error but none was returned, it's fatal for this test...
if err == nil && c.expectedErr != nil {
t.Fatal("Error should not be nil")
}
if err != nil {
got := err.(*url.Error)
if !reflect.DeepEqual(got.Err, c.expectedErr) {
t.Errorf("Expected: %#v, got: %#v", c.expectedErr, got.Err)
}
}
if c.expectedBody != "" {
assertBody(t, resp, c.expectedBody)
}
}
}
func TestMockTransportRespectsTimeout(t *testing.T) {
timeout := time.Second
client := &http.Client{
Timeout: timeout,
}
ActivateNonDefault(client)
defer DeactivateAndReset()
RegisterResponder(
"GET", testUrl,
func(r *http.Request) (*http.Response, error) {
time.Sleep(2 * timeout)
return NewStringResponse(http.StatusOK, ""), nil
},
)
_, err := client.Get(testUrl)
if err == nil {
t.Fail()
}
}
func TestMockTransportCallCount(t *testing.T) {
Reset()
Activate()
defer Deactivate()
url := "https://github.com/"
url2 := "https://gitlab.com/"
RegisterResponder("GET", url, NewStringResponder(200, "body"))
RegisterResponder("POST", url2, NewStringResponder(200, "body"))
_, err := http.Get(url)
if err != nil {
t.Fatal(err)
}
buff := new(bytes.Buffer)
json.NewEncoder(buff).Encode("{}")
_, err1 := http.Post(url2, "application/json", buff)
if err1 != nil {
t.Fatal(err1)
}
_, err2 := http.Get(url)
if err2 != nil {
t.Fatal(err2)
}
totalCallCount := GetTotalCallCount()
if totalCallCount != 3 {
t.Fatalf("did not track the total count of calls correctly. expected it to be 3, but it was %v", totalCallCount)
}
info := GetCallCountInfo()
expectedInfo := map[string]int{}
urlCallkey := "GET " + url
url2Callkey := "POST " + url2
expectedInfo[urlCallkey] = 2
expectedInfo[url2Callkey] = 1
if !reflect.DeepEqual(info, expectedInfo) {
t.Fatalf("did not correctly track the call count info. expected it to be \n %+v \n but it was \n %+v \n", expectedInfo, info)
}
Reset()
afterResetTotalCallCount := GetTotalCallCount()
if afterResetTotalCallCount != 0 {
t.Fatalf("did not reset the total count of calls correctly. expected it to be 0 after reset, but it was %v", afterResetTotalCallCount)
}
}
|