Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
eaffabf3
Commit
eaffabf3
authored
Aug 21, 2013
by
fanngyuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add client
parent
0b74db64
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
0 deletions
+47
-0
client.go
testing/client.go
+47
-0
No files found.
testing/client.go
0 → 100644
View file @
eaffabf3
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
)}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment