aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/maratori
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-07-04 11:12:55 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-07-04 15:05:30 +0200
commitc7d7f10bdff703e4a3c0414e8a33d4e45c91eb35 (patch)
tree0dff0ee1f98dbfa3ad8776112053a450d176592b /vendor/github.com/maratori
parent9573094ce235bd9afe88f5da27a47dd6bcc1e13b (diff)
go.mod: vendor golangci-lint
Diffstat (limited to 'vendor/github.com/maratori')
-rw-r--r--vendor/github.com/maratori/testpackage/LICENSE21
-rw-r--r--vendor/github.com/maratori/testpackage/pkg/testpackage/testpackage.go53
2 files changed, 74 insertions, 0 deletions
diff --git a/vendor/github.com/maratori/testpackage/LICENSE b/vendor/github.com/maratori/testpackage/LICENSE
new file mode 100644
index 000000000..644d0b1c8
--- /dev/null
+++ b/vendor/github.com/maratori/testpackage/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2019 Marat Reymers
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/vendor/github.com/maratori/testpackage/pkg/testpackage/testpackage.go b/vendor/github.com/maratori/testpackage/pkg/testpackage/testpackage.go
new file mode 100644
index 000000000..cad24e1a5
--- /dev/null
+++ b/vendor/github.com/maratori/testpackage/pkg/testpackage/testpackage.go
@@ -0,0 +1,53 @@
+package testpackage
+
+import (
+ "flag"
+ "regexp"
+ "strings"
+
+ "golang.org/x/tools/go/analysis"
+)
+
+const (
+ SkipRegexpFlagName = "skip-regexp"
+ SkipRegexpFlagUsage = `regexp pattern to skip file by name. To not skip files use -skip-regexp="^$"`
+ SkipRegexpFlagDefault = `(export|internal)_test\.go`
+)
+
+// NewAnalyzer returns Analyzer that makes you use a separate _test package
+func NewAnalyzer() *analysis.Analyzer {
+ var (
+ skipFileRegexp = SkipRegexpFlagDefault
+ fs flag.FlagSet
+ )
+
+ fs.StringVar(&skipFileRegexp, SkipRegexpFlagName, skipFileRegexp, SkipRegexpFlagUsage)
+
+ return &analysis.Analyzer{
+ Name: "testpackage",
+ Doc: "linter that makes you use a separate _test package",
+ Flags: fs,
+ Run: func(pass *analysis.Pass) (interface{}, error) {
+ skipFile, err := regexp.Compile(skipFileRegexp)
+ if err != nil {
+ return nil, err
+ }
+
+ for _, f := range pass.Files {
+ fileName := pass.Fset.Position(f.Pos()).Filename
+ if skipFile.MatchString(fileName) {
+ continue
+ }
+
+ if strings.HasSuffix(fileName, "_test.go") {
+ packageName := f.Name.Name
+ if !strings.HasSuffix(packageName, "_test") {
+ pass.Reportf(f.Name.Pos(), "package should be `%s_test` instead of `%s`", packageName, packageName)
+ }
+ }
+ }
+
+ return nil, nil
+ },
+ }
+}