Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
dbf6ca2b
authored
2013-11-06 16:12:10 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix #277
1 parent
bca6a333
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
testing/client.go
testing/client.go
View file @
dbf6ca2
...
...
@@ -8,38 +8,38 @@ import (
var
port
=
""
var
baseUrl
=
"http://localhost:"
type
TestHttpRequest
struct
{
type
TestHttpRequest
struct
{
httplib
.
BeegoHttpRequest
}
func
getPort
()
string
{
if
port
==
""
{
config
,
err
:=
beego
.
Load
Config
(
"../conf/app.conf"
)
if
err
!=
nil
{
func
getPort
()
string
{
if
port
==
""
{
config
,
err
:=
beego
.
Parse
Config
(
"../conf/app.conf"
)
if
err
!=
nil
{
return
"8080"
}
port
=
config
.
String
(
"httpport"
)
port
=
config
.
String
(
"httpport"
)
return
port
}
return
port
}
func
Get
(
path
string
)
*
TestHttpRequest
{
return
&
TestHttpRequest
{
*
httplib
.
Get
(
baseUrl
+
getPort
()
+
path
)}
return
&
TestHttpRequest
{
*
httplib
.
Get
(
baseUrl
+
getPort
()
+
path
)}
}
func
Post
(
path
string
)
*
TestHttpRequest
{
return
&
TestHttpRequest
{
*
httplib
.
Post
(
baseUrl
+
getPort
()
+
path
)}
return
&
TestHttpRequest
{
*
httplib
.
Post
(
baseUrl
+
getPort
()
+
path
)}
}
func
Put
(
path
string
)
*
TestHttpRequest
{
return
&
TestHttpRequest
{
*
httplib
.
Put
(
baseUrl
+
getPort
()
+
path
)}
return
&
TestHttpRequest
{
*
httplib
.
Put
(
baseUrl
+
getPort
()
+
path
)}
}
func
Delete
(
path
string
)
*
TestHttpRequest
{
return
&
TestHttpRequest
{
*
httplib
.
Delete
(
baseUrl
+
getPort
()
+
path
)}
return
&
TestHttpRequest
{
*
httplib
.
Delete
(
baseUrl
+
getPort
()
+
path
)}
}
func
Head
(
path
string
)
*
TestHttpRequest
{
return
&
TestHttpRequest
{
*
httplib
.
Head
(
baseUrl
+
getPort
()
+
path
)}
return
&
TestHttpRequest
{
*
httplib
.
Head
(
baseUrl
+
getPort
()
+
path
)}
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment