forked from goadesign/goa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mux_test.go
69 lines (57 loc) · 1.43 KB
/
mux_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
package goa_test
import (
"bytes"
"io/ioutil"
"net/http"
"net/url"
"github.com/goadesign/goa"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Mux", func() {
var mux goa.ServeMux
var req *http.Request
var rw *TestResponseWriter
BeforeEach(func() {
mux = goa.NewMux()
})
JustBeforeEach(func() {
rw = &TestResponseWriter{ParentHeader: http.Header{}}
mux.ServeHTTP(rw, req)
})
Context("with no handler", func() {
BeforeEach(func() {
var err error
req, err = http.NewRequest("GET", "/", nil)
Ω(err).ShouldNot(HaveOccurred())
})
It("returns 404 to all requests", func() {
Ω(rw.Status).Should(Equal(404))
})
})
Context("with registered handlers", func() {
const reqMeth = "POST"
const reqPath = "/foo"
const reqBody = "some body"
var readMeth, readPath, readBody string
BeforeEach(func() {
var body bytes.Buffer
body.WriteString(reqBody)
var err error
req, err = http.NewRequest(reqMeth, reqPath, &body)
Ω(err).ShouldNot(HaveOccurred())
mux.Handle(reqMeth, reqPath, func(rw http.ResponseWriter, req *http.Request, vals url.Values) {
b, err := ioutil.ReadAll(req.Body)
Ω(err).ShouldNot(HaveOccurred())
readPath = req.URL.Path
readMeth = req.Method
readBody = string(b)
})
})
It("handles requests", func() {
Ω(readMeth).Should(Equal(reqMeth))
Ω(readPath).Should(Equal(reqPath))
Ω(readBody).Should(Equal(reqBody))
})
})
})