1 Star 0 Fork 0

naturalCloud/go-speed

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server_test.go 1.80 KB
一键复制 编辑 原始数据 按行查看 历史
naturalCloud 提交于 2023-06-28 12:12 . static router match test
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)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/naturalcloud/go-web.git
git@gitee.com:naturalcloud/go-web.git
naturalcloud
go-web
go-speed
master

搜索帮助