mirror of
https://github.com/halejohn/Cloudreve.git
synced 2026-01-26 17:41:57 +08:00
Fix: failed tests while static files not loaded
This commit is contained in:
@@ -47,6 +47,10 @@ func InjectSiteInfo() gin.HandlerFunc {
|
|||||||
ignoreFunc := func(c *gin.Context) {
|
ignoreFunc := func(c *gin.Context) {
|
||||||
c.Next()
|
c.Next()
|
||||||
}
|
}
|
||||||
|
if bootstrap.StaticFS == nil {
|
||||||
|
return ignoreFunc
|
||||||
|
}
|
||||||
|
|
||||||
// 读取index.html
|
// 读取index.html
|
||||||
file, err := bootstrap.StaticFS.Open("/index.html")
|
file, err := bootstrap.StaticFS.Open("/index.html")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@@ -99,6 +99,17 @@ func TestInjectSiteInfo(t *testing.T) {
|
|||||||
asserts := assert.New(t)
|
asserts := assert.New(t)
|
||||||
rec := httptest.NewRecorder()
|
rec := httptest.NewRecorder()
|
||||||
|
|
||||||
|
// 静态资源未加载
|
||||||
|
{
|
||||||
|
TestFunc := InjectSiteInfo()
|
||||||
|
|
||||||
|
c, _ := gin.CreateTestContext(rec)
|
||||||
|
c.Params = []gin.Param{}
|
||||||
|
c.Request, _ = http.NewRequest("GET", "/", nil)
|
||||||
|
TestFunc(c)
|
||||||
|
asserts.False(c.IsAborted())
|
||||||
|
}
|
||||||
|
|
||||||
// index.html 不存在
|
// index.html 不存在
|
||||||
{
|
{
|
||||||
testStatic := &StaticMock{}
|
testStatic := &StaticMock{}
|
||||||
|
|||||||
Reference in New Issue
Block a user