mirror of
https://github.com/octoleo/syncthing.git
synced 2025-02-10 15:58:40 +00:00
65aaa607ab
Change made by: - running "gvt fetch" on each of the packages mentioned in Godeps/Godeps.json - `rm -rf Godeps` - tweaking the build scripts to not mention Godeps - tweaking the build scripts to test `./lib/...`, `./cmd/...` explicitly (to avoid testing vendor) - tweaking the build scripts to not juggle GOPATH for Godeps and instead set GO15VENDOREXPERIMENT. This also results in some updated packages at the same time I bet. Building with Go 1.3 and 1.4 still *works* but won't use our vendored dependencies - the user needs to have the actual packages in their GOPATH then, which they'll get with a normal "go get". Building with Go 1.6+ will get our vendored dependencies by default even when not using our build script, which is nice. By doing this we gain some freedom in that we can pick and choose manually what to include in vendor, as it's not based on just dependency analysis of our own code. This is also a risk as we might pick up dependencies we are unaware of, as the build may work locally with those packages present in GOPATH. On the other hand the build server will detect this as it has no packages in it's GOPATH beyond what is included in the repo. Recommended tool to manage dependencies is github.com/FiloSottile/gvt.
117 lines
2.6 KiB
Go
117 lines
2.6 KiB
Go
package testsuite
|
|
|
|
import (
|
|
"errors"
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
type TestSuite struct {
|
|
Path string
|
|
PackageName string
|
|
IsGinkgo bool
|
|
Precompiled bool
|
|
}
|
|
|
|
func PrecompiledTestSuite(path string) (TestSuite, error) {
|
|
info, err := os.Stat(path)
|
|
if err != nil {
|
|
return TestSuite{}, err
|
|
}
|
|
|
|
if info.IsDir() {
|
|
return TestSuite{}, errors.New("this is a directory, not a file")
|
|
}
|
|
|
|
if filepath.Ext(path) != ".test" {
|
|
return TestSuite{}, errors.New("this is not a .test binary")
|
|
}
|
|
|
|
if info.Mode()&0111 == 0 {
|
|
return TestSuite{}, errors.New("this is not executable")
|
|
}
|
|
|
|
dir := relPath(filepath.Dir(path))
|
|
packageName := strings.TrimSuffix(filepath.Base(path), filepath.Ext(path))
|
|
|
|
return TestSuite{
|
|
Path: dir,
|
|
PackageName: packageName,
|
|
IsGinkgo: true,
|
|
Precompiled: true,
|
|
}, nil
|
|
}
|
|
|
|
func SuitesInDir(dir string, recurse bool) []TestSuite {
|
|
suites := []TestSuite{}
|
|
|
|
// "This change will only be enabled if the go command is run with
|
|
// GO15VENDOREXPERIMENT=1 in its environment."
|
|
// c.f. the vendor-experiment proposal https://goo.gl/2ucMeC
|
|
vendorExperiment := os.Getenv("GO15VENDOREXPERIMENT")
|
|
if (vendorExperiment == "1") && path.Base(dir) == "vendor" {
|
|
return suites
|
|
}
|
|
|
|
files, _ := ioutil.ReadDir(dir)
|
|
re := regexp.MustCompile(`_test\.go$`)
|
|
for _, file := range files {
|
|
if !file.IsDir() && re.Match([]byte(file.Name())) {
|
|
suites = append(suites, New(dir, files))
|
|
break
|
|
}
|
|
}
|
|
|
|
if recurse {
|
|
re = regexp.MustCompile(`^[._]`)
|
|
for _, file := range files {
|
|
if file.IsDir() && !re.Match([]byte(file.Name())) {
|
|
suites = append(suites, SuitesInDir(dir+"/"+file.Name(), recurse)...)
|
|
}
|
|
}
|
|
}
|
|
|
|
return suites
|
|
}
|
|
|
|
func relPath(dir string) string {
|
|
dir, _ = filepath.Abs(dir)
|
|
cwd, _ := os.Getwd()
|
|
dir, _ = filepath.Rel(cwd, filepath.Clean(dir))
|
|
dir = "." + string(filepath.Separator) + dir
|
|
return dir
|
|
}
|
|
|
|
func New(dir string, files []os.FileInfo) TestSuite {
|
|
return TestSuite{
|
|
Path: relPath(dir),
|
|
PackageName: packageNameForSuite(dir),
|
|
IsGinkgo: filesHaveGinkgoSuite(dir, files),
|
|
}
|
|
}
|
|
|
|
func packageNameForSuite(dir string) string {
|
|
path, _ := filepath.Abs(dir)
|
|
return filepath.Base(path)
|
|
}
|
|
|
|
func filesHaveGinkgoSuite(dir string, files []os.FileInfo) bool {
|
|
reTestFile := regexp.MustCompile(`_test\.go$`)
|
|
reGinkgo := regexp.MustCompile(`package ginkgo|\/ginkgo"`)
|
|
|
|
for _, file := range files {
|
|
if !file.IsDir() && reTestFile.Match([]byte(file.Name())) {
|
|
contents, _ := ioutil.ReadFile(dir + "/" + file.Name())
|
|
if reGinkgo.Match(contents) {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|