123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- // Copyright 2014 Google Inc. All Rights Reserved.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
-
- package symbolz
-
- import (
- "fmt"
- "strings"
- "testing"
-
- "github.com/google/pprof/internal/plugin"
- "github.com/google/pprof/internal/proftest"
- "github.com/google/pprof/profile"
- )
-
- func TestSymbolzURL(t *testing.T) {
- for try, want := range map[string]string{
- "http://host:8000/profilez": "http://host:8000/symbolz",
- "http://host:8000/profilez?seconds=5": "http://host:8000/symbolz",
- "http://host:8000/profilez?seconds=5&format=proto": "http://host:8000/symbolz",
- "http://host:8000/heapz?format=legacy": "http://host:8000/symbolz",
- "http://host:8000/debug/pprof/profile": "http://host:8000/debug/pprof/symbol",
- "http://host:8000/debug/pprof/profile?seconds=10": "http://host:8000/debug/pprof/symbol",
- "http://host:8000/debug/pprof/heap": "http://host:8000/debug/pprof/symbol",
- "http://some.host:8080/some/deeper/path/debug/pprof/endpoint?param=value": "http://some.host:8080/some/deeper/path/debug/pprof/symbol",
- } {
- if got := symbolz(try); got != want {
- t.Errorf(`symbolz(%s)=%s, want "%s"`, try, got, want)
- }
- }
- }
-
- func TestSymbolize(t *testing.T) {
- s := plugin.MappingSources{
- "buildid": []struct {
- Source string
- Start uint64
- }{
- {Source: "http://localhost:80/profilez"},
- },
- }
-
- for _, hasFunctions := range []bool{false, true} {
- for _, force := range []bool{false, true} {
- p := testProfile(hasFunctions)
-
- if err := Symbolize(p, force, s, fetchSymbols, &proftest.TestUI{T: t}); err != nil {
- t.Errorf("symbolz: %v", err)
- continue
- }
- var wantSym, wantNoSym []*profile.Location
- if force || !hasFunctions {
- wantNoSym = p.Location[:1]
- wantSym = p.Location[1:]
- } else {
- wantNoSym = p.Location
- }
-
- if err := checkSymbolized(wantSym, true); err != nil {
- t.Errorf("symbolz hasFns=%v force=%v: %v", hasFunctions, force, err)
- }
- if err := checkSymbolized(wantNoSym, false); err != nil {
- t.Errorf("symbolz hasFns=%v force=%v: %v", hasFunctions, force, err)
- }
- }
- }
- }
-
- func testProfile(hasFunctions bool) *profile.Profile {
- m := []*profile.Mapping{
- {
- ID: 1,
- Start: 0x1000,
- Limit: 0x5000,
- BuildID: "buildid",
- HasFunctions: hasFunctions,
- },
- }
- p := &profile.Profile{
- Location: []*profile.Location{
- {ID: 1, Mapping: m[0], Address: 0x1000},
- {ID: 2, Mapping: m[0], Address: 0x2000},
- {ID: 3, Mapping: m[0], Address: 0x3000},
- {ID: 4, Mapping: m[0], Address: 0x4000},
- },
- Mapping: m,
- }
-
- return p
- }
-
- func checkSymbolized(locs []*profile.Location, wantSymbolized bool) error {
- for _, loc := range locs {
- if !wantSymbolized && len(loc.Line) != 0 {
- return fmt.Errorf("unexpected symbolization for %#x: %v", loc.Address, loc.Line)
- }
- if wantSymbolized {
- if len(loc.Line) != 1 {
- return fmt.Errorf("expected symbolization for %#x: %v", loc.Address, loc.Line)
- }
- address := loc.Address - loc.Mapping.Start
- if got, want := loc.Line[0].Function.Name, fmt.Sprintf("%#x", address); got != want {
- return fmt.Errorf("symbolz %#x, got %s, want %s", address, got, want)
- }
- }
- }
- return nil
- }
-
- func fetchSymbols(source, post string) ([]byte, error) {
- var symbolz string
-
- addresses := strings.Split(post, "+")
- // Do not symbolize the first symbol.
- for _, address := range addresses[1:] {
- symbolz += fmt.Sprintf("%s\t%s\n", address, address)
- }
- return []byte(symbolz), nil
- }
|