Ai
1 Star 1 Fork 0

amell/k6

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
server.go 2.42 KB
一键复制 编辑 原始数据 按行查看 历史
/*
*
* k6 - a next-generation load testing tool
* Copyright (C) 2016 Load Impact
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package api
import (
"fmt"
"net/http"
"github.com/sirupsen/logrus"
"github.com/urfave/negroni"
"github.com/loadimpact/k6/api/common"
v1 "github.com/loadimpact/k6/api/v1"
"github.com/loadimpact/k6/core"
)
func newHandler(logger logrus.FieldLogger) http.Handler {
mux := http.NewServeMux()
mux.Handle("/v1/", v1.NewHandler())
mux.Handle("/ping", handlePing(logger))
mux.Handle("/", handlePing(logger))
return mux
}
// ListenAndServe is analogous to the stdlib one but also takes a core.Engine and logrus.FieldLogger
func ListenAndServe(addr string, engine *core.Engine, logger logrus.FieldLogger) error {
mux := newHandler(logger)
n := negroni.New()
n.Use(negroni.NewRecovery())
n.UseFunc(withEngine(engine))
n.UseFunc(newLogger(logger))
n.UseHandler(mux)
return http.ListenAndServe(addr, n)
}
// newLogger returns the middleware which logs response status for request.
func newLogger(l logrus.FieldLogger) negroni.HandlerFunc {
return func(rw http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
next(rw, r)
res := rw.(negroni.ResponseWriter)
l.WithField("status", res.Status()).Debugf("%s %s", r.Method, r.URL.Path)
}
}
func withEngine(engine *core.Engine) negroni.HandlerFunc {
return negroni.HandlerFunc(func(rw http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
r = r.WithContext(common.WithEngine(r.Context(), engine))
next(rw, r)
})
}
func handlePing(logger logrus.FieldLogger) http.Handler {
return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
rw.Header().Add("Content-Type", "text/plain; charset=utf-8")
if _, err := fmt.Fprint(rw, "ok"); err != nil {
logger.WithError(err).Error("Error while printing ok")
}
})
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/amell/k6.git
git@gitee.com:amell/k6.git
amell
k6
k6
master

搜索帮助