mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-26 02:09:47 +08:00
54c63002cc
* Feature #1282 - Support pre-gzipped files * Fix broken test cases * Support brotli encoding as well * Fix for #1276 - support integers and floats as metadata in markdown (#1278) * Fix for #1276 * Use strconv.Format * Use map[string]interface{} as variables * One more file * Always run all tests before commit * Get rid of DocFlags * Fix syntax in caddy.conf * Update to Go 1.7.4 * Add send_timeout property to fastcgi directive. * Convert rwc field on FCGIClient from type io.ReadWriteCloser to net.Conn. * Return HTTP 504 to the client when a timeout occurs. * In Handler.ServeHTTP(), close the connection before returning an HTTP 502/504. * Refactor tests and add coverage. * Return HTTP 504 when FastCGI connect times out. * test: add unit test for #1283 (#1288) * After review fixes * Limit the number of restarts with systemd * Prevent fd leak * Prevent fd leak * Refactor loops * gofmt
130 lines
2.5 KiB
Go
130 lines
2.5 KiB
Go
package gzip
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mholt/caddy"
|
|
"github.com/mholt/caddy/caddyhttp/httpserver"
|
|
)
|
|
|
|
func TestSetup(t *testing.T) {
|
|
c := caddy.NewTestController("http", `gzip`)
|
|
err := setup(c)
|
|
if err != nil {
|
|
t.Errorf("Expected no errors, but got: %v", err)
|
|
}
|
|
mids := httpserver.GetConfig(c).Middleware()
|
|
if mids == nil {
|
|
t.Fatal("Expected middleware, was nil instead")
|
|
}
|
|
|
|
handler := mids[0](httpserver.EmptyNext)
|
|
myHandler, ok := handler.(Gzip)
|
|
if !ok {
|
|
t.Fatalf("Expected handler to be type Gzip, got: %#v", handler)
|
|
}
|
|
|
|
if !httpserver.SameNext(myHandler.Next, httpserver.EmptyNext) {
|
|
t.Error("'Next' field of handler was not set properly")
|
|
}
|
|
|
|
tests := []struct {
|
|
input string
|
|
shouldErr bool
|
|
}{
|
|
{`gzip {`, true},
|
|
{`gzip {}`, true},
|
|
{`gzip a b`, true},
|
|
{`gzip a {`, true},
|
|
{`gzip { not f } `, true},
|
|
{`gzip { not } `, true},
|
|
{`gzip { not /file
|
|
ext .html
|
|
level 1
|
|
} `, false},
|
|
{`gzip { level 9 } `, false},
|
|
{`gzip { ext } `, true},
|
|
{`gzip { ext /f
|
|
} `, true},
|
|
{`gzip { not /file
|
|
ext .html
|
|
level 1
|
|
}
|
|
gzip`, false},
|
|
{`gzip {
|
|
ext ""
|
|
}`, false},
|
|
{`gzip { not /file
|
|
ext .html
|
|
level 1
|
|
}
|
|
gzip { not /file1
|
|
ext .htm
|
|
level 3
|
|
}
|
|
`, false},
|
|
{`gzip { not /file
|
|
ext .html
|
|
level 1
|
|
}
|
|
gzip { not /file1
|
|
ext .htm
|
|
level 3
|
|
}
|
|
`, false},
|
|
{`gzip { not /file
|
|
ext *
|
|
level 1
|
|
}
|
|
`, false},
|
|
{`gzip { not /file
|
|
ext *
|
|
level 1
|
|
min_length ab
|
|
}
|
|
`, true},
|
|
{`gzip { not /file
|
|
ext *
|
|
level 1
|
|
min_length 1000
|
|
}
|
|
`, false},
|
|
}
|
|
for i, test := range tests {
|
|
_, err := gzipParse(caddy.NewTestController("http", test.input))
|
|
if test.shouldErr && err == nil {
|
|
t.Errorf("Test %v: Expected error but found nil", i)
|
|
} else if !test.shouldErr && err != nil {
|
|
t.Errorf("Test %v: Expected no error but found error: %v", i, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestShouldAddResponseFilters(t *testing.T) {
|
|
configs, err := gzipParse(caddy.NewTestController("http", `gzip { min_length 654 }`))
|
|
|
|
if err != nil {
|
|
t.Errorf("Test expected no error but found: %v", err)
|
|
}
|
|
filters := 0
|
|
|
|
for _, config := range configs {
|
|
for _, filter := range config.ResponseFilters {
|
|
switch filter.(type) {
|
|
case SkipCompressedFilter:
|
|
filters++
|
|
case LengthFilter:
|
|
filters++
|
|
|
|
if filter != LengthFilter(654) {
|
|
t.Errorf("Expected LengthFilter to have length 654, got: %v", filter)
|
|
}
|
|
}
|
|
}
|
|
|
|
if filters != 2 {
|
|
t.Errorf("Expected 2 response filters to be registered, got: %v", filters)
|
|
}
|
|
}
|
|
}
|