代码拉取完成,页面将自动刷新
package go_speed
import (
"net/http"
"testing"
)
func TestHttpServer_AddRoute(t *testing.T) {
type args struct {
method string
path string
hf HandleFunc
}
tests := []struct {
name string
args args
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
s := &HttpServer{}
s.AddRoute(tt.args.method, tt.args.path, tt.args.hf)
})
}
}
func TestHttpServer_ListenAndServe(t *testing.T) {
tests := []struct {
name string
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
s := &HttpServer{}
s.ListenAndServe()
})
}
}
func TestHttpServer_ServeHTTP(t *testing.T) {
type args struct {
writer http.ResponseWriter
request *http.Request
}
tests := []struct {
name string
args args
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
s := &HttpServer{}
s.ServeHTTP(tt.args.writer, tt.args.request)
})
}
}
func TestHttpServer_Start(t *testing.T) {
type args struct {
addr string
}
tests := []struct {
name string
args args
wantErr bool
}{
// TODO: Add test cases.
{
name: "wwww",
args: args{
addr: ":8081",
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
s := &HttpServer{}
if err := s.Start(tt.args.addr); (err != nil) != tt.wantErr {
t.Errorf("Start() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestServer(t *testing.T) {
server := NewHttpServer()
server.Get("/index", func(context *Context) {
context.WriteString("hello word")
})
server.Post("/user/create", func(ctx *Context) {
ctx.WriteString("用户创建成功")
})
err := server.Start("8089")
if err != nil {
t.Fatalf("服务器启动失败! %s", err)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。