mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 20:58:47 +08:00
300 lines
9.0 KiB
Go
300 lines
9.0 KiB
Go
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// static service testing.
|
|
|
|
package ghttp_test
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gogf/gf/debug/gdebug"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gogf/gf/text/gstr"
|
|
|
|
"github.com/gogf/gf/frame/g"
|
|
"github.com/gogf/gf/net/ghttp"
|
|
"github.com/gogf/gf/os/gfile"
|
|
"github.com/gogf/gf/test/gtest"
|
|
)
|
|
|
|
func Test_Static_ServerRoot(t *testing.T) {
|
|
// SetServerRoot with absolute path
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path := fmt.Sprintf(`%s/ghttp/static/test/%d`, gfile.TempDir(), p)
|
|
defer gfile.Remove(path)
|
|
gfile.PutContents(path+"/index.htm", "index")
|
|
s.SetServerRoot(path)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "index")
|
|
t.Assert(client.GetContent("/index.htm"), "index")
|
|
})
|
|
|
|
// SetServerRoot with relative path
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path := fmt.Sprintf(`static/test/%d`, p)
|
|
defer gfile.Remove(path)
|
|
gfile.PutContents(path+"/index.htm", "index")
|
|
s.SetServerRoot(path)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "index")
|
|
t.Assert(client.GetContent("/index.htm"), "index")
|
|
})
|
|
}
|
|
|
|
func Test_Static_ServerRoot_Security(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
s.SetServerRoot(gdebug.TestDataPath("static1"))
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "index")
|
|
t.Assert(client.GetContent("/index.htm"), "Not Found")
|
|
t.Assert(client.GetContent("/index.html"), "index")
|
|
t.Assert(client.GetContent("/test.html"), "test")
|
|
t.Assert(client.GetContent("/../main.html"), "Not Found")
|
|
t.Assert(client.GetContent("/..%2Fmain.html"), "Not Found")
|
|
})
|
|
}
|
|
|
|
func Test_Static_Folder_Forbidden(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path := fmt.Sprintf(`%s/ghttp/static/test/%d`, gfile.TempDir(), p)
|
|
defer gfile.Remove(path)
|
|
gfile.PutContents(path+"/test.html", "test")
|
|
s.SetServerRoot(path)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "Forbidden")
|
|
t.Assert(client.GetContent("/index.html"), "Not Found")
|
|
t.Assert(client.GetContent("/test.html"), "test")
|
|
})
|
|
}
|
|
|
|
func Test_Static_IndexFolder(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path := fmt.Sprintf(`%s/ghttp/static/test/%d`, gfile.TempDir(), p)
|
|
defer gfile.Remove(path)
|
|
gfile.PutContents(path+"/test.html", "test")
|
|
s.SetIndexFolder(true)
|
|
s.SetServerRoot(path)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.AssertNE(client.GetContent("/"), "Forbidden")
|
|
t.AssertNE(gstr.Pos(client.GetContent("/"), `<a href="/test.html"`), -1)
|
|
t.Assert(client.GetContent("/index.html"), "Not Found")
|
|
t.Assert(client.GetContent("/test.html"), "test")
|
|
})
|
|
}
|
|
|
|
func Test_Static_IndexFiles1(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path := fmt.Sprintf(`%s/ghttp/static/test/%d`, gfile.TempDir(), p)
|
|
defer gfile.Remove(path)
|
|
gfile.PutContents(path+"/index.html", "index")
|
|
gfile.PutContents(path+"/test.html", "test")
|
|
s.SetServerRoot(path)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "index")
|
|
t.Assert(client.GetContent("/index.html"), "index")
|
|
t.Assert(client.GetContent("/test.html"), "test")
|
|
})
|
|
}
|
|
|
|
func Test_Static_IndexFiles2(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path := fmt.Sprintf(`%s/ghttp/static/test/%d`, gfile.TempDir(), p)
|
|
defer gfile.Remove(path)
|
|
gfile.PutContents(path+"/test.html", "test")
|
|
s.SetIndexFiles([]string{"index.html", "test.html"})
|
|
s.SetServerRoot(path)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "test")
|
|
t.Assert(client.GetContent("/index.html"), "Not Found")
|
|
t.Assert(client.GetContent("/test.html"), "test")
|
|
})
|
|
}
|
|
|
|
func Test_Static_AddSearchPath1(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path1 := fmt.Sprintf(`%s/ghttp/static/test/%d`, gfile.TempDir(), p)
|
|
path2 := fmt.Sprintf(`%s/ghttp/static/test/%d/%d`, gfile.TempDir(), p, p)
|
|
defer gfile.Remove(path1)
|
|
defer gfile.Remove(path2)
|
|
gfile.PutContents(path2+"/test.html", "test")
|
|
s.SetServerRoot(path1)
|
|
s.AddSearchPath(path2)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "Forbidden")
|
|
t.Assert(client.GetContent("/test.html"), "test")
|
|
})
|
|
}
|
|
|
|
func Test_Static_AddSearchPath2(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path1 := fmt.Sprintf(`%s/ghttp/static/test/%d`, gfile.TempDir(), p)
|
|
path2 := fmt.Sprintf(`%s/ghttp/static/test/%d/%d`, gfile.TempDir(), p, p)
|
|
defer gfile.Remove(path1)
|
|
defer gfile.Remove(path2)
|
|
gfile.PutContents(path1+"/test.html", "test1")
|
|
gfile.PutContents(path2+"/test.html", "test2")
|
|
s.SetServerRoot(path1)
|
|
s.AddSearchPath(path2)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "Forbidden")
|
|
t.Assert(client.GetContent("/test.html"), "test1")
|
|
})
|
|
}
|
|
|
|
func Test_Static_AddStaticPath(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path1 := fmt.Sprintf(`%s/ghttp/static/test/%d`, gfile.TempDir(), p)
|
|
path2 := fmt.Sprintf(`%s/ghttp/static/test/%d/%d`, gfile.TempDir(), p, p)
|
|
defer gfile.Remove(path1)
|
|
defer gfile.Remove(path2)
|
|
gfile.PutContents(path1+"/test.html", "test1")
|
|
gfile.PutContents(path2+"/test.html", "test2")
|
|
s.SetServerRoot(path1)
|
|
s.AddStaticPath("/my-test", path2)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "Forbidden")
|
|
t.Assert(client.GetContent("/test.html"), "test1")
|
|
t.Assert(client.GetContent("/my-test/test.html"), "test2")
|
|
})
|
|
}
|
|
|
|
func Test_Static_AddStaticPath_Priority(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path1 := fmt.Sprintf(`%s/ghttp/static/test/%d/test`, gfile.TempDir(), p)
|
|
path2 := fmt.Sprintf(`%s/ghttp/static/test/%d/%d/test`, gfile.TempDir(), p, p)
|
|
defer gfile.Remove(path1)
|
|
defer gfile.Remove(path2)
|
|
gfile.PutContents(path1+"/test.html", "test1")
|
|
gfile.PutContents(path2+"/test.html", "test2")
|
|
s.SetServerRoot(path1)
|
|
s.AddStaticPath("/test", path2)
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "Forbidden")
|
|
t.Assert(client.GetContent("/test.html"), "test1")
|
|
t.Assert(client.GetContent("/test/test.html"), "test2")
|
|
})
|
|
}
|
|
|
|
func Test_Static_Rewrite(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
p, _ := ports.PopRand()
|
|
s := g.Server(p)
|
|
path := fmt.Sprintf(`%s/ghttp/static/test/%d`, gfile.TempDir(), p)
|
|
defer gfile.Remove(path)
|
|
gfile.PutContents(path+"/test1.html", "test1")
|
|
gfile.PutContents(path+"/test2.html", "test2")
|
|
s.SetServerRoot(path)
|
|
s.SetRewrite("/test.html", "/test1.html")
|
|
s.SetRewriteMap(g.MapStrStr{
|
|
"/my-test1": "/test1.html",
|
|
"/my-test2": "/test2.html",
|
|
})
|
|
s.SetPort(p)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
time.Sleep(100 * time.Millisecond)
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
t.Assert(client.GetContent("/"), "Forbidden")
|
|
t.Assert(client.GetContent("/test.html"), "test1")
|
|
t.Assert(client.GetContent("/test1.html"), "test1")
|
|
t.Assert(client.GetContent("/test2.html"), "test2")
|
|
t.Assert(client.GetContent("/my-test1"), "test1")
|
|
t.Assert(client.GetContent("/my-test2"), "test2")
|
|
})
|
|
}
|