File: httpclient_test.go

package info (click to toggle)
golang-github-koofr-go-httpclient 0.0~git20190818.e0dc8fd-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 160 kB
  • sloc: makefile: 2
file content (966 lines) | stat: -rw-r--r-- 24,538 bytes parent folder | download
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
package httpclient_test

import (
	"bytes"
	"context"
	"fmt"
	"io"
	"io/ioutil"
	"net/http"
	"net/http/httptest"
	"net/url"
	"strings"
	"sync"
	"sync/atomic"
	"time"

	. "github.com/koofr/go-httpclient"
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"
)

type ExampleStruct struct {
	Key string `xml:"Key"`
}

type InvalidStruct struct {
	Key complex128 `xml:"Key"`
}

type errorReader struct {
	err error
}

func (r *errorReader) Read(p []byte) (n int, err error) {
	return 0, r.err
}

var ts *httptest.Server
var client *HTTPClient
var handler func(http.ResponseWriter, *http.Request)

var _ = Describe("HTTPClient", func() {
	BeforeEach(func() {
		handler = nil

		ts = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
			defer GinkgoRecover()

			if handler == nil {
				fmt.Fprintln(w, "ok")
			} else {
				handler(w, r)
			}
		}))

		u, _ := url.Parse(ts.URL)

		client = New()
		client.BaseURL = u
	})

	AfterEach(func() {
		ts.Close()
	})

	Describe("New", func() {
		It("should create new default client", func() {
			res, err := client.Request(&RequestData{
				Method:  "GET",
				FullURL: ts.URL,
			})
			Expect(err).NotTo(HaveOccurred())
			Expect(res.StatusCode).To(Equal(200))
		})

		It("should fail to make request with invalid certificate", func() {
			ts.Close()
			ts = httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
				fmt.Fprintln(w, "ok")
			}))

			u, _ := url.Parse(ts.URL)
			client = New()
			client.BaseURL = u

			_, err := client.Request(&RequestData{
				Method: "GET",
				Path:   "/",
			})
			Expect(err).To(HaveOccurred())
		})

		It("should get error if remote server is not reachable", func() {
			ts.Close()

			_, err := client.Request(&RequestData{
				Method: "GET",
				Path:   "/",
			})
			Expect(err).To(HaveOccurred())
		})

		It("should get error if FullURL is invalid", func() {
			_, err := client.Request(&RequestData{
				Method:  "GET",
				FullURL: "://???",
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal(`parse "://???": missing protocol scheme`))
		})
	})

	Describe("Insecure", func() {
		It("should create new insecure http client (ignoring TLS errors)", func() {
			ts.Close()
			ts = httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
				fmt.Fprintln(w, "ok")
			}))

			u, _ := url.Parse(ts.URL)
			client = Insecure()
			client.BaseURL = u

			res, err := client.Request(&RequestData{
				Method: "GET",
				Path:   "/",
			})
			Expect(err).NotTo(HaveOccurred())
			Expect(res.StatusCode).To(Equal(200))
		})
	})

	Describe("Request", func() {
		It("should pass the context", func() {
			requestCtx, requestCtxCancel := context.WithCancel(context.Background())

			handler = func(w http.ResponseWriter, r *http.Request) {
				defer GinkgoRecover()
				requestCtxCancel()
				Eventually(r.Context().Err).Should(HaveOccurred())
			}

			_, err := client.Request(&RequestData{
				Context: requestCtx,
				Method:  "GET",
				Path:    "/",
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(ContainSubstring("context canceled"))
		})
	})

	Describe("Headers", func() {
		It("should set global headers", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				Expect(r.Header.Get("X-Header")).To(Equal("value"))
				fmt.Fprintln(w, "ok")
			}

			client.Headers.Set("X-Header", "value")

			_, err := client.Request(&RequestData{
				Method: "GET",
				Path:   "/",
			})
			Expect(err).NotTo(HaveOccurred())
		})
	})

	Describe("SetPostHook", func() {
		It("should add post response hook for status code", func() {
			postHookError := fmt.Errorf("Post hook error")

			client.SetPostHook(http.StatusOK, func(req *http.Request, res *http.Response) error {
				return postHookError
			})

			_, err := client.Request(&RequestData{
				Method:  "GET",
				FullURL: ts.URL,
			})
			Expect(err).To(Equal(postHookError))
		})
	})

	Describe("SetErrorHandler", func() {
		It("should set the error handler", func() {
			ts.Close()

			errorHandled := false

			client.SetErrorHandler(func(res *http.Response, err error) error {
				Expect(res).To(BeNil())
				Expect(err).To(HaveOccurred())
				errorHandled = true
				return err
			})

			_, err := client.Request(&RequestData{
				Method: "GET",
				Path:   "/",
			})
			Expect(err).To(HaveOccurred())

			Expect(errorHandled).To(BeTrue())
		})
	})

	Describe("SetRateLimit", func() {
		It("should rate limit requests without timeout", func() {
			responseLock := &sync.RWMutex{}
			responseLock.Lock()
			var counter int32 = 0

			handler = func(w http.ResponseWriter, r *http.Request) {
				atomic.AddInt32(&counter, 1)
				responseLock.RLock()
				fmt.Fprintln(w, "ok")
			}

			client.SetRateLimit(10, 0)

			for i := 0; i < 20; i++ {
				go func() {
					client.Request(&RequestData{
						Method:  "GET",
						FullURL: ts.URL,
					})
				}()
			}

			time.Sleep(1 * time.Second)

			c := counter

			responseLock.Unlock()

			Expect(int(c)).To(Equal(10))

			time.Sleep(1 * time.Second)

			Expect(int(counter)).To(Equal(20))
		})

		It("should rate limit requests with timeout", func() {
			responseLock := &sync.RWMutex{}
			responseLock.Lock()

			handler = func(w http.ResponseWriter, r *http.Request) {
				responseLock.RLock()
				fmt.Fprintln(w, "ok")
			}

			client.SetRateLimit(10, 1*time.Second)

			var errors int32 = 0

			for i := 0; i < 15; i++ {
				go func() {
					_, err := client.Request(&RequestData{
						Method:  "GET",
						FullURL: ts.URL,
					})

					if err == RateLimitTimeoutError {
						atomic.AddInt32(&errors, 1)
					}
				}()
			}

			time.Sleep(2 * time.Second)

			responseLock.Unlock()

			Expect(int(errors)).To(Equal(5))
		})
	})

	Describe("Path", func() {
		It("should set request path", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				Expect(r.URL.Path).To(Equal("/foo+bar"))
				fmt.Fprintln(w, "ok")
			}

			_, err := client.Request(&RequestData{
				Method: "GET",
				Path:   "/foo+bar",
			})
			Expect(err).NotTo(HaveOccurred())
		})
	})

	Describe("Params", func() {
		It("should set request query string", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				Expect(r.URL.Query().Encode()).To(Equal("key=value"))
				fmt.Fprintln(w, "ok")
			}

			_, err := client.Request(&RequestData{
				Method: "GET",
				Path:   "/",
				Params: url.Values{"key": {"value"}},
			})
			Expect(err).NotTo(HaveOccurred())
		})
	})

	Describe("Headers", func() {
		It("should set request headers", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				Expect(r.Header.Get("X-Header")).To(Equal("value"))
				fmt.Fprintln(w, "ok")
			}

			_, err := client.Request(&RequestData{
				Method:  "GET",
				Path:    "/",
				Headers: http.Header{"X-Header": {"value"}},
			})
			Expect(err).NotTo(HaveOccurred())
		})

		It("should override global headers", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				Expect(r.Header.Get("X-Header")).To(Equal("override"))
				fmt.Fprintln(w, "ok")
			}

			client.Headers.Set("X-Header", "value")

			_, err := client.Request(&RequestData{
				Method:  "GET",
				Path:    "/",
				Headers: http.Header{"X-Header": {"override"}},
			})
			Expect(err).NotTo(HaveOccurred())
		})
	})

	Describe("ReqReader", func() {
		It("should set request body reader", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				body, _ := ioutil.ReadAll(r.Body)
				Expect(body).To(Equal([]byte("body")))
				fmt.Fprintln(w, "ok")
			}

			_, err := client.Request(&RequestData{
				Method:    "POST",
				Path:      "/",
				ReqReader: bytes.NewReader([]byte("body")),
			})
			Expect(err).NotTo(HaveOccurred())
		})
	})

	Describe("ReqValue", func() {
		It("should set JSON request body with EncodingJSON", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				body, _ := ioutil.ReadAll(r.Body)
				Expect(body).To(Equal([]byte(`{"key":"value"}`)))
				Expect(r.Header.Get("content-type")).To(Equal("application/json"))
				fmt.Fprintln(w, "ok")
			}

			data := map[string]string{"key": "value"}

			_, err := client.Request(&RequestData{
				Method:      "POST",
				Path:        "/",
				ReqEncoding: EncodingJSON,
				ReqValue:    data,
			})
			Expect(err).NotTo(HaveOccurred())
		})

		It("should not set JSON content-type for empty body with EncodingJSON", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				body, _ := ioutil.ReadAll(r.Body)
				Expect(body).To(BeEmpty())
				Expect(r.Header.Get("content-type")).NotTo(Equal("application/json"))
				fmt.Fprintln(w, "ok")
			}

			_, err := client.Request(&RequestData{
				Method:      "POST",
				Path:        "/",
				ReqEncoding: EncodingJSON,
			})
			Expect(err).NotTo(HaveOccurred())
		})

		It("should not set JSON request body with EncodingJSON and invalid data", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				fmt.Fprintln(w, "ok")
			}

			data := InvalidStruct{
				Key: complex(42, 42),
			}

			_, err := client.Request(&RequestData{
				Method:      "POST",
				Path:        "/",
				ReqEncoding: EncodingJSON,
				ReqValue:    data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("json: unsupported type: complex128"))
		})

		It("should set XML request body with EncodingXML", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				body, _ := ioutil.ReadAll(r.Body)
				Expect(body).To(Equal([]byte(`<?xml version="1.0" encoding="UTF-8"?>
<ExampleStruct><Key>value</Key></ExampleStruct>`)))
				Expect(r.Header.Get("content-type")).To(Equal("application/xml"))
				fmt.Fprintln(w, "ok")
			}

			data := ExampleStruct{
				Key: "value",
			}

			_, err := client.Request(&RequestData{
				Method:      "POST",
				Path:        "/",
				ReqEncoding: EncodingXML,
				ReqValue:    data,
			})
			Expect(err).NotTo(HaveOccurred())
		})

		It("should not set XML content-type for empty body with EncodingXML", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				body, _ := ioutil.ReadAll(r.Body)
				Expect(body).To(BeEmpty())
				Expect(r.Header.Get("content-type")).NotTo(Equal("application/xml"))
				fmt.Fprintln(w, "ok")
			}

			_, err := client.Request(&RequestData{
				Method:      "POST",
				Path:        "/",
				ReqEncoding: EncodingXML,
			})
			Expect(err).NotTo(HaveOccurred())
		})

		It("should not set XML request body with EncodingXML and invalid data", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				fmt.Fprintln(w, "ok")
			}

			data := InvalidStruct{
				Key: complex(42, 42),
			}

			_, err := client.Request(&RequestData{
				Method:      "POST",
				Path:        "/",
				ReqEncoding: EncodingXML,
				ReqValue:    data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("xml: unsupported type: complex128"))
		})

		It("should set urlencoded request body with EncodingForm", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				body, _ := ioutil.ReadAll(r.Body)
				Expect(body).To(Equal([]byte(`key=value`)))
				Expect(r.Header.Get("content-type")).To(Equal("application/x-www-form-urlencoded"))
				fmt.Fprintln(w, "ok")
			}

			data := make(url.Values)
			data.Set("key", "value")

			_, err := client.Request(&RequestData{
				Method:      "POST",
				Path:        "/",
				ReqEncoding: EncodingForm,
				ReqValue:    data,
			})
			Expect(err).NotTo(HaveOccurred())
		})

		It("should not set urlencoded request body with EncodingForm and invalid data", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				fmt.Fprintln(w, "ok")
			}

			data := "data"

			_, err := client.Request(&RequestData{
				Method:      "POST",
				Path:        "/",
				ReqEncoding: EncodingForm,
				ReqValue:    data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("HTTPClient: invalid ReqValue type string"))
		})

		It("should not set request body with invalid ReqEncoding", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				fmt.Fprintln(w, "ok")
			}

			data := map[string]string{"key": "value"}

			_, err := client.Request(&RequestData{
				Method:      "POST",
				Path:        "/",
				ReqEncoding: Encoding("invalid"),
				ReqValue:    data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("HTTPClient: invalid ReqEncoding: invalid"))
		})
	})

	Describe("ExpectedStatus", func() {
		It("should filter response status", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.WriteHeader(201)
				fmt.Fprintln(w, "ok")
			}

			_, err := client.Request(&RequestData{
				Method:         "GET",
				Path:           "/",
				ExpectedStatus: []int{201},
			})
			Expect(err).NotTo(HaveOccurred())
		})

		It("should return error for wrong response status", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.WriteHeader(400)
				fmt.Fprintln(w, "fail")
			}

			res, err := client.Request(&RequestData{
				Method:         "GET",
				Path:           "/",
				ExpectedStatus: []int{201},
			})
			Expect(err).To(HaveOccurred())
			Expect(err).To(Equal(InvalidStatusError{
				Expected: []int{201},
				Got:      400,
				Headers:  res.Header,
				Content:  "fail\n",
			}))
			Expect(strings.HasPrefix(err.Error(), "Invalid response status! Got 400, expected [201]; headers: ")).To(BeTrue())
			Expect(strings.HasSuffix(err.Error(), ", content: fail\n")).To(BeTrue())
		})
	})

	Describe("IgnoreRedirects", func() {
		It("should follow redirects redirects by default", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				if r.URL.Path == "/redirect" {
					w.WriteHeader(201)
				} else {
					w.Header().Set("Location", "/redirect")
					w.WriteHeader(301)
				}
				fmt.Fprintln(w, "ok")
			}

			_, err := client.Request(&RequestData{
				Method:         "GET",
				Path:           "/",
				ExpectedStatus: []int{201},
			})
			Expect(err).NotTo(HaveOccurred())
		})

		It("should ignore redirects", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				if r.URL.Path == "/redirect" {
					w.WriteHeader(201)
				} else {
					w.Header().Set("Location", "/redirect")
					w.WriteHeader(301)
				}
				fmt.Fprintln(w, "ok")
			}

			_, err := client.Request(&RequestData{
				Method:          "GET",
				Path:            "/",
				ExpectedStatus:  []int{301},
				IgnoreRedirects: true,
			})
			Expect(err).NotTo(HaveOccurred())
		})

		It("should ignore redirects with missing http client transport", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				if r.URL.Path == "/redirect" {
					w.WriteHeader(201)
				} else {
					w.Header().Set("Location", "/redirect")
					w.WriteHeader(301)
				}
				fmt.Fprintln(w, "ok")
			}

			client.Client = &http.Client{}

			_, err := client.Request(&RequestData{
				Method:          "GET",
				Path:            "/",
				ExpectedStatus:  []int{301},
				IgnoreRedirects: true,
			})
			Expect(err).NotTo(HaveOccurred())
		})
	})

	Describe("RespValue", func() {
		It("should unmarshal JSON response with EncodingJSON", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.Header().Set("content-type", "application/json")
				fmt.Fprint(w, `{"key":"value"}`)
			}

			data := map[string]string{}

			_, err := client.Request(&RequestData{
				Method:       "GET",
				Path:         "/",
				RespEncoding: EncodingJSON,
				RespValue:    &data,
			})
			Expect(err).NotTo(HaveOccurred())
			Expect(data).To(Equal(map[string]string{"key": "value"}))
		})

		It("should not unmarshal invalid JSON response with EncodingJSON", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.Header().Set("content-type", "application/json")
				fmt.Fprint(w, `{"key":"value"`)
			}

			data := map[string]string{}

			_, err := client.Request(&RequestData{
				Method:       "GET",
				Path:         "/",
				RespEncoding: EncodingJSON,
				RespValue:    &data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("unexpected end of JSON input"))
		})

		It("should not unmarshal JSON response with EncodingJSON and non-pointer RespValue", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.Header().Set("content-type", "application/json")
				fmt.Fprint(w, `{"key":"value"}`)
			}

			data := map[string]string{}

			_, err := client.Request(&RequestData{
				Method:       "GET",
				Path:         "/",
				RespEncoding: EncodingJSON,
				RespValue:    data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("json: Unmarshal(non-pointer map[string]string)"))
		})

		It("should not unmarshal JSON response with EncodingJSON and server error", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.Header().Set("content-type", "application/json")
				w.Header().Set("content-length", "42")
				fmt.Fprint(w, `{"key":"value"}`)
			}

			data := map[string]string{}

			_, err := client.Request(&RequestData{
				Method:       "GET",
				Path:         "/",
				RespEncoding: EncodingJSON,
				RespValue:    data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("unexpected EOF"))
		})

		It("should unmarshal XML response with EncodingXML", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.Header().Set("content-type", "application/xml")
				fmt.Fprint(w, `<?xml version="1.0" encoding="UTF-8"?>
<ExampleStruct><Key>value</Key></ExampleStruct>`)
			}

			data := ExampleStruct{}

			_, err := client.Request(&RequestData{
				Method:       "GET",
				Path:         "/",
				RespEncoding: EncodingXML,
				RespValue:    &data,
			})
			Expect(err).NotTo(HaveOccurred())
			Expect(data.Key).To(Equal("value"))
		})

		It("should not unmarshal invalid XML response with EncodingXML", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.Header().Set("content-type", "application/xml")
				fmt.Fprint(w, `<?xml version="1.0" encoding="UTF-8"?>
<ExampleStruct><Key>value</Key></ExampleStruct`)
			}

			data := ExampleStruct{}

			_, err := client.Request(&RequestData{
				Method:       "GET",
				Path:         "/",
				RespEncoding: EncodingXML,
				RespValue:    &data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("XML syntax error on line 2: unexpected EOF"))
		})

		It("should not unmarshal XML response with EncodingXML and non-pointer RespValue", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.Header().Set("content-type", "application/xml")
				fmt.Fprint(w, `<?xml version="1.0" encoding="UTF-8"?>
<ExampleStruct><Key>value</Key></ExampleStruct>`)
			}

			data := ExampleStruct{}

			_, err := client.Request(&RequestData{
				Method:       "GET",
				Path:         "/",
				RespEncoding: EncodingXML,
				RespValue:    data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("non-pointer passed to Unmarshal"))
		})

		It("should not unmarshal XML response with EncodingXML and server error", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.Header().Set("content-type", "application/xml")
				w.Header().Set("content-length", "42")
				fmt.Fprint(w, `<?xml version="1.0" encoding="UTF-8"?>
<ExampleStruct><Key>value</Key></ExampleStruct>`)
			}

			data := ExampleStruct{}

			_, err := client.Request(&RequestData{
				Method:       "GET",
				Path:         "/",
				RespEncoding: EncodingXML,
				RespValue:    data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("unexpected EOF"))
		})

		It("should read byte slice", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				fmt.Fprintln(w, "ok")
			}

			data := []byte{}

			_, err := client.Request(&RequestData{
				Method:    "GET",
				Path:      "/",
				RespValue: &data,
			})
			Expect(err).NotTo(HaveOccurred())
			Expect(data).To(Equal([]byte("ok\n")))
		})

		It("should not read byte slice with server error", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				w.Header().Set("content-length", "42")
				fmt.Fprintln(w, "ok")
			}

			data := []byte{}

			_, err := client.Request(&RequestData{
				Method:    "GET",
				Path:      "/",
				RespValue: &data,
			})
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("unexpected EOF"))
		})
	})

	Describe("RespConsume", func() {
		It("should not consume response body by default", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				fmt.Fprintln(w, "ok")
			}

			res, err := client.Request(&RequestData{
				Method: "GET",
				Path:   "/",
			})
			Expect(err).NotTo(HaveOccurred())

			n, err := res.Body.Read([]byte{0, 0, 0, 0})

			Expect(n).To(Equal(3))
			Expect(err).To(Equal(io.EOF))
		})

		It("should consume response", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				fmt.Fprintln(w, "ok")
			}

			res, err := client.Request(&RequestData{
				Method:      "GET",
				Path:        "/",
				RespConsume: true,
			})
			Expect(err).NotTo(HaveOccurred())

			n, err := res.Body.Read([]byte{0, 0, 0, 0})

			Expect(n).To(Equal(0))
			Expect(err.Error()).To(Equal("http: read on closed response body"))
		})
	})

	Describe("UploadFile", func() {
		It("should upload a file", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				reader, err := r.MultipartReader()
				Expect(err).NotTo(HaveOccurred())
				p, err := reader.NextPart()
				Expect(err).NotTo(HaveOccurred())
				body, err := ioutil.ReadAll(p)
				Expect(err).NotTo(HaveOccurred())
				Expect(body).To(Equal([]byte("body")))
				Expect(p.FormName()).To(Equal("file"))
				Expect(p.FileName()).To(Equal("filename.txt"))

				fmt.Fprintln(w, "ok")
			}

			req := &RequestData{
				Method: "POST",
				Path:   "/",
			}

			err := req.UploadFile("file", "filename.txt", bytes.NewReader([]byte("body")))
			Expect(err).NotTo(HaveOccurred())

			_, err = client.Request(req)
			Expect(err).NotTo(HaveOccurred())
		})

		It("should not upload a file with broken reader", func() {
			waitCh := make(chan bool)

			handler = func(w http.ResponseWriter, r *http.Request) {
				defer func() {
					waitCh <- true
				}()
				reader, err := r.MultipartReader()
				Expect(err).NotTo(HaveOccurred())
				p, err := reader.NextPart()
				Expect(err).NotTo(HaveOccurred())
				_, err = ioutil.ReadAll(p)
				Expect(err).To(HaveOccurred())

				fmt.Fprintln(w, "ok")
			}

			req := &RequestData{
				Method: "POST",
				Path:   "/",
			}

			buf := make([]byte, 1*1024*1024, 1*1024*1024) // must be greater than 759K

			bodyReader := io.MultiReader(bytes.NewReader(buf), &errorReader{fmt.Errorf("broken body")})

			err := req.UploadFile("file", "filename.txt", bodyReader)
			Expect(err).NotTo(HaveOccurred())

			_, err = client.Request(req)
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("Post \"http:/\": broken body"))

			<-waitCh
		})

		It("should not upload a file with broken form", func() {
			req := &RequestData{
				Method: "POST",
				Path:   "/",
			}

			err := req.UploadFile("file", "filename.txt", bytes.NewReader([]byte("body")))
			Expect(err).NotTo(HaveOccurred())

			req.ReqReader.(*io.PipeReader).CloseWithError(fmt.Errorf("broken form"))
		})
	})

	Describe("UploadFileExtra", func() {
		It("should upload a file with extra fields", func() {
			handler = func(w http.ResponseWriter, r *http.Request) {
				reader, err := r.MultipartReader()
				Expect(err).NotTo(HaveOccurred())
				p, err := reader.NextPart()
				Expect(err).NotTo(HaveOccurred())
				body, err := ioutil.ReadAll(p)
				Expect(err).NotTo(HaveOccurred())
				Expect(body).To(Equal([]byte("bar")))
				Expect(p.FormName()).To(Equal("foo"))
				Expect(p.FileName()).To(Equal(""))
				p, err = reader.NextPart()
				Expect(err).NotTo(HaveOccurred())
				body, err = ioutil.ReadAll(p)
				Expect(err).NotTo(HaveOccurred())
				Expect(body).To(Equal([]byte("body")))
				Expect(p.FormName()).To(Equal("file"))
				Expect(p.FileName()).To(Equal("filename.txt"))

				fmt.Fprintln(w, "ok")
			}

			req := &RequestData{
				Method: "POST",
				Path:   "/",
			}

			extra := map[string]string{
				"foo": "bar",
			}

			err := req.UploadFileExtra("file", "filename.txt", bytes.NewReader([]byte("body")), extra)
			Expect(err).NotTo(HaveOccurred())

			_, err = client.Request(req)
			Expect(err).NotTo(HaveOccurred())
		})
	})

})