-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware_test.go
87 lines (67 loc) · 1.75 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
package methodOverride
import (
"bytes"
"net/http"
"net/http/httptest"
"testing"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
)
func setupRouter() *gin.Engine {
// no debug mode
gin.SetMode(gin.ReleaseMode)
// create a default
r := gin.Default()
// our middle-ware
r.Use(ProcessMethodOverride(r))
// routes
r.POST("/test", testPOST)
r.GET("/test", testGET)
r.PUT("/test", testPUT)
// return to caller
return r
}
func TestNoDispatchPOST(t *testing.T) {
// setup
router := setupRouter()
// prepare
RequestURL := "/test"
RequestMethod := "POST"
RequestBody := bytes.NewBuffer([]byte("testing=1")) // no method
ExpectedResponseStatus := 200 // from testPOST
ExpectedResponse := "0" // from testPOST
// run
w := httptest.NewRecorder()
req, _ := http.NewRequest(RequestMethod, RequestURL, RequestBody)
router.ServeHTTP(w, req)
// check
assert.Equal(t, ExpectedResponseStatus, w.Code)
assert.Equal(t, ExpectedResponse, w.Body.String())
}
func TestDispatchToPUT(t *testing.T) {
// setup
router := setupRouter()
// prepare
RequestURL := "/test"
RequestMethod := "POST"
RequestBody := bytes.NewBuffer([]byte("_method=PUT&testing=1")) // method = PUT
ExpectedResponseStatus := 200 // from testPOST
ExpectedResponse := "1" // from testPOST
// run
w := httptest.NewRecorder()
req, _ := http.NewRequest(RequestMethod, RequestURL, RequestBody)
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
router.ServeHTTP(w, req)
// check
assert.Equal(t, ExpectedResponseStatus, w.Code)
assert.Equal(t, ExpectedResponse, w.Body.String())
}
func testGET(c *gin.Context) {
c.String(200, "pong")
}
func testPOST(c *gin.Context) {
c.String(200, "0")
}
func testPUT(c *gin.Context) {
c.String(200, "1")
}