-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuf_test.go
159 lines (146 loc) · 4.66 KB
/
buf_test.go
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// Copyright 2021-2025 Buf Technologies, Inc.
//
// 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.
// buf_test runs gazelle binary with buf langugae extension installed
// alongside the default ones. It runs in each directory in testdata
package buf_test
import (
"os"
"os/exec"
"path"
"runtime"
"strings"
"testing"
"github.com/bazelbuild/bazel-gazelle/testtools"
"github.com/bazelbuild/rules_go/go/tools/bazel"
"github.com/stretchr/testify/require"
)
func TestLint(t *testing.T) {
t.Parallel()
testRunGazelle(t, "lint")
testRunGazelle(t, "v2/lint")
}
func TestBreaking(t *testing.T) {
t.Parallel()
testRunGazelle(t, "breaking_module")
testRunGazelle(t, "breaking_package")
testRunGazelle(t, "breaking_package_to_module")
testRunGazelle(t, "v2/breaking_module")
testRunGazelle(t, "v2/breaking_package")
testRunGazelle(t, "v2/breaking_package_to_module")
}
func TestExcludes(t *testing.T) {
t.Parallel()
testRunGazelle(t, "excludes_module")
testRunGazelle(t, "excludes_package")
testRunGazelle(t, "v2/excludes_module")
testRunGazelle(t, "v2/excludes_package")
}
func TestWorkspaces(t *testing.T) {
t.Parallel()
testRunGazelle(t, "workspace")
testRunGazelle(t, "v2/workspace")
}
func TestCrossResolve(t *testing.T) {
t.Parallel()
testRunGazelle(t, "cross_resolve")
testRunGazelle(t, "v2/cross_resolve")
}
func TestMerge(t *testing.T) {
t.Parallel()
testRunGazelle(t, "merge")
testRunGazelle(t, "v2/merge")
}
func TestMix(t *testing.T) {
t.Parallel()
testRunGazelle(t, "mix")
}
func TestImportResolve(t *testing.T) {
t.Parallel()
testRunGazelle(t, "imports", "update-repos", "--from_file=buf.work.yaml", "-to_macro=buf_deps.bzl%buf_deps", "-prune")
testRunGazelle(t, "imports_toolchain_name", "update-repos", "--from_file=buf.work.yaml", "-to_macro=buf_deps.bzl%buf_deps", "-prune")
testRunGazelle(t, "v2/imports", "update-repos", "--from_file=buf.yaml", "-to_macro=buf_deps.bzl%buf_deps", "-prune")
testRunGazelle(t, "v2/imports_toolchain_name", "update-repos", "--from_file=buf.yaml", "-to_macro=buf_deps.bzl%buf_deps", "-prune")
}
func testRunGazelle(t *testing.T, name string, gazelleArgs ...string) {
t.Run(name, func(t *testing.T) {
t.Parallel()
gazellePath, ok := bazel.FindBinary("gazelle/buf", "gazelle-buf")
require.True(t, ok, "could not find gazelle binary")
inputs, goldens := getTestData(t, path.Join("gazelle/buf/testdata", name))
dir, cleanup := testtools.CreateFiles(t, inputs)
defer cleanup()
cmd := exec.Command(gazellePath, append(gazelleArgs, "-build_file_name=BUILD")...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
cmd.Dir = dir
err := cmd.Run()
require.NoErrorf(t, err, "cmd: %q", gazellePath)
testtools.CheckFiles(t, dir, goldens)
})
}
func getTestData(t *testing.T, dir string) (inputs []testtools.FileSpec, goldens []testtools.FileSpec) {
allFiles, err := bazel.ListRunfiles()
require.NoError(t, err, "bazel.ListRunfiles()")
require.True(t, len(allFiles) > 0, "0 runfiles")
var hasWorkspace bool
for _, f := range allFiles {
if !strings.HasPrefix(f.ShortPath, dir+"/") {
continue
}
shortPath := strings.TrimPrefix(f.ShortPath, dir+"/")
info, err := os.Stat(f.Path)
require.NoErrorf(t, err, "os.Stat(%q)", f.Path)
// Skip dirs.
if info.IsDir() {
continue
}
content, err := os.ReadFile(f.Path)
require.NoErrorf(t, err, "ioutil.ReadFile(%q)", f.Path)
// Now trim the common prefix off.
filePath := shortPath
v := path.Ext(shortPath)
if v == ".in" || v == ".out" {
filePath = strings.TrimSuffix(shortPath, v)
}
if filePath == "WORKSPACE" {
hasWorkspace = true
}
fileSpec := testtools.FileSpec{
Path: filePath,
Content: string(content),
}
if runtime.GOOS == "windows" {
fileSpec.Content = strings.ReplaceAll(fileSpec.Content, "\r\n", "\n")
}
if v != ".out" {
inputs = append(inputs, fileSpec)
}
if v != ".in" {
goldens = append(goldens, fileSpec)
}
}
require.True(t, len(inputs) > 0, "0 inputs read")
// Add workspace for gazelle to work
if !hasWorkspace {
inputs = append(inputs, testtools.FileSpec{
Path: "WORKSPACE",
Content: "",
})
goldens = append(goldens, testtools.FileSpec{
Path: "WORKSPACE",
Content: "",
})
}
return inputs, goldens
}