2016-12-17 03:39:53 +00:00
|
|
|
package main
|
2016-12-23 12:35:22 +00:00
|
|
|
//import "fmt"
|
|
|
|
import "log"
|
|
|
|
import "bytes"
|
2016-12-24 13:14:40 +00:00
|
|
|
import "math/rand"
|
2016-12-17 03:39:53 +00:00
|
|
|
import "testing"
|
2016-12-23 12:35:22 +00:00
|
|
|
import "net/http"
|
|
|
|
import "net/http/httptest"
|
2016-12-17 03:39:53 +00:00
|
|
|
import "io/ioutil"
|
|
|
|
import "html/template"
|
|
|
|
|
2016-12-23 12:35:22 +00:00
|
|
|
func BenchmarkTopicTemplate(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
|
|
|
|
user := User{0,"Bob","bob@localhost",0,false,false,false,false,false,false,GuestPerms,"",false,"","","","",""}
|
|
|
|
admin := User{1,"Admin","admin@localhost",0,true,true,true,true,true,false,AllPerms,"",false,"","","","",""}
|
2016-12-17 03:39:53 +00:00
|
|
|
var noticeList map[int]string = make(map[int]string)
|
|
|
|
noticeList[0] = "test"
|
|
|
|
|
|
|
|
topic := TopicUser{0,"Lol",template.HTML("Hey everyone!"),0,false,false,"",0,"","","",no_css_tmpl,0,"","","",""}
|
2016-12-18 12:56:06 +00:00
|
|
|
|
2016-12-23 12:35:22 +00:00
|
|
|
var replyList []Reply
|
2016-12-21 02:30:32 +00:00
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
|
|
|
replyList = append(replyList, Reply{0,0,"Hey everyone!",template.HTML("Hey everyone!"),0,"","",0,0,"",no_css_tmpl,0,"","","",""})
|
2016-12-18 12:56:06 +00:00
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
tpage := TopicPage{"Topic Blah",user,noticeList,replyList,topic,false}
|
|
|
|
tpage2 := TopicPage{"Topic Blah",admin,noticeList,replyList,topic,false}
|
2016-12-23 12:35:22 +00:00
|
|
|
w := ioutil.Discard
|
2016-12-21 02:30:32 +00:00
|
|
|
|
2016-12-23 12:35:22 +00:00
|
|
|
b.Run("compiled_useradmin", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
template_topic(tpage2,w)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("interpreted_useradmin", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
templates.ExecuteTemplate(w,"topic.html", tpage2)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("compiled_userguest", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
template_topic(tpage,w)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("interpreted_userguest", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
templates.ExecuteTemplate(w,"topic.html", tpage)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkTopicsTemplate(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
|
|
|
|
user := User{0,"Bob","bob@localhost",0,false,false,false,false,false,false,GuestPerms,"",false,"","","","",""}
|
|
|
|
admin := User{1,"Admin","admin@localhost",0,true,true,true,true,true,false,AllPerms,"",false,"","","","",""}
|
|
|
|
var noticeList map[int]string = make(map[int]string)
|
|
|
|
noticeList[0] = "test"
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
var topicList []TopicUser
|
2016-12-23 12:35:22 +00:00
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
topicList = append(topicList, TopicUser{0,"Hey everyone!",template.HTML("Hey everyone!"),0,false,false,"0000-00-00 00:00:00",1,"open","Admin","",no_css_tmpl,0,"Admin","","",""})
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
tpage := TopicsPage{"Topic Blah",user,noticeList,topicList,0}
|
|
|
|
tpage2 := TopicsPage{"Topic Blah",admin,noticeList,topicList,0}
|
2016-12-17 03:39:53 +00:00
|
|
|
w := ioutil.Discard
|
|
|
|
|
2016-12-21 02:30:32 +00:00
|
|
|
b.Run("compiled_useradmin", func(b *testing.B) {
|
2016-12-17 03:39:53 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-12-23 12:35:22 +00:00
|
|
|
template_topics(tpage2,w)
|
2016-12-17 03:39:53 +00:00
|
|
|
}
|
|
|
|
})
|
2016-12-23 12:35:22 +00:00
|
|
|
b.Run("interpreted_useradmin", func(b *testing.B) {
|
2016-12-17 03:39:53 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-12-23 12:35:22 +00:00
|
|
|
templates.ExecuteTemplate(w,"topics.html", tpage2)
|
2016-12-17 03:39:53 +00:00
|
|
|
}
|
2016-12-23 12:35:22 +00:00
|
|
|
})
|
2016-12-21 02:30:32 +00:00
|
|
|
b.Run("compiled_userguest", func(b *testing.B) {
|
2016-12-17 03:39:53 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-12-23 12:35:22 +00:00
|
|
|
template_topics(tpage,w)
|
2016-12-17 03:39:53 +00:00
|
|
|
}
|
|
|
|
})
|
2016-12-23 12:35:22 +00:00
|
|
|
b.Run("interpreted_userguest", func(b *testing.B) {
|
2016-12-21 02:30:32 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-12-23 12:35:22 +00:00
|
|
|
templates.ExecuteTemplate(w,"topics.html", tpage)
|
2016-12-21 02:30:32 +00:00
|
|
|
}
|
2016-12-23 12:35:22 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkRoute(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
2016-12-21 02:30:32 +00:00
|
|
|
|
2016-12-23 12:35:22 +00:00
|
|
|
admin_uid_cookie := http.Cookie{Name: "uid",Value: "1",Path: "/",MaxAge: year}
|
|
|
|
// TO-DO: Stop hard-coding this value
|
|
|
|
admin_session_cookie := http.Cookie{Name: "session",Value: "TKBh5Z-qEQhWDBnV6_XVmOhKAowMYPhHeRlrQjjbNc0QRrRiglvWOYFDc1AaMXQIywvEsyA2AOBRYUrZ5kvnGhThY1GhOW6FSJADnRWm_bI=",Path: "/",MaxAge: year}
|
2016-12-18 12:56:06 +00:00
|
|
|
|
2016-12-23 12:35:22 +00:00
|
|
|
topic_w := httptest.NewRecorder()
|
|
|
|
topic_req := httptest.NewRequest("get","/topic/1",bytes.NewReader(nil))
|
|
|
|
topic_req_admin := topic_req
|
|
|
|
topic_req_admin.AddCookie(&admin_uid_cookie)
|
|
|
|
topic_req_admin.AddCookie(&admin_session_cookie)
|
|
|
|
topic_handler := http.HandlerFunc(route_topic_id)
|
|
|
|
|
|
|
|
topics_w := httptest.NewRecorder()
|
|
|
|
topics_req := httptest.NewRequest("get","/topics/",bytes.NewReader(nil))
|
|
|
|
topics_req_admin := topics_req
|
|
|
|
topics_req_admin.AddCookie(&admin_uid_cookie)
|
|
|
|
topics_req_admin.AddCookie(&admin_session_cookie)
|
|
|
|
topics_handler := http.HandlerFunc(route_topics)
|
|
|
|
|
|
|
|
forum_w := httptest.NewRecorder()
|
|
|
|
forum_req := httptest.NewRequest("get","/forum/1",bytes.NewReader(nil))
|
|
|
|
forum_req_admin := forum_req
|
|
|
|
forum_req_admin.AddCookie(&admin_uid_cookie)
|
|
|
|
forum_req_admin.AddCookie(&admin_session_cookie)
|
|
|
|
forum_handler := http.HandlerFunc(route_forum)
|
|
|
|
|
|
|
|
forums_w := httptest.NewRecorder()
|
|
|
|
forums_req := httptest.NewRequest("get","/forums/",bytes.NewReader(nil))
|
|
|
|
forums_req_admin := forums_req
|
|
|
|
forums_req_admin.AddCookie(&admin_uid_cookie)
|
|
|
|
forums_req_admin.AddCookie(&admin_session_cookie)
|
|
|
|
forums_handler := http.HandlerFunc(route_forums)
|
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
static_w := httptest.NewRecorder()
|
|
|
|
static_req := httptest.NewRequest("get","/static/global.js",bytes.NewReader(nil))
|
|
|
|
static_handler := http.HandlerFunc(route_static)
|
|
|
|
|
2016-12-23 12:35:22 +00:00
|
|
|
debug = false
|
|
|
|
nogrouplog = true
|
|
|
|
|
|
|
|
// init_database is a little noisy for a benchmark
|
|
|
|
discard := ioutil.Discard
|
|
|
|
log.SetOutput(discard)
|
|
|
|
|
|
|
|
var err error
|
2017-01-01 15:45:43 +00:00
|
|
|
init_database(err)
|
2016-12-23 12:35:22 +00:00
|
|
|
external_sites["YT"] = "https://www.youtube.com/"
|
|
|
|
hooks["trow_assign"] = nil
|
|
|
|
hooks["rrow_assign"] = nil
|
2017-01-01 15:45:43 +00:00
|
|
|
init_plugins()
|
2016-12-23 12:35:22 +00:00
|
|
|
|
2017-01-01 15:45:43 +00:00
|
|
|
b.Run("static_files", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
static_w.Body.Reset()
|
|
|
|
static_handler.ServeHTTP(static_w,static_req)
|
2016-12-23 12:35:22 +00:00
|
|
|
}
|
2017-01-01 15:45:43 +00:00
|
|
|
})
|
2016-12-23 12:35:22 +00:00
|
|
|
|
|
|
|
b.Run("topic_admin", func(b *testing.B) {
|
2016-12-17 03:39:53 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-12-23 12:35:22 +00:00
|
|
|
//topic_w.Code = 200
|
|
|
|
topic_w.Body.Reset()
|
|
|
|
topic_handler.ServeHTTP(topic_w,topic_req_admin)
|
|
|
|
//if topic_w.Code != 200 {
|
|
|
|
// fmt.Println(topic_w.Body)
|
|
|
|
// panic("HTTP Error!")
|
|
|
|
//}
|
2016-12-17 03:39:53 +00:00
|
|
|
}
|
|
|
|
})
|
2016-12-23 12:35:22 +00:00
|
|
|
b.Run("topic_guest", func(b *testing.B) {
|
2016-12-17 03:39:53 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-12-23 12:35:22 +00:00
|
|
|
//topic_w.Code = 200
|
|
|
|
topic_w.Body.Reset()
|
|
|
|
topic_handler.ServeHTTP(topic_w,topic_req)
|
2016-12-17 03:39:53 +00:00
|
|
|
}
|
|
|
|
})
|
2016-12-23 12:35:22 +00:00
|
|
|
b.Run("topics_admin", func(b *testing.B) {
|
2016-12-17 03:39:53 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-12-23 12:35:22 +00:00
|
|
|
//topics_w.Code = 200
|
|
|
|
topics_w.Body.Reset()
|
|
|
|
topics_handler.ServeHTTP(topics_w,topics_req_admin)
|
2016-12-21 02:30:32 +00:00
|
|
|
}
|
|
|
|
})
|
2016-12-23 12:35:22 +00:00
|
|
|
b.Run("topics_guest", func(b *testing.B) {
|
2016-12-21 02:30:32 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-12-23 12:35:22 +00:00
|
|
|
//topics_w.Code = 200
|
|
|
|
topics_w.Body.Reset()
|
|
|
|
topics_handler.ServeHTTP(topics_w,topics_req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("forum_admin", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
//forum_w.Code = 200
|
|
|
|
forum_w.Body.Reset()
|
|
|
|
forum_handler.ServeHTTP(forum_w,forum_req_admin)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("forum_guest", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
//forum_w.Code = 200
|
|
|
|
forum_w.Body.Reset()
|
|
|
|
forum_handler.ServeHTTP(forum_w,forum_req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("forums_admin", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
//forums_w.Code = 200
|
|
|
|
forums_w.Body.Reset()
|
|
|
|
forums_handler.ServeHTTP(forums_w,forums_req_admin)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("forums_guest", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
//forums_w.Code = 200
|
|
|
|
forums_w.Body.Reset()
|
|
|
|
forums_handler.ServeHTTP(forums_w,forums_req)
|
|
|
|
}
|
|
|
|
})
|
2016-12-24 13:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func addEmptyRoutesToMux(routes []string, serveMux *http.ServeMux) {
|
|
|
|
for _, route := range routes {
|
|
|
|
serveMux.HandleFunc(route, func(_ http.ResponseWriter,_ *http.Request){})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkRouter(b *testing.B) {
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
req := httptest.NewRequest("get","/topics/",bytes.NewReader(nil))
|
|
|
|
routes := make([]string, 0)
|
2016-12-23 12:35:22 +00:00
|
|
|
|
2016-12-24 13:14:40 +00:00
|
|
|
routes = append(routes,"/test/")
|
2016-12-23 12:35:22 +00:00
|
|
|
serveMux := http.NewServeMux()
|
2016-12-24 13:14:40 +00:00
|
|
|
serveMux.HandleFunc("/test/", func(_ http.ResponseWriter,_ *http.Request){})
|
|
|
|
b.Run("one-route", func(b *testing.B) {
|
2016-12-23 12:35:22 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2016-12-24 13:14:40 +00:00
|
|
|
req = httptest.NewRequest("get",routes[rand.Intn(len(routes))],bytes.NewReader(nil))
|
|
|
|
serveMux.ServeHTTP(w,req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
routes = append(routes,"/topic/")
|
|
|
|
routes = append(routes,"/forums/")
|
|
|
|
routes = append(routes,"/forum/")
|
|
|
|
routes = append(routes,"/panel/")
|
|
|
|
serveMux = http.NewServeMux()
|
|
|
|
addEmptyRoutesToMux(routes, serveMux)
|
|
|
|
b.Run("five-routes", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
req = httptest.NewRequest("get",routes[rand.Intn(len(routes))],bytes.NewReader(nil))
|
|
|
|
serveMux.ServeHTTP(w,req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
serveMux = http.NewServeMux()
|
|
|
|
routes = append(routes,"/panel/plugins/")
|
|
|
|
routes = append(routes,"/panel/groups/")
|
|
|
|
routes = append(routes,"/panel/settings/")
|
|
|
|
routes = append(routes,"/panel/users/")
|
|
|
|
routes = append(routes,"/panel/forums/")
|
|
|
|
addEmptyRoutesToMux(routes, serveMux)
|
|
|
|
b.Run("ten-routes", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
req = httptest.NewRequest("get",routes[rand.Intn(len(routes))],bytes.NewReader(nil))
|
|
|
|
serveMux.ServeHTTP(w,req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
serveMux = http.NewServeMux()
|
|
|
|
routes = append(routes,"/panel/forums/create/submit/")
|
|
|
|
routes = append(routes,"/panel/forums/delete/")
|
|
|
|
routes = append(routes,"/users/ban/")
|
|
|
|
routes = append(routes,"/panel/users/edit/")
|
|
|
|
routes = append(routes,"/panel/forums/create/")
|
|
|
|
routes = append(routes,"/users/unban/")
|
|
|
|
routes = append(routes,"/pages/")
|
|
|
|
routes = append(routes,"/users/activate/")
|
|
|
|
routes = append(routes,"/panel/forums/edit/submit/")
|
|
|
|
routes = append(routes,"/panel/plugins/activate/")
|
|
|
|
addEmptyRoutesToMux(routes, serveMux)
|
|
|
|
b.Run("twenty-routes", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
req = httptest.NewRequest("get",routes[rand.Intn(len(routes))],bytes.NewReader(nil))
|
|
|
|
serveMux.ServeHTTP(w,req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
serveMux = http.NewServeMux()
|
|
|
|
routes = append(routes,"/panel/plugins/deactivate/")
|
|
|
|
routes = append(routes,"/panel/plugins/install/")
|
|
|
|
routes = append(routes,"/panel/plugins/uninstall/")
|
|
|
|
routes = append(routes,"/panel/templates/")
|
|
|
|
routes = append(routes,"/panel/templates/edit/")
|
|
|
|
routes = append(routes,"/panel/templates/create/")
|
|
|
|
routes = append(routes,"/panel/templates/delete/")
|
|
|
|
routes = append(routes,"/panel/templates/edit/submit/")
|
|
|
|
routes = append(routes,"/panel/themes/")
|
|
|
|
routes = append(routes,"/panel/themes/edit/")
|
|
|
|
addEmptyRoutesToMux(routes, serveMux)
|
|
|
|
b.Run("thirty-routes", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
req = httptest.NewRequest("get",routes[rand.Intn(len(routes))],bytes.NewReader(nil))
|
|
|
|
serveMux.ServeHTTP(w,req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
serveMux = http.NewServeMux()
|
|
|
|
routes = append(routes,"/panel/themes/create/")
|
|
|
|
routes = append(routes,"/panel/themes/delete/")
|
|
|
|
routes = append(routes,"/panel/themes/delete/submit/")
|
|
|
|
routes = append(routes,"/panel/templates/create/submit/")
|
|
|
|
routes = append(routes,"/panel/templates/delete/submit/")
|
|
|
|
routes = append(routes,"/panel/widgets/")
|
|
|
|
routes = append(routes,"/panel/widgets/edit/")
|
|
|
|
routes = append(routes,"/panel/widgets/activate/")
|
|
|
|
routes = append(routes,"/panel/widgets/deactivate/")
|
|
|
|
routes = append(routes,"/panel/magical/wombat/path")
|
|
|
|
addEmptyRoutesToMux(routes, serveMux)
|
|
|
|
b.Run("forty-routes", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
req = httptest.NewRequest("get",routes[rand.Intn(len(routes))],bytes.NewReader(nil))
|
|
|
|
serveMux.ServeHTTP(w,req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
serveMux = http.NewServeMux()
|
|
|
|
routes = append(routes,"/report/")
|
|
|
|
routes = append(routes,"/report/submit/")
|
|
|
|
routes = append(routes,"/topic/create/submit/")
|
|
|
|
routes = append(routes,"/topics/create/")
|
|
|
|
routes = append(routes,"/overview/")
|
|
|
|
routes = append(routes,"/uploads/")
|
|
|
|
routes = append(routes,"/static/")
|
|
|
|
routes = append(routes,"/reply/edit/submit/")
|
|
|
|
routes = append(routes,"/reply/delete/submit/")
|
|
|
|
routes = append(routes,"/topic/edit/submit/")
|
|
|
|
addEmptyRoutesToMux(routes, serveMux)
|
|
|
|
b.Run("fifty-routes", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
req = httptest.NewRequest("get",routes[rand.Intn(len(routes))],bytes.NewReader(nil))
|
|
|
|
serveMux.ServeHTTP(w,req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
serveMux = http.NewServeMux()
|
|
|
|
routes = append(routes,"/topic/delete/submit/")
|
|
|
|
routes = append(routes,"/topic/stick/submit/")
|
|
|
|
routes = append(routes,"/topic/unstick/submit/")
|
|
|
|
routes = append(routes,"/accounts/login/")
|
|
|
|
routes = append(routes,"/accounts/create/")
|
|
|
|
routes = append(routes,"/accounts/logout/")
|
|
|
|
routes = append(routes,"/accounts/login/submit/")
|
|
|
|
routes = append(routes,"/accounts/create/submit/")
|
|
|
|
routes = append(routes,"/user/edit/critical/")
|
|
|
|
routes = append(routes,"/user/edit/critical/submit/")
|
|
|
|
addEmptyRoutesToMux(routes, serveMux)
|
|
|
|
b.Run("sixty-routes", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
req = httptest.NewRequest("get",routes[rand.Intn(len(routes))],bytes.NewReader(nil))
|
|
|
|
serveMux.ServeHTTP(w,req)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
serveMux = http.NewServeMux()
|
|
|
|
routes = append(routes,"/user/edit/avatar/")
|
|
|
|
routes = append(routes,"/user/edit/avatar/submit/")
|
|
|
|
routes = append(routes,"/user/edit/username/")
|
|
|
|
routes = append(routes,"/user/edit/username/submit/")
|
|
|
|
routes = append(routes,"/profile/reply/create/")
|
|
|
|
routes = append(routes,"/profile/reply/edit/submit/")
|
|
|
|
routes = append(routes,"/profile/reply/delete/submit/")
|
|
|
|
routes = append(routes,"/arcane/tower/")
|
|
|
|
routes = append(routes,"/magical/kingdom/")
|
|
|
|
routes = append(routes,"/insert/name/here/")
|
|
|
|
addEmptyRoutesToMux(routes, serveMux)
|
|
|
|
b.Run("seventy-routes", func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
req = httptest.NewRequest("get",routes[rand.Intn(len(routes))],bytes.NewReader(nil))
|
|
|
|
serveMux.ServeHTTP(w,req)
|
2016-12-17 03:39:53 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2016-12-23 12:35:22 +00:00
|
|
|
|
2016-12-24 13:14:40 +00:00
|
|
|
/*func TestRoute(t *testing.T) {
|
2016-12-23 12:35:22 +00:00
|
|
|
}*/
|