mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-26 02:09:47 +08:00
a798e0c951
- Server types no longer need to store their own contexts; they are stored on the caddy.Instance, which means each context will be properly GC'ed when the instance is stopped. Server types should use type assertions to convert from caddy.Context to their concrete context type when they need to use it. - Pass the entire context into httpserver.GetConfig instead of only the Key field. - caddy.NewTestController now requires a server type string so it can create a controller with the proper concrete context associated with that server type. Tests still need more attention so that we can test the proper creation of startup functions, etc.
76 lines
2.0 KiB
Go
76 lines
2.0 KiB
Go
package extensions
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mholt/caddy"
|
|
"github.com/mholt/caddy/caddyhttp/httpserver"
|
|
)
|
|
|
|
func TestSetup(t *testing.T) {
|
|
c := caddy.NewTestController("http", `ext .html .htm .php`)
|
|
err := setup(c)
|
|
if err != nil {
|
|
t.Fatalf("Expected no errors, got: %v", err)
|
|
}
|
|
|
|
mids := httpserver.GetConfig(c).Middleware()
|
|
if len(mids) == 0 {
|
|
t.Fatal("Expected middleware, had 0 instead")
|
|
}
|
|
|
|
handler := mids[0](httpserver.EmptyNext)
|
|
myHandler, ok := handler.(Ext)
|
|
|
|
if !ok {
|
|
t.Fatalf("Expected handler to be type Ext, got: %#v", handler)
|
|
}
|
|
|
|
if myHandler.Extensions[0] != ".html" {
|
|
t.Errorf("Expected .html in the list of Extensions")
|
|
}
|
|
if myHandler.Extensions[1] != ".htm" {
|
|
t.Errorf("Expected .htm in the list of Extensions")
|
|
}
|
|
if myHandler.Extensions[2] != ".php" {
|
|
t.Errorf("Expected .php in the list of Extensions")
|
|
}
|
|
if !httpserver.SameNext(myHandler.Next, httpserver.EmptyNext) {
|
|
t.Error("'Next' field of handler was not set properly")
|
|
}
|
|
|
|
}
|
|
|
|
func TestExtParse(t *testing.T) {
|
|
tests := []struct {
|
|
inputExts string
|
|
shouldErr bool
|
|
expectedExts []string
|
|
}{
|
|
{`ext .html .htm .php`, false, []string{".html", ".htm", ".php"}},
|
|
{`ext .php .html .xml`, false, []string{".php", ".html", ".xml"}},
|
|
{`ext .txt .php .xml`, false, []string{".txt", ".php", ".xml"}},
|
|
}
|
|
for i, test := range tests {
|
|
actualExts, err := extParse(caddy.NewTestController("http", test.inputExts))
|
|
|
|
if err == nil && test.shouldErr {
|
|
t.Errorf("Test %d didn't error, but it should have", i)
|
|
} else if err != nil && !test.shouldErr {
|
|
t.Errorf("Test %d errored, but it shouldn't have; got '%v'", i, err)
|
|
}
|
|
|
|
if len(actualExts) != len(test.expectedExts) {
|
|
t.Fatalf("Test %d expected %d rules, but got %d",
|
|
i, len(test.expectedExts), len(actualExts))
|
|
}
|
|
for j, actualExt := range actualExts {
|
|
if actualExt != test.expectedExts[j] {
|
|
t.Fatalf("Test %d expected %dth extension to be %s , but got %s",
|
|
i, j, test.expectedExts[j], actualExt)
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|