代码拉取完成,页面将自动刷新
package packr
import (
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/gobuffalo/packd"
"github.com/gobuffalo/packr/v2/file/resolver"
"github.com/stretchr/testify/require"
)
var httpBox = func() packd.Box {
box := New("http box", "")
ind, err := resolver.HexGzipString("<h1>Index!</h1>")
if err != nil {
panic(err)
}
hello, err := resolver.HexGzipString("hello world!")
if err != nil {
panic(err)
}
hg, err := resolver.NewHexGzip(map[string]string{
"index.html": ind,
"hello.txt": hello,
})
if err != nil {
panic(err)
}
box.DefaultResolver = hg
return box
}()
func Test_HTTPBox(t *testing.T) {
r := require.New(t)
mux := http.NewServeMux()
mux.Handle("/", http.FileServer(httpBox))
req, err := http.NewRequest("GET", "/hello.txt", nil)
r.NoError(err)
res := httptest.NewRecorder()
mux.ServeHTTP(res, req)
r.Equal(200, res.Code)
r.Equal("hello world!", strings.TrimSpace(res.Body.String()))
}
func Test_HTTPBox_NotFound(t *testing.T) {
r := require.New(t)
mux := http.NewServeMux()
mux.Handle("/", http.FileServer(httpBox))
req, err := http.NewRequest("GET", "/notInBox.txt", nil)
r.NoError(err)
res := httptest.NewRecorder()
mux.ServeHTTP(res, req)
r.Equal(404, res.Code)
}
func Test_HTTPBox_Handles_IndexHTML_Nested(t *testing.T) {
r := require.New(t)
box := New("Test_HTTPBox_Handles_IndexHTML_Nested", "!")
box.AddString("foo/index.html", "foo")
mux := http.NewServeMux()
mux.Handle("/", http.FileServer(box))
req, err := http.NewRequest("GET", "/foo", nil)
r.NoError(err)
res := httptest.NewRecorder()
mux.ServeHTTP(res, req)
r.Equal(200, res.Code)
r.Equal("foo", strings.TrimSpace(res.Body.String()))
}
func Test_HTTPBox_Handles_IndexHTML(t *testing.T) {
r := require.New(t)
mux := http.NewServeMux()
mux.Handle("/", http.FileServer(httpBox))
req, err := http.NewRequest("GET", "/", nil)
r.NoError(err)
res := httptest.NewRecorder()
mux.ServeHTTP(res, req)
r.Equal(200, res.Code)
r.Equal("<h1>Index!</h1>", strings.TrimSpace(res.Body.String()))
}
func Test_HTTPBox_CaseInsensitive(t *testing.T) {
mux := http.NewServeMux()
httpBox.AddString("myfile.txt", "this is my file")
mux.Handle("/", http.FileServer(httpBox))
for _, path := range []string{"/MyFile.txt", "/myfile.txt", "/Myfile.txt"} {
t.Run(path, func(st *testing.T) {
r := require.New(st)
req, err := http.NewRequest("GET", path, nil)
r.NoError(err)
res := httptest.NewRecorder()
mux.ServeHTTP(res, req)
r.Equal(200, res.Code)
r.Equal("this is my file", strings.TrimSpace(res.Body.String()))
})
}
}
func Test_HTTPBox_Disk(t *testing.T) {
r := require.New(t)
box := New("http disk box", "./_fixtures/http_test")
mux := http.NewServeMux()
mux.Handle("/", http.FileServer(box))
type testcase struct {
URL, Content, Location string
Code int
}
testcases := []testcase{
{"/", "Index", "", 200},
{"/sub", "Sub", "", 200},
{"/index.html", "", "./", 301},
{"/sub/index.html", "", "./", 301},
{"/sub/", "", "../sub", 301},
{"/footer.html", "Footer", "", 200},
{"/css/main.css", "Css", "", 200},
{"/css", "404 page not found", "", 404},
{"/css/", "404 page not found", "", 404},
}
for _, tc := range testcases {
t.Run("path"+tc.URL, func(t *testing.T) {
req, err := http.NewRequest("GET", tc.URL, nil)
r.NoError(err)
res := httptest.NewRecorder()
mux.ServeHTTP(res, req)
r.Equal(tc.Code, res.Code)
r.Equal(tc.Location, res.Header().Get("location"))
r.Equal(tc.Content, strings.TrimSpace(res.Body.String()))
})
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。