-
Notifications
You must be signed in to change notification settings - Fork 146
/
fs_embed_test.go
59 lines (48 loc) · 1.41 KB
/
fs_embed_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//go:build go1.16
// +build go1.16
package render
import (
"embed"
"net/http"
"net/http/httptest"
"testing"
)
//go:embed testdata/*/*.html testdata/*/*.tmpl testdata/*/*/*.tmpl
var EmbedFixtures embed.FS
func TestEmbedFileSystemTemplateLookup(t *testing.T) {
baseDir := "testdata/template-dir-test"
fname0Rel := "0"
fname1Rel := "subdir/1"
fnameShouldParsedRel := "dedicated.tmpl/notbad"
dirShouldNotParsedRel := "dedicated"
r := New(Options{
Directory: baseDir,
Extensions: []string{".tmpl", ".html"},
FileSystem: &EmbedFileSystem{
FS: EmbedFixtures,
},
})
expect(t, r.TemplateLookup(fname1Rel) != nil, true)
expect(t, r.TemplateLookup(fname0Rel) != nil, true)
expect(t, r.TemplateLookup(fnameShouldParsedRel) != nil, true)
expect(t, r.TemplateLookup(dirShouldNotParsedRel) == nil, true)
}
func TestEmbedFileSystemHTMLBasic(t *testing.T) {
render := New(Options{
Directory: "testdata/basic",
FileSystem: &EmbedFileSystem{
FS: EmbedFixtures,
},
})
var err error
h := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
err = render.HTML(w, http.StatusOK, "hello", "gophers")
})
res := httptest.NewRecorder()
req, _ := http.NewRequestWithContext(ctx, http.MethodGet, "/foo", nil)
h.ServeHTTP(res, req)
expectNil(t, err)
expect(t, res.Code, 200)
expect(t, res.Header().Get(ContentType), ContentHTML+"; charset=UTF-8")
expect(t, res.Body.String(), "<h1>Hello gophers</h1>\n")
}