Skip to content

Commit 20125ed

Browse files
authored
Merge pull request #39 from FireTail-io/patch-resource
Fix resource including query string when no OpenAPI spec is used
2 parents 16f588f + 3434cc8 commit 20125ed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

middlewares/http/middleware.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func GetMiddleware(options *Options) (func(next http.Handler) http.Handler, erro
6161
Headers: r.Header,
6262
Method: logging.Method(r.Method),
6363
IP: strings.Split(r.RemoteAddr, ":")[0],
64-
Resource: r.URL.RequestURI(), // We'll fill this in later if we have a router
64+
Resource: r.URL.Path, // We'll fill this in later if we have a router
6565
},
6666
}
6767
if r.TLS != nil {

middlewares/http/middleware_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func TestNoSpec(t *testing.T) {
101101
logEntry, err := logging.UnmarshalLogEntry(logs[0])
102102
require.Nil(t, err)
103103
assert.Equal(t, logEntry.Request.Resource, "/implemented/1")
104-
assert.Equal(t, logEntry.Request.URI, "http://example.com/implemented/1")
104+
assert.Equal(t, logEntry.Request.URI, "http://example.com/implemented/1?testparam=1")
105105
wg.Done()
106106
},
107107
},
@@ -111,7 +111,7 @@ func TestNoSpec(t *testing.T) {
111111
responseRecorder := httptest.NewRecorder()
112112

113113
request := httptest.NewRequest(
114-
"POST", "/implemented/1",
114+
"POST", "/implemented/1?testparam=1",
115115
io.NopCloser(bytes.NewBuffer([]byte("{\"description\":\"test description\"}"))),
116116
)
117117
request.Header.Add("Content-Type", "application/json")

0 commit comments

Comments
 (0)