blob: c6044bf3e53773d8880abb0e2974c5cf52deacd0 [file] [log] [blame]
/* Copyright 2016 The Bazel Authors. 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 rules_test
import (
"io/ioutil"
"path/filepath"
"testing"
bf "github.com/bazelbuild/buildtools/build"
"github.com/bazelbuild/rules_go/go/tools/gazelle/config"
"github.com/bazelbuild/rules_go/go/tools/gazelle/packages"
"github.com/bazelbuild/rules_go/go/tools/gazelle/rules"
"github.com/bazelbuild/rules_go/go/tools/gazelle/testdata"
)
func testConfig(repoRoot, goPrefix string) *config.Config {
c := &config.Config{
RepoRoot: repoRoot,
GoPrefix: goPrefix,
GenericTags: config.BuildTags{},
Platforms: config.DefaultPlatformTags,
ValidBuildFileNames: []string{"BUILD.old"},
}
c.PreprocessTags()
return c
}
func packageFromDir(c *config.Config, dir string) *packages.Package {
var pkg *packages.Package
packages.Walk(c, dir, func(p *packages.Package, _ *bf.File) {
if p.Dir == dir {
pkg = p
}
})
return pkg
}
func TestGenerator(t *testing.T) {
repoRoot := filepath.Join(testdata.Dir(), "repo")
goPrefix := "example.com/repo"
c := testConfig(repoRoot, goPrefix)
g := rules.NewGenerator(c)
for _, rel := range []string{
"allcgolib",
"bin",
"bin_with_tests",
"cgolib",
"cgolib_with_build_tags",
"gen_and_exclude",
"lib",
"lib/internal/deep",
"main_test_only",
"platforms",
"tests_import_testdata",
"tests_with_testdata",
} {
dir := filepath.Join(repoRoot, filepath.FromSlash(rel))
pkg := packageFromDir(c, dir)
f := g.Generate(pkg)
got := string(bf.Format(f))
wantPath := filepath.Join(pkg.Dir, "BUILD.want")
wantBytes, err := ioutil.ReadFile(wantPath)
if err != nil {
t.Errorf("error reading %s: %v", wantPath, err)
continue
}
want := string(wantBytes)
if got != want {
t.Errorf("g.Generate(%q, %#v) = %s; want %s", rel, pkg, got, want)
}
}
}
func TestGeneratorGoPrefixLib(t *testing.T) {
repoRoot := filepath.Join(testdata.Dir(), "repo", "lib")
goPrefix := "example.com/repo/lib"
c := testConfig(repoRoot, goPrefix)
g := rules.NewGenerator(c)
pkg := packageFromDir(c, repoRoot)
f := g.Generate(pkg)
if got, want := findGoPrefix(f), `go_prefix("example.com/repo/lib")`; got != want {
t.Errorf("got %q; want %q", got, want)
}
}
func TestGeneratorGoPrefixRoot(t *testing.T) {
repoRoot := filepath.Join(testdata.Dir(), "repo")
goPrefix := "example.com/repo"
c := testConfig(repoRoot, goPrefix)
g := rules.NewGenerator(c)
pkg := &packages.Package{Dir: repoRoot}
f := g.Generate(pkg)
if got, want := findGoPrefix(f), `go_prefix("example.com/repo")`; got != want {
t.Errorf("got %q; want %q", got, want)
}
}
func findGoPrefix(f *bf.File) string {
for _, s := range f.Stmt {
c, ok := s.(*bf.CallExpr)
if !ok {
continue
}
x, ok := c.X.(*bf.LiteralExpr)
if !ok {
continue
}
if x.Token == "go_prefix" {
return bf.FormatString(s)
}
}
return ""
}
func TestGeneratedFileName(t *testing.T) {
testGeneratedFileName(t, "BUILD")
testGeneratedFileName(t, "BUILD.bazel")
}
func testGeneratedFileName(t *testing.T, buildFileName string) {
c := &config.Config{
ValidBuildFileNames: []string{buildFileName},
}
g := rules.NewGenerator(c)
pkg := &packages.Package{}
f := g.Generate(pkg)
if f.Path != buildFileName {
t.Errorf("got %q; want %q", f.Path, buildFileName)
}
}