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
|
// Copyright 2020 Northern.tech AS
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package requestid
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/ant0ine/go-json-rest/rest"
"github.com/ant0ine/go-json-rest/rest/test"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
)
func init() {
gin.SetMode(gin.ReleaseMode) // please just shut up
}
func TestGinMiddleware(t *testing.T) {
t.Parallel()
testCases := []struct {
Name string
Options *MiddlewareOptions
Headers http.Header
}{{
Name: "Request with ID",
Headers: func() http.Header {
hdr := http.Header{}
hdr.Set(RequestIdHeader, "test")
return hdr
}(),
}, {
Name: "Request generated ID",
Options: NewMiddlewareOptions().
SetGenerateRequestID(true),
}}
for i := range testCases {
tc := testCases[i]
t.Run(tc.Name, func(t *testing.T) {
t.Parallel()
router := gin.New()
router.Use(Middleware(tc.Options))
router.GET("/test", func(c *gin.Context) {})
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "http://mender.io/test", nil)
for k, v := range tc.Headers {
for _, vv := range v {
req.Header.Add(k, vv)
}
}
router.ServeHTTP(w, req)
rsp := w.Result()
if id := tc.Headers.Get(RequestIdHeader); id != "" {
rspID := rsp.Header.Get(RequestIdHeader)
assert.Equal(t, id, rspID)
} else {
if tc.Options.GenerateRequestID != nil &&
*tc.Options.GenerateRequestID {
_, err := uuid.Parse(rsp.Header.Get(RequestIdHeader))
assert.NoError(t, err, "Generated requestID is not a UUID")
} else {
assert.Empty(t, rsp.Header.Get(RequestIdHeader))
}
}
})
}
}
func TestRequestIdMiddlewareWithReqID(t *testing.T) {
api := rest.NewApi()
api.Use(&RequestIdMiddleware{})
reqid := "4420a5b9-dbf2-4e5d-8b4f-3cf2013d04af"
api.SetApp(rest.AppSimple(func(w rest.ResponseWriter, r *rest.Request) {
assert.Equal(t, reqid, FromContext(r.Context()))
w.WriteJson(map[string]string{"foo": "bar"})
}))
handler := api.MakeHandler()
req := test.MakeSimpleRequest("GET", "http://localhost/", nil)
req.Header.Set(RequestIdHeader, reqid)
recorded := test.RunRequest(t, handler, req)
recorded.CodeIs(200)
recorded.ContentTypeIsJson()
recorded.HeaderIs(RequestIdHeader, reqid)
}
func TestRequestIdMiddlewareNoReqID(t *testing.T) {
api := rest.NewApi()
api.Use(&RequestIdMiddleware{})
api.SetApp(rest.AppSimple(func(w rest.ResponseWriter, r *rest.Request) {
reqid := FromContext(r.Context())
_, err := uuid.Parse(reqid)
assert.NoError(t, err)
w.WriteJson(map[string]string{"foo": "bar"})
}))
handler := api.MakeHandler()
req := test.MakeSimpleRequest("GET", "http://localhost/", nil)
recorded := test.RunRequest(t, handler, req)
recorded.CodeIs(200)
recorded.ContentTypeIsJson()
outReqIdStr := recorded.Recorder.HeaderMap.Get(RequestIdHeader)
_, err := uuid.Parse(outReqIdStr)
assert.NoError(t, err)
}
|