2015-06-07 07:58:37 +08:00
|
|
|
package gzip
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mholt/caddy/middleware"
|
|
|
|
)
|
|
|
|
|
2015-06-07 08:27:36 +08:00
|
|
|
func TestGzipHandler(t *testing.T) {
|
2015-06-07 07:58:37 +08:00
|
|
|
|
|
|
|
pathFilter := PathFilter{make(Set)}
|
|
|
|
badPaths := []string{"/bad", "/nogzip", "/nongzip"}
|
|
|
|
for _, p := range badPaths {
|
|
|
|
pathFilter.IgnoredPaths.Add(p)
|
|
|
|
}
|
2015-06-11 04:59:08 +08:00
|
|
|
extFilter := ExtFilter{make(Set)}
|
|
|
|
for _, e := range []string{".txt", ".html", ".css", ".md"} {
|
|
|
|
extFilter.Exts.Add(e)
|
|
|
|
}
|
2015-06-07 07:58:37 +08:00
|
|
|
gz := Gzip{Configs: []Config{
|
2015-10-10 06:35:34 +08:00
|
|
|
{Filters: []Filter{pathFilter, extFilter}},
|
2015-06-07 07:58:37 +08:00
|
|
|
}}
|
|
|
|
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
gz.Next = nextFunc(true)
|
2015-06-11 04:59:08 +08:00
|
|
|
var exts = []string{
|
|
|
|
".html", ".css", ".md",
|
|
|
|
}
|
|
|
|
for _, e := range exts {
|
2015-06-07 07:58:37 +08:00
|
|
|
url := "/file" + e
|
|
|
|
r, err := http.NewRequest("GET", url, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
r.Header.Set("Accept-Encoding", "gzip")
|
|
|
|
_, err = gz.ServeHTTP(w, r)
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
w = httptest.NewRecorder()
|
|
|
|
gz.Next = nextFunc(false)
|
|
|
|
for _, p := range badPaths {
|
2015-06-11 04:59:08 +08:00
|
|
|
for _, e := range exts {
|
2015-06-07 07:58:37 +08:00
|
|
|
url := p + "/file" + e
|
|
|
|
r, err := http.NewRequest("GET", url, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
r.Header.Set("Accept-Encoding", "gzip")
|
|
|
|
_, err = gz.ServeHTTP(w, r)
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
w = httptest.NewRecorder()
|
|
|
|
gz.Next = nextFunc(false)
|
2015-06-11 04:59:08 +08:00
|
|
|
exts = []string{
|
2015-06-07 07:58:37 +08:00
|
|
|
".htm1", ".abc", ".mdx",
|
|
|
|
}
|
|
|
|
for _, e := range exts {
|
|
|
|
url := "/file" + e
|
|
|
|
r, err := http.NewRequest("GET", url, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
r.Header.Set("Accept-Encoding", "gzip")
|
|
|
|
_, err = gz.ServeHTTP(w, r)
|
2015-06-11 04:59:08 +08:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
}
|
2015-06-07 07:58:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func nextFunc(shouldGzip bool) middleware.Handler {
|
|
|
|
return middleware.HandlerFunc(func(w http.ResponseWriter, r *http.Request) (int, error) {
|
|
|
|
if shouldGzip {
|
|
|
|
if r.Header.Get("Accept-Encoding") != "" {
|
|
|
|
return 0, fmt.Errorf("Accept-Encoding header not expected")
|
|
|
|
}
|
|
|
|
if w.Header().Get("Content-Encoding") != "gzip" {
|
|
|
|
return 0, fmt.Errorf("Content-Encoding must be gzip, found %v", r.Header.Get("Content-Encoding"))
|
|
|
|
}
|
|
|
|
if _, ok := w.(gzipResponseWriter); !ok {
|
|
|
|
return 0, fmt.Errorf("ResponseWriter should be gzipResponseWriter, found %T", w)
|
|
|
|
}
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
if r.Header.Get("Accept-Encoding") == "" {
|
|
|
|
return 0, fmt.Errorf("Accept-Encoding header expected")
|
|
|
|
}
|
|
|
|
if w.Header().Get("Content-Encoding") == "gzip" {
|
|
|
|
return 0, fmt.Errorf("Content-Encoding must not be gzip, found gzip")
|
|
|
|
}
|
|
|
|
if _, ok := w.(gzipResponseWriter); ok {
|
|
|
|
return 0, fmt.Errorf("ResponseWriter should not be gzipResponseWriter")
|
|
|
|
}
|
|
|
|
return 0, nil
|
|
|
|
})
|
|
|
|
}
|