Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

32 lines
631B

  1. package middleware
  2. import (
  3. "io"
  4. "net/http"
  5. "net/http/httptest"
  6. "testing"
  7. "git.thevis.us/skepto/rex"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. func TestHeader(t *testing.T) {
  11. var values = make(http.Header)
  12. values.Set("X-Powered-By", "rex")
  13. app := rex.New()
  14. app.Use(Header(values))
  15. app.Get("/", func(w http.ResponseWriter, r *http.Request) {
  16. io.WriteString(w, "app")
  17. })
  18. Convey("rex.middleware.Header", t, func() {
  19. request, _ := http.NewRequest("GET", "/", nil)
  20. response := httptest.NewRecorder()
  21. app.ServeHTTP(response, request)
  22. So(response.Header().Get("X-Powered-By"), ShouldEqual, "rex")
  23. })
  24. }