Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12345678910111213141516171819202122232425262728293031
  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. }