-
Notifications
You must be signed in to change notification settings - Fork 4
/
decorator_test.go
79 lines (74 loc) · 2.11 KB
/
decorator_test.go
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
package transport
import (
"errors"
"net/http"
"testing"
)
func TestChainAppliesReverseOrder(t *testing.T) {
var annotations []string
var annotator = func(annotation string) func(wrapped http.RoundTripper) http.RoundTripper {
return func(wrapped http.RoundTripper) http.RoundTripper {
return RoundTripperFunc(func(r *http.Request) (*http.Response, error) {
annotations = append(annotations, annotation)
return wrapped.RoundTrip(r)
})
}
}
var base = RoundTripperFunc(func(r *http.Request) (*http.Response, error) {
return nil, errors.New("")
})
var chain = Chain{
annotator("one"),
annotator("two"),
annotator("three"),
}
var result = chain.Apply(base)
_, _ = result.RoundTrip(nil)
if len(annotations) != 3 {
t.Fatal("did not apply decorators")
}
if annotations[0] != "one" {
t.Fatalf("decorators applied out of order: %v", annotations)
}
if annotations[1] != "two" {
t.Fatalf("decorators applied out of order: %v", annotations)
}
if annotations[2] != "three" {
t.Fatalf("decorators applied out of order: %v", annotations)
}
}
func TestChainAppliesFactoryReverseOrder(t *testing.T) {
var annotations []string
var annotator = func(annotation string) func(wrapped http.RoundTripper) http.RoundTripper {
return func(wrapped http.RoundTripper) http.RoundTripper {
return RoundTripperFunc(func(r *http.Request) (*http.Response, error) {
annotations = append(annotations, annotation)
return wrapped.RoundTrip(r)
})
}
}
var base = func() http.RoundTripper {
return RoundTripperFunc(func(r *http.Request) (*http.Response, error) {
return nil, errors.New("")
})
}
var chain = Chain{
annotator("one"),
annotator("two"),
annotator("three"),
}
var result = chain.ApplyFactory(base)
_, _ = result().RoundTrip(nil)
if len(annotations) != 3 {
t.Fatal("did not apply decorators")
}
if annotations[0] != "one" {
t.Fatalf("decorators applied out of order: %v", annotations)
}
if annotations[1] != "two" {
t.Fatalf("decorators applied out of order: %v", annotations)
}
if annotations[2] != "three" {
t.Fatalf("decorators applied out of order: %v", annotations)
}
}