mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-26 02:09:47 +08:00
0a798aafac
Also disable some tests on context.Hostname because they're not portable
145 lines
3.7 KiB
Go
145 lines
3.7 KiB
Go
package templates
|
|
|
|
import (
|
|
"bytes"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/mholt/caddy/caddyhttp/httpserver"
|
|
)
|
|
|
|
func TestTemplates(t *testing.T) {
|
|
tmpl := Templates{
|
|
Next: httpserver.HandlerFunc(func(w http.ResponseWriter, r *http.Request) (int, error) {
|
|
return 0, nil
|
|
}),
|
|
Rules: []Rule{
|
|
{
|
|
Extensions: []string{".html"},
|
|
IndexFiles: []string{"index.html"},
|
|
Path: "/photos",
|
|
},
|
|
{
|
|
Extensions: []string{".html", ".htm"},
|
|
IndexFiles: []string{"index.html", "index.htm"},
|
|
Path: "/images",
|
|
Delims: [2]string{"{%", "%}"},
|
|
},
|
|
},
|
|
Root: "./testdata",
|
|
FileSys: http.Dir("./testdata"),
|
|
BufPool: &sync.Pool{New: func() interface{} { return new(bytes.Buffer) }},
|
|
}
|
|
|
|
tmplroot := Templates{
|
|
Next: httpserver.HandlerFunc(func(w http.ResponseWriter, r *http.Request) (int, error) {
|
|
return 0, nil
|
|
}),
|
|
Rules: []Rule{
|
|
{
|
|
Extensions: []string{".html"},
|
|
IndexFiles: []string{"index.html"},
|
|
Path: "/",
|
|
},
|
|
},
|
|
Root: "./testdata",
|
|
FileSys: http.Dir("./testdata"),
|
|
BufPool: &sync.Pool{New: func() interface{} { return new(bytes.Buffer) }},
|
|
}
|
|
|
|
// Test tmpl on /photos/test.html
|
|
req, err := http.NewRequest("GET", "/photos/test.html", nil)
|
|
if err != nil {
|
|
t.Fatalf("Test: Could not create HTTP request: %v", err)
|
|
}
|
|
|
|
rec := httptest.NewRecorder()
|
|
|
|
tmpl.ServeHTTP(rec, req)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Fatalf("Test: Wrong response code: %d, should be %d", rec.Code, http.StatusOK)
|
|
}
|
|
|
|
respBody := rec.Body.String()
|
|
expectedBody := `<!DOCTYPE html><html><head><title>test page</title></head><body><h1>Header title</h1>
|
|
</body></html>
|
|
`
|
|
|
|
if respBody != expectedBody {
|
|
t.Fatalf("Test: the expected body %v is different from the response one: %v", expectedBody, respBody)
|
|
}
|
|
|
|
// Test tmpl on /images/img.htm
|
|
req, err = http.NewRequest("GET", "/images/img.htm", nil)
|
|
if err != nil {
|
|
t.Fatalf("Could not create HTTP request: %v", err)
|
|
}
|
|
|
|
rec = httptest.NewRecorder()
|
|
|
|
tmpl.ServeHTTP(rec, req)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Fatalf("Test: Wrong response code: %d, should be %d", rec.Code, http.StatusOK)
|
|
}
|
|
|
|
respBody = rec.Body.String()
|
|
expectedBody = `<!DOCTYPE html><html><head><title>img</title></head><body><h1>Header title</h1>
|
|
</body></html>
|
|
`
|
|
|
|
if respBody != expectedBody {
|
|
t.Fatalf("Test: the expected body %v is different from the response one: %v", expectedBody, respBody)
|
|
}
|
|
|
|
// Test tmpl on /images/img2.htm
|
|
req, err = http.NewRequest("GET", "/images/img2.htm", nil)
|
|
if err != nil {
|
|
t.Fatalf("Could not create HTTP request: %v", err)
|
|
}
|
|
|
|
rec = httptest.NewRecorder()
|
|
|
|
tmpl.ServeHTTP(rec, req)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Fatalf("Test: Wrong response code: %d, should be %d", rec.Code, http.StatusOK)
|
|
}
|
|
|
|
respBody = rec.Body.String()
|
|
expectedBody = `<!DOCTYPE html><html><head><title>img</title></head><body>{{.Include "header.html"}}</body></html>
|
|
`
|
|
|
|
if respBody != expectedBody {
|
|
t.Fatalf("Test: the expected body %v is different from the response one: %v", expectedBody, respBody)
|
|
}
|
|
|
|
// Test tmplroot on /root.html
|
|
req, err = http.NewRequest("GET", "/root.html", nil)
|
|
if err != nil {
|
|
t.Fatalf("Could not create HTTP request: %v", err)
|
|
}
|
|
|
|
rec = httptest.NewRecorder()
|
|
|
|
// register custom function which is used in template
|
|
httpserver.TemplateFuncs["root"] = func() string { return "root" }
|
|
tmplroot.ServeHTTP(rec, req)
|
|
|
|
if rec.Code != http.StatusOK {
|
|
t.Fatalf("Test: Wrong response code: %d, should be %d", rec.Code, http.StatusOK)
|
|
}
|
|
|
|
respBody = rec.Body.String()
|
|
expectedBody = `<!DOCTYPE html><html><head><title>root</title></head><body><h1>Header title</h1>
|
|
</body></html>
|
|
`
|
|
|
|
if respBody != expectedBody {
|
|
t.Fatalf("Test: the expected body %v is different from the response one: %v", expectedBody, respBody)
|
|
}
|
|
}
|