mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 09:10:55 +00:00
add client
This commit is contained in:
parent
0b74db64eb
commit
eaffabf388
47
testing/client.go
Normal file
47
testing/client.go
Normal file
@ -0,0 +1,47 @@
|
||||
package testing
|
||||
|
||||
import (
|
||||
"github.com/fanngyuan/beego"
|
||||
"github.com/fanngyuan/beego/httplib"
|
||||
// "strings"
|
||||
// "fmt"
|
||||
)
|
||||
|
||||
var port = ""
|
||||
var baseUrl = "http://localhost:"
|
||||
|
||||
type TestHttpRequest struct{
|
||||
httplib.BeegoHttpRequest
|
||||
}
|
||||
|
||||
func getPort() string{
|
||||
if port==""{
|
||||
config,err:= beego.LoadConfig("../conf/app.conf")
|
||||
if err!=nil{
|
||||
return "8080"
|
||||
}
|
||||
port=config.String("httpport")
|
||||
return port
|
||||
}
|
||||
return port
|
||||
}
|
||||
|
||||
func Get(path string) *TestHttpRequest {
|
||||
return &TestHttpRequest{*httplib.Get(baseUrl+getPort()+path)}
|
||||
}
|
||||
|
||||
func Post(path string) *TestHttpRequest {
|
||||
return &TestHttpRequest{*httplib.Post(baseUrl+getPort()+path)}
|
||||
}
|
||||
|
||||
func Put(path string) *TestHttpRequest {
|
||||
return &TestHttpRequest{*httplib.Put(baseUrl+getPort()+path)}
|
||||
}
|
||||
|
||||
func Delete(path string) *TestHttpRequest {
|
||||
return &TestHttpRequest{*httplib.Delete(baseUrl+getPort()+path)}
|
||||
}
|
||||
|
||||
func Head(path string) *TestHttpRequest {
|
||||
return &TestHttpRequest{*httplib.Head(baseUrl+getPort()+path)}
|
||||
}
|
Loading…
Reference in New Issue
Block a user