liyujie
2025-08-28 d9927380ed7c8366f762049be9f3fee225860833
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
 
package pprof
 
import (
   "bytes"
   "io/ioutil"
   "net/http"
   "net/http/httptest"
   "runtime/pprof"
   "testing"
)
 
// TestDescriptions checks that the profile names under runtime/pprof package
// have a key in the description map.
func TestDescriptions(t *testing.T) {
   for _, p := range pprof.Profiles() {
       _, ok := profileDescriptions[p.Name()]
       if ok != true {
           t.Errorf("%s does not exist in profileDescriptions map\n", p.Name())
       }
   }
}
 
func TestHandlers(t *testing.T) {
   testCases := []struct {
       path               string
       handler            http.HandlerFunc
       statusCode         int
       contentType        string
       contentDisposition string
       resp               []byte
   }{
       {"/debug/pprof/<script>scripty<script>", Index, http.StatusNotFound, "text/plain; charset=utf-8", "", []byte("Unknown profile\n")},
       {"/debug/pprof/heap", Index, http.StatusOK, "application/octet-stream", `attachment; filename="heap"`, nil},
       {"/debug/pprof/heap?debug=1", Index, http.StatusOK, "text/plain; charset=utf-8", "", nil},
       {"/debug/pprof/cmdline", Cmdline, http.StatusOK, "text/plain; charset=utf-8", "", nil},
       {"/debug/pprof/profile?seconds=1", Profile, http.StatusOK, "application/octet-stream", `attachment; filename="profile"`, nil},
       {"/debug/pprof/symbol", Symbol, http.StatusOK, "text/plain; charset=utf-8", "", nil},
       {"/debug/pprof/trace", Trace, http.StatusOK, "application/octet-stream", `attachment; filename="trace"`, nil},
   }
   for _, tc := range testCases {
       t.Run(tc.path, func(t *testing.T) {
           req := httptest.NewRequest("GET", "http://example.com"+tc.path, nil)
           w := httptest.NewRecorder()
           tc.handler(w, req)
 
           resp := w.Result()
           if got, want := resp.StatusCode, tc.statusCode; got != want {
               t.Errorf("status code: got %d; want %d", got, want)
           }
 
           body, err := ioutil.ReadAll(resp.Body)
           if err != nil {
               t.Errorf("when reading response body, expected non-nil err; got %v", err)
           }
           if got, want := resp.Header.Get("X-Content-Type-Options"), "nosniff"; got != want {
               t.Errorf("X-Content-Type-Options: got %q; want %q", got, want)
           }
           if got, want := resp.Header.Get("Content-Type"), tc.contentType; got != want {
               t.Errorf("Content-Type: got %q; want %q", got, want)
           }
           if got, want := resp.Header.Get("Content-Disposition"), tc.contentDisposition; got != want {
               t.Errorf("Content-Disposition: got %q; want %q", got, want)
           }
 
           if resp.StatusCode == http.StatusOK {
               return
           }
           if got, want := resp.Header.Get("X-Go-Pprof"), "1"; got != want {
               t.Errorf("X-Go-Pprof: got %q; want %q", got, want)
           }
           if !bytes.Equal(body, tc.resp) {
               t.Errorf("response: got %q; want %q", body, tc.resp)
           }
       })
   }
 
}