Skip to content

Commit 5993313

Browse files
xmh19936688unknwon
andauthored
context: add AllParams() (#187)
* add func AllParams() for Context It is usefull with for-each. * add unit test for AllParams() add unit test for AllParams() * Update context_test.go * Update context_test.go * Update context_test.go * Update context_test.go Co-authored-by: ᴜɴᴋɴᴡᴏɴ <[email protected]>
1 parent 993bb1c commit 5993313

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

context.go

+5
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,11 @@ func (ctx *Context) Params(name string) string {
260260
return ctx.params[name]
261261
}
262262

263+
// AllParams returns all params.
264+
func (ctx *Context) AllParams() Params {
265+
return ctx.params
266+
}
267+
263268
// SetParams sets value of param with given name.
264269
func (ctx *Context) SetParams(name, val string) {
265270
if name != "*" && !strings.HasPrefix(name, ":") {

context_test.go

+18
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import (
2020
"net/http"
2121
"net/http/httptest"
2222
"net/url"
23+
"sort"
2324
"strings"
2425
"testing"
2526
"time"
@@ -171,6 +172,23 @@ func Test_Context(t *testing.T) {
171172
So(resp.Body.String(), ShouldEqual, "user user 1 13 1.24 ")
172173
})
173174

175+
Convey("Get all URL paramaters", func() {
176+
m.Get("/:arg/:param/:flag", func(ctx *Context) string {
177+
kvs := make([]string, 0, len(ctx.AllParams()))
178+
for k, v := range ctx.AllParams() {
179+
kvs = append(kvs, k + "=" + v)
180+
}
181+
sort.Strings(kvs)
182+
return strings.Join(kvs, ",")
183+
})
184+
185+
resp := httptest.NewRecorder()
186+
req, err := http.NewRequest("GET", "/1/2/3", nil)
187+
So(err, ShouldBeNil)
188+
m.ServeHTTP(resp,req)
189+
So(resp.Body.String(), ShouldEqual, ":arg=1,:flag=3,:param=2")
190+
})
191+
174192
Convey("Get file", func() {
175193
m.Post("/getfile", func(ctx *Context) {
176194
ctx.Query("")

0 commit comments

Comments
 (0)