2021-01-17 21:46:25 +08:00
|
|
|
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
2020-05-05 00:01:09 +08:00
|
|
|
//
|
|
|
|
// 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"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2021-10-11 21:41:56 +08:00
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
"github.com/gogf/gf/v2/net/ghttp"
|
|
|
|
"github.com/gogf/gf/v2/test/gtest"
|
2022-02-22 14:12:09 +08:00
|
|
|
"github.com/gogf/gf/v2/util/guid"
|
2020-05-05 00:01:09 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test_StatusHandler(t *testing.T) {
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
2022-02-22 14:12:09 +08:00
|
|
|
s := g.Server(guid.S())
|
2020-05-05 00:01:09 +08:00
|
|
|
s.BindStatusHandlerByMap(map[int]ghttp.HandlerFunc{
|
|
|
|
404: func(r *ghttp.Request) { r.Response.WriteOver("404") },
|
|
|
|
502: func(r *ghttp.Request) { r.Response.WriteOver("502") },
|
|
|
|
})
|
|
|
|
s.BindHandler("/502", func(r *ghttp.Request) {
|
|
|
|
r.Response.WriteStatusExit(502)
|
|
|
|
})
|
|
|
|
s.SetDumpRouterMap(false)
|
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
2020-11-25 16:37:41 +08:00
|
|
|
client := g.Client()
|
2022-02-22 14:12:09 +08:00
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
|
2020-05-05 00:01:09 +08:00
|
|
|
|
2021-09-30 14:06:46 +08:00
|
|
|
t.Assert(client.GetContent(ctx, "/404"), "404")
|
|
|
|
t.Assert(client.GetContent(ctx, "/502"), "502")
|
2020-05-05 00:01:09 +08:00
|
|
|
})
|
|
|
|
}
|
2020-11-25 16:37:41 +08:00
|
|
|
|
|
|
|
func Test_StatusHandler_Multi(t *testing.T) {
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
2022-02-22 14:12:09 +08:00
|
|
|
s := g.Server(guid.S())
|
2020-11-25 16:37:41 +08:00
|
|
|
s.BindStatusHandler(502, func(r *ghttp.Request) {
|
|
|
|
r.Response.WriteOver("1")
|
|
|
|
})
|
|
|
|
s.BindStatusHandler(502, func(r *ghttp.Request) {
|
|
|
|
r.Response.Write("2")
|
|
|
|
})
|
|
|
|
s.BindHandler("/502", func(r *ghttp.Request) {
|
|
|
|
r.Response.WriteStatusExit(502)
|
|
|
|
})
|
|
|
|
s.SetDumpRouterMap(false)
|
|
|
|
s.Start()
|
|
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
client := g.Client()
|
2022-02-22 14:12:09 +08:00
|
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort()))
|
2020-11-25 16:37:41 +08:00
|
|
|
|
2021-09-30 14:06:46 +08:00
|
|
|
t.Assert(client.GetContent(ctx, "/502"), "12")
|
2020-11-25 16:37:41 +08:00
|
|
|
})
|
|
|
|
}
|