gf/net/ghttp/ghttp_unit_router_object_rest2_test.go

65 lines
1.6 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.
package ghttp_test
import (
"fmt"
"testing"
"time"
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/net/ghttp"
"github.com/gogf/gf/test/gtest"
)
type ObjectRest2 struct{}
func (o *ObjectRest2) Init(r *ghttp.Request) {
r.Response.Write("1")
}
func (o *ObjectRest2) Shut(r *ghttp.Request) {
r.Response.Write("2")
}
func (o *ObjectRest2) Get(r *ghttp.Request) {
r.Response.Write("Object Get", r.Get("id"))
}
func (o *ObjectRest2) Put(r *ghttp.Request) {
r.Response.Write("Object Put", r.Get("id"))
}
func (o *ObjectRest2) Post(r *ghttp.Request) {
r.Response.Write("Object Post", r.Get("id"))
}
func (o *ObjectRest2) Delete(r *ghttp.Request) {
r.Response.Write("Object Delete", r.Get("id"))
}
func Test_Router_ObjectRest_Id(t *testing.T) {
p := ports.PopRand()
s := g.Server(p)
s.BindObjectRest("/object/:id", new(ObjectRest2))
s.SetPort(p)
s.SetDumpRouteMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.Case(t, func() {
client := ghttp.NewClient()
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
gtest.Assert(client.GetContent("/object/99"), "1Object Get992")
gtest.Assert(client.PutContent("/object/99"), "1Object Put992")
gtest.Assert(client.PostContent("/object/99"), "1Object Post992")
gtest.Assert(client.DeleteContent("/object/99"), "1Object Delete992")
})
}