aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/regtest/bench/iwl_test.go
blob: 352078e7f70dbb9bd5684b31a190fe18515ffe6a (plain)
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
// Copyright 2022 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 bench

import (
	"testing"

	"golang.org/x/tools/gopls/internal/lsp/command"
	"golang.org/x/tools/gopls/internal/lsp/fake"
	"golang.org/x/tools/gopls/internal/lsp/protocol"
	. "golang.org/x/tools/gopls/internal/lsp/regtest"
)

// BenchmarkInitialWorkspaceLoad benchmarks the initial workspace load time for
// a new editing session.
func BenchmarkInitialWorkspaceLoad(b *testing.B) {
	if testing.Short() {
		// TODO(rfindley): remove this skip once the released gopls version
		// supports the memstats command.
		b.Skip("temporarily skipping as baseline gopls versions do not support the memstats command")
	}
	tests := []struct {
		repo string
		file string
	}{
		{"tools", "internal/lsp/cache/snapshot.go"},
		{"kubernetes", "pkg/controller/lookup_cache.go"},
		{"pkgsite", "internal/frontend/server.go"},
		{"starlark", "starlark/eval.go"},
		{"istio", "pkg/fuzz/util.go"},
		{"kuma", "api/generic/insights.go"},
	}

	for _, test := range tests {
		b.Run(test.repo, func(b *testing.B) {
			repo := getRepo(b, test.repo)
			// get the (initialized) shared env to ensure the cache is warm.
			// Reuse its GOPATH so that we get cache hits for things in the module
			// cache.
			sharedEnv := repo.sharedEnv(b)
			b.ResetTimer()

			for i := 0; i < b.N; i++ {
				doIWL(b, sharedEnv.Sandbox.GOPATH(), repo, test.file)
			}
		})
	}
}

func doIWL(b *testing.B, gopath string, repo *repo, file string) {
	// Exclude the time to set up the env from the benchmark time, as this may
	// involve installing gopls and/or checking out the repo dir.
	b.StopTimer()
	config := fake.EditorConfig{Env: map[string]string{"GOPATH": gopath}}
	env := repo.newEnv(b, "iwl."+repo.name, config)
	defer env.Close()
	b.StartTimer()

	// Open an arbitrary file to ensure that gopls starts working.
	//
	// In the future, this may matter if gopls doesn't eagerly construct
	// the workspace.
	env.OpenFile(file)

	env.Await(InitialWorkspaceLoad)
	b.StopTimer()
	params := &protocol.ExecuteCommandParams{
		Command: command.MemStats.ID(),
	}
	var memstats command.MemStatsResult
	env.ExecuteCommand(params, &memstats)
	b.ReportMetric(float64(memstats.HeapAlloc), "alloc_bytes")
	b.ReportMetric(float64(memstats.HeapInUse), "in_use_bytes")
	b.StartTimer()
}