gf/net/ghttp/ghttp_unit_router_basic_test.go

283 lines
7.0 KiB
Go
Raw Normal View History

// 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.
package ghttp_test
import (
2019-06-19 09:06:52 +08:00
"fmt"
"testing"
"time"
2019-07-29 21:01:19 +08:00
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/net/ghttp"
"github.com/gogf/gf/test/gtest"
)
func Test_Router_Basic1(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2019-06-19 09:06:52 +08:00
s := g.Server(p)
s.BindHandler("/:name", func(r *ghttp.Request) {
r.Response.Write("/:name")
})
s.BindHandler("/:name/update", func(r *ghttp.Request) {
r.Response.Write(r.Get("name"))
})
s.BindHandler("/:name/:action", func(r *ghttp.Request) {
r.Response.Write(r.Get("action"))
})
2019-06-19 09:06:52 +08:00
s.BindHandler("/:name/*any", func(r *ghttp.Request) {
r.Response.Write(r.Get("any"))
})
s.BindHandler("/user/list/{field}.html", func(r *ghttp.Request) {
r.Response.Write(r.Get("field"))
})
2019-06-19 09:06:52 +08:00
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +08:00
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
2019-06-19 09:06:52 +08:00
client := ghttp.NewClient()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
2020-03-19 22:56:12 +08:00
t.Assert(client.GetContent("/john"), "")
t.Assert(client.GetContent("/john/update"), "john")
t.Assert(client.GetContent("/john/edit"), "edit")
t.Assert(client.GetContent("/user/list/100.html"), "100")
2019-06-19 09:06:52 +08:00
})
}
func Test_Router_Basic2(t *testing.T) {
p, _ := ports.PopRand()
s := g.Server(p)
s.BindHandler("/{hash}", func(r *ghttp.Request) {
r.Response.Write(r.Get("hash"))
})
s.BindHandler("/{hash}.{type}", func(r *ghttp.Request) {
r.Response.Write(r.Get("type"))
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
client := ghttp.NewClient()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
t.Assert(client.GetContent("/data"), "data")
t.Assert(client.GetContent("/data.json"), "json")
})
}
2020-02-14 22:13:41 +08:00
// HTTP method register.
func Test_Router_Method(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2019-06-19 09:06:52 +08:00
s := g.Server(p)
s.BindHandler("GET:/get", func(r *ghttp.Request) {
})
s.BindHandler("POST:/post", func(r *ghttp.Request) {
})
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +08:00
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
2019-06-19 09:06:52 +08:00
client := ghttp.NewClient()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
resp1, err := client.Get("/get")
defer resp1.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp1.StatusCode, 200)
2019-06-19 09:06:52 +08:00
resp2, err := client.Post("/get")
defer resp2.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp2.StatusCode, 404)
2019-06-19 09:06:52 +08:00
resp3, err := client.Get("/post")
defer resp3.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp3.StatusCode, 404)
2019-06-19 09:06:52 +08:00
resp4, err := client.Post("/post")
defer resp4.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp4.StatusCode, 200)
2019-06-19 09:06:52 +08:00
})
}
2020-02-14 22:13:41 +08:00
// Extra char '/' of the router.
func Test_Router_ExtraChar(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2020-02-14 22:13:41 +08:00
s := g.Server(p)
s.Group("/api", func(group *ghttp.RouterGroup) {
group.GET("/test", func(r *ghttp.Request) {
r.Response.Write("test")
})
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
2020-02-14 22:13:41 +08:00
client := ghttp.NewClient()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
2020-03-19 22:56:12 +08:00
t.Assert(client.GetContent("/api/test"), "test")
t.Assert(client.GetContent("/api/test/"), "test")
t.Assert(client.GetContent("/api/test//"), "test")
t.Assert(client.GetContent("//api/test//"), "test")
t.Assert(client.GetContent("//api//test//"), "test")
t.Assert(client.GetContent("///api///test///"), "test")
2020-02-14 22:13:41 +08:00
})
}
// Custom status handler.
func Test_Router_Status(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2019-06-19 09:06:52 +08:00
s := g.Server(p)
s.BindHandler("/200", func(r *ghttp.Request) {
r.Response.WriteStatus(200)
})
s.BindHandler("/300", func(r *ghttp.Request) {
r.Response.WriteStatus(300)
})
s.BindHandler("/400", func(r *ghttp.Request) {
r.Response.WriteStatus(400)
})
s.BindHandler("/500", func(r *ghttp.Request) {
r.Response.WriteStatus(500)
})
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +08:00
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
2019-06-19 09:06:52 +08:00
client := ghttp.NewClient()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
resp1, err := client.Get("/200")
defer resp1.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp1.StatusCode, 200)
2019-06-19 09:06:52 +08:00
resp2, err := client.Get("/300")
defer resp2.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp2.StatusCode, 300)
2019-06-19 09:06:52 +08:00
resp3, err := client.Get("/400")
defer resp3.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp3.StatusCode, 400)
2019-06-19 09:06:52 +08:00
resp4, err := client.Get("/500")
defer resp4.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp4.StatusCode, 500)
resp5, err := client.Get("/404")
defer resp5.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp5.StatusCode, 404)
2019-06-19 09:06:52 +08:00
})
}
func Test_Router_CustomStatusHandler(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2019-06-19 09:06:52 +08:00
s := g.Server(p)
s.BindHandler("/", func(r *ghttp.Request) {
r.Response.Write("hello")
})
s.BindStatusHandler(404, func(r *ghttp.Request) {
r.Response.Write("404 page")
})
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +08:00
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
2019-06-19 09:06:52 +08:00
client := ghttp.NewClient()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
2020-03-19 22:56:12 +08:00
t.Assert(client.GetContent("/"), "hello")
2019-06-19 09:06:52 +08:00
resp, err := client.Get("/ThisDoesNotExist")
defer resp.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp.StatusCode, 404)
t.Assert(resp.ReadAllString(), "404 page")
2019-06-19 09:06:52 +08:00
})
}
2020-02-14 22:13:41 +08:00
// 404 not found router.
func Test_Router_404(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
2019-06-19 09:06:52 +08:00
s := g.Server(p)
s.BindHandler("/", func(r *ghttp.Request) {
r.Response.Write("hello")
})
s.SetPort(p)
s.SetDumpRouterMap(false)
2019-06-19 09:06:52 +08:00
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
2019-06-19 09:06:52 +08:00
client := ghttp.NewClient()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
2020-03-19 22:56:12 +08:00
t.Assert(client.GetContent("/"), "hello")
2019-06-19 09:06:52 +08:00
resp, err := client.Get("/ThisDoesNotExist")
defer resp.Close()
2020-03-19 22:56:12 +08:00
t.Assert(err, nil)
t.Assert(resp.StatusCode, 404)
2019-06-19 09:06:52 +08:00
})
}
func Test_Router_Priority(t *testing.T) {
2020-03-30 20:47:50 +08:00
p, _ := ports.PopRand()
s := g.Server(p)
s.BindHandler("/admin", func(r *ghttp.Request) {
r.Response.Write("admin")
})
s.BindHandler("/admin-{page}", func(r *ghttp.Request) {
r.Response.Write("admin-{page}")
})
s.BindHandler("/admin-goods", func(r *ghttp.Request) {
r.Response.Write("admin-goods")
})
s.BindHandler("/admin-goods-{page}", func(r *ghttp.Request) {
r.Response.Write("admin-goods-{page}")
})
s.SetPort(p)
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
2020-03-19 22:56:12 +08:00
gtest.C(t, func(t *gtest.T) {
client := ghttp.NewClient()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
2020-03-19 22:56:12 +08:00
t.Assert(client.GetContent("/admin"), "admin")
t.Assert(client.GetContent("/admin-1"), "admin-{page}")
t.Assert(client.GetContent("/admin-goods"), "admin-goods")
t.Assert(client.GetContent("/admin-goods-2"), "admin-goods-{page}")
})
}