Skip to content

Commit 0f08f39

Browse files
committed
update: serve log
1 parent 49a6c10 commit 0f08f39

File tree

5 files changed

+71
-11
lines changed

5 files changed

+71
-11
lines changed

options.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ type Option func(*Options)
4949
func newOptions(opts []Option, extends ...Option) Options {
5050
opt := Options{
5151
URL: "http://127.0.0.1:80",
52-
Method: "GET",
5352
RawQuery: make(url.Values),
5453
Header: make(http.Header),
5554
Timeout: 30 * time.Second,
@@ -268,7 +267,9 @@ func Proxy(addr string) Option {
268267
// Setup is used for client middleware
269268
func Setup(fn ...func(tripper http.RoundTripper) http.RoundTripper) Option {
270269
return func(o *Options) {
271-
o.HttpRoundTripper = append(o.HttpRoundTripper, fn...)
270+
for _, f := range fn {
271+
o.HttpRoundTripper = append([]func(http.RoundTripper) http.RoundTripper{f}, o.HttpRoundTripper...)
272+
}
272273
}
273274
}
274275

@@ -288,11 +289,12 @@ func RoundTripper(tr http.RoundTripper) Option {
288289
}
289290
}
290291

291-
// Logf must be used as a first option.
292+
// Logf xxx
292293
func Logf(f func(context.Context, *Stat)) Option {
293294
return func(o *Options) {
294295
o.HttpRoundTripper = append([]func(http.RoundTripper) http.RoundTripper{printRoundTripper(f)}, o.HttpRoundTripper...)
295-
o.HttpHandler = append(o.HttpHandler, printHandler(f))
296+
o.HttpHandler = append([]func(http.Handler) http.Handler{printHandler(f)}, o.HttpHandler...)
297+
296298
}
297299
}
298300

server.go

+5
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,11 @@ func (mux *ServeMux) Use(fn ...func(http.Handler) http.Handler) {
153153
func (mux *ServeMux) ServeHTTP(w http.ResponseWriter, r *http.Request) {
154154
current := mux.root.Find(strings.TrimLeft(r.URL.Path, "/"))
155155
handler, options := current.handler, newOptions(mux.opts, current.opts...)
156+
157+
if options.Method != "" && r.Method != options.Method {
158+
handler = ErrHandler(http.StatusText(http.StatusMethodNotAllowed), http.StatusMethodNotAllowed)
159+
}
160+
156161
for _, h := range options.HttpHandler {
157162
handler = h(handler)
158163
}

session.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,8 @@ func (s *Session) RoundTripper(opts ...Option) http.RoundTripper {
8686
if options.Transport == nil {
8787
options.Transport = RoundTripperFunc(s.client.Do)
8888
}
89-
// Apply middleware in reverse order
90-
for i := len(options.HttpRoundTripper) - 1; i >= 0; i-- {
91-
options.Transport = options.HttpRoundTripper[i](options.Transport)
89+
for _, tr := range options.HttpRoundTripper {
90+
options.Transport = tr(options.Transport)
9291
}
9392
return options.Transport.RoundTrip(r)
9493
})

use_test.go

+57-3
Original file line numberDiff line numberDiff line change
@@ -229,13 +229,32 @@ func TestPrintHandler(t *testing.T) {
229229
}
230230
}
231231

232+
func requestIdMiddle() func(next http.Handler) http.Handler {
233+
return func(next http.Handler) http.Handler {
234+
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
235+
// 从请求头中获取 request-id
236+
requestId := GenId(r.Header.Get("request-id"))
237+
// 将 request-id 添加到响应头
238+
r.Header.Set("request-id", requestId)
239+
w.Header().Set("request-id", requestId)
240+
// 调用下一个处理器
241+
// 定义请求ID的上下文键类型
242+
type requestIDKey struct{}
243+
244+
// 使用自定义类型作为上下文键
245+
r2 := r.WithContext(context.WithValue(r.Context(), requestIDKey{}, requestId))
246+
next.ServeHTTP(w, r2)
247+
})
248+
}
249+
}
250+
232251
func Test_SSE(t *testing.T) {
233252
ctx, cancel := context.WithCancel(context.Background())
234-
r := NewServeMux(Logf(LogS))
253+
r := NewServeMux(Logf(LogS), Use(requestIdMiddle()))
235254
r.Route("/123", func(w http.ResponseWriter, r *http.Request) {
236255
w.WriteHeader(200)
237256
w.Write([]byte("hello world"))
238-
})
257+
}, Method("PUT"))
239258
r.Route("/sse", func(w http.ResponseWriter, r *http.Request) {
240259

241260
for i := 0; i < 3; i++ {
@@ -246,7 +265,7 @@ func Test_SSE(t *testing.T) {
246265
w.Write([]byte(fmt.Sprintf(`{"a":"12345\n", "b": %d}`, i)))
247266
}
248267
}
249-
}, Use(SSE()))
268+
}, Use(SSE()), Method("DELETE"))
250269
s := NewServer(ctx, r, URL("http://0.0.0.0:1234"))
251270
go s.ListenAndServe()
252271
time.Sleep(1 * time.Second)
@@ -282,3 +301,38 @@ func SSERound(i int64, b []byte, f func([]byte) error) error {
282301
return nil
283302
}
284303
}
304+
305+
func Test_UseStep(t *testing.T) {
306+
var ss []string
307+
var use = func(stage, step string) func(next http.Handler) http.Handler {
308+
return func(next http.Handler) http.Handler {
309+
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
310+
ss = append(ss, fmt.Sprintf("%s-%s-start", stage, step))
311+
t.Logf("use: %s-%s-start", stage, step)
312+
next.ServeHTTP(w, r)
313+
ss = append(ss, fmt.Sprintf("%s-%s-end", stage, step))
314+
t.Logf("use: %s-%s-end", stage, step)
315+
})
316+
}
317+
}
318+
319+
mux := NewServeMux(
320+
Use(requestIdMiddle()),
321+
Logf(func(ctx context.Context, stat *Stat) {
322+
t.Logf("mux: Logf: %v", ctx.Value("request-id"))
323+
}),
324+
Use(use("mux", "1")),
325+
Use(use("mux", "2")),
326+
Use(use("mux", "3")),
327+
)
328+
ctx, cancel := context.WithCancel(context.Background())
329+
defer cancel()
330+
mux.Route("/", func(w http.ResponseWriter, r *http.Request) {
331+
w.Write([]byte("hello world"))
332+
}, Use(use("route", "1"), use("route", "2"), use("route", "3")))
333+
server := NewServer(ctx, mux, URL("http://0.0.0.0:9090"), Use(use("server", "1"), use("server", "2"), use("server", "3")))
334+
go server.ListenAndServe()
335+
336+
Get("http://127.0.0.1:9090/")
337+
time.Sleep(1 * time.Second)
338+
}

util.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func CopyBody(b io.ReadCloser) (*bytes.Buffer, io.ReadCloser, error) {
3737
}
3838

3939
// LogS supply default handle Stat, print to stdout.
40-
func LogS(_ context.Context, stat *Stat) {
40+
func LogS(ctx context.Context, stat *Stat) {
4141
if stat.Response.URL == "" {
4242
_, _ = fmt.Printf("%s\n", stat)
4343
return

0 commit comments

Comments
 (0)