forked from goadesign/goa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware_test.go
154 lines (130 loc) · 4.18 KB
/
middleware_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
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
package goa_test
import (
"fmt"
"net/http"
"context"
"github.com/goadesign/goa"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("NewMiddleware", func() {
var input interface{}
var middleware goa.Middleware
var mErr error
JustBeforeEach(func() {
middleware, mErr = goa.NewMiddleware(input)
})
Context("using a goa Middleware", func() {
var goaMiddleware goa.Middleware
BeforeEach(func() {
goaMiddleware = func(h goa.Handler) goa.Handler { return h }
input = goaMiddleware
})
It("returns the middleware", func() {
Ω(fmt.Sprintf("%#v", middleware)).Should(Equal(fmt.Sprintf("%#v", goaMiddleware)))
Ω(mErr).ShouldNot(HaveOccurred())
})
})
Context("using a goa middleware func", func() {
var goaMiddlewareFunc func(goa.Handler) goa.Handler
BeforeEach(func() {
goaMiddlewareFunc = func(h goa.Handler) goa.Handler { return h }
input = goaMiddlewareFunc
})
It("returns the middleware", func() {
Ω(fmt.Sprintf("%#v", middleware)).Should(Equal(fmt.Sprintf("%#v", goa.Middleware(goaMiddlewareFunc))))
Ω(mErr).ShouldNot(HaveOccurred())
})
})
Context("with a context", func() {
var service *goa.Service
var req *http.Request
var rw http.ResponseWriter
var ctx context.Context
BeforeEach(func() {
service = goa.New("test")
ctrl := service.NewController("foo")
var err error
req, err = http.NewRequest("GET", "/goo", nil)
Ω(err).ShouldNot(HaveOccurred())
rw = new(TestResponseWriter)
ctx = goa.NewContext(ctrl.Context, rw, req, nil)
Ω(goa.ContextResponse(ctx).Status).Should(Equal(0))
})
Context("using a goa handler", func() {
BeforeEach(func() {
var goaHandler goa.Handler = func(ctx context.Context, rw http.ResponseWriter, req *http.Request) error {
service.Send(ctx, 200, "ok")
return nil
}
input = goaHandler
})
It("wraps it in a middleware", func() {
Ω(mErr).ShouldNot(HaveOccurred())
h := func(ctx context.Context, rw http.ResponseWriter, req *http.Request) error { return nil }
Ω(middleware(h)(ctx, rw, req)).ShouldNot(HaveOccurred())
Ω(goa.ContextResponse(ctx).Status).Should(Equal(200))
})
})
Context("using a goa handler func", func() {
BeforeEach(func() {
input = func(ctx context.Context, rw http.ResponseWriter, req *http.Request) error {
service.Send(ctx, 200, "ok")
return nil
}
})
It("wraps it in a middleware", func() {
Ω(mErr).ShouldNot(HaveOccurred())
h := func(ctx context.Context, rw http.ResponseWriter, req *http.Request) error { return nil }
Ω(middleware(h)(ctx, rw, req)).ShouldNot(HaveOccurred())
Ω(goa.ContextResponse(ctx).Status).Should(Equal(200))
})
})
Context("using a http middleware func", func() {
BeforeEach(func() {
input = func(h http.Handler) http.Handler { return h }
})
It("wraps it in a middleware", func() {
Ω(mErr).ShouldNot(HaveOccurred())
h := func(ctx context.Context, rw http.ResponseWriter, req *http.Request) error {
service.Send(ctx, 200, "ok")
return nil
}
Ω(middleware(h)(ctx, rw, req)).ShouldNot(HaveOccurred())
Ω(goa.ContextResponse(ctx).Status).Should(Equal(200))
})
})
Context("using a http handler", func() {
BeforeEach(func() {
input = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
w.Write([]byte("ok"))
})
})
It("wraps it in a middleware", func() {
Ω(mErr).ShouldNot(HaveOccurred())
h := func(ctx context.Context, rw http.ResponseWriter, req *http.Request) error {
return nil
}
Ω(middleware(h)(ctx, rw, req)).ShouldNot(HaveOccurred())
Ω(rw.(*TestResponseWriter).Status).Should(Equal(200))
})
})
Context("using a http handler func", func() {
BeforeEach(func() {
input = func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
w.Write([]byte("ok"))
}
})
It("wraps it in a middleware", func() {
Ω(mErr).ShouldNot(HaveOccurred())
h := func(ctx context.Context, rw http.ResponseWriter, req *http.Request) error {
return nil
}
Ω(middleware(h)(ctx, rw, req)).ShouldNot(HaveOccurred())
Ω(rw.(*TestResponseWriter).Status).Should(Equal(200))
})
})
})
})