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
8b374d7f
authored
2014-05-20 18:20:44 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
beego: add benchmark
1 parent
fa323414
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
1 deletions
router_test.go
router_test.go
View file @
8b374d7
...
...
@@ -10,7 +10,6 @@ import (
"net/http"
"net/http/httptest"
"testing"
"github.com/astaxie/beego/context"
)
...
...
@@ -273,3 +272,46 @@ func TestRouterHandler(t *testing.T) {
t
.
Errorf
(
"TestRouterHandler can't run"
)
}
}
//
// Benchmarks NewApp:
//
func
beegoFilterFunc
(
ctx
*
context
.
Context
)
{
ctx
.
WriteString
(
"hello"
)
}
type
AdminController
struct
{
Controller
}
func
(
a
*
AdminController
)
Get
()
{
a
.
Ctx
.
WriteString
(
"hello"
)
}
func
BenchmarkFunc
(
b
*
testing
.
B
)
{
mux
:=
NewControllerRegistor
()
mux
.
Get
(
"/action"
,
beegoFilterFunc
)
rw
,
r
:=
testRequest
(
"GET"
,
"/action"
)
b
.
ResetTimer
()
for
i
:=
0
;
i
<
b
.
N
;
i
++
{
mux
.
ServeHTTP
(
rw
,
r
)
}
}
func
BenchmarkController
(
b
*
testing
.
B
)
{
mux
:=
NewControllerRegistor
()
mux
.
Add
(
"/action"
,
&
AdminController
{})
rw
,
r
:=
testRequest
(
"GET"
,
"/action"
)
b
.
ResetTimer
()
for
i
:=
0
;
i
<
b
.
N
;
i
++
{
mux
.
ServeHTTP
(
rw
,
r
)
}
}
func
testRequest
(
method
,
path
string
)
(
*
httptest
.
ResponseRecorder
,
*
http
.
Request
)
{
request
,
_
:=
http
.
NewRequest
(
method
,
path
,
nil
)
recorder
:=
httptest
.
NewRecorder
()
return
recorder
,
request
}
...
...
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