Quellcode durchsuchen

add vars into router

tags/v0.9.0
jimzhan vor 9 Jahren
Ursprung
Commit
07369cd9ab
3 geänderte Dateien mit 19 neuen und 11 gelöschten Zeilen
  1. +5
    -0
      router.go
  2. +14
    -0
      router_test.go
  3. +0
    -11
      utils.go

+ 5
- 0
router.go Datei anzeigen

@@ -141,3 +141,8 @@ func (self *Router) Run() {
Fatalf("Failed to start the server: %v", err)
}
}

// Vars returns the route variables for the current request, if any.
func (self *Router) Vars(r *http.Request) map[string]string {
return mux.Vars(r)
}

+ 14
- 0
router_test.go Datei anzeigen

@@ -122,3 +122,17 @@ func TestUse(t *testing.T) {
So(response.Header().Get("Content-Type"), ShouldEqual, "application/json")
})
}

func TestVars(t *testing.T) {
Convey("rex.Vars", t, func() {
app := New()
app.Get("/users/{id}", func(w http.ResponseWriter, r *http.Request) {
vars := app.Vars(r)
So(vars["id"], ShouldEqual, "123")
})

request, _ := http.NewRequest("GET", "/users/123", nil)
response := httptest.NewRecorder()
app.ServeHTTP(response, request)
})
}

+ 0
- 11
utils.go Datei anzeigen

@@ -1,12 +1 @@
package rex

import (
"net/http"

"github.com/gorilla/mux"
)

// Vars returns the route variables for the current request, if any.
func Vars(r *http.Request) map[string]string {
return mux.Vars(r)
}

Laden…
Abbrechen
Speichern