Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new checker contains #152

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ https://golangci-lint.run/usage/linters/#testifylint
| [blank-import](#blank-import) | ✅ | ❌ |
| [bool-compare](#bool-compare) | ✅ | ✅ |
| [compares](#compares) | ✅ | ✅ |
| [contains](#contains) | ✅ | ✅ |
| [empty](#empty) | ✅ | ✅ |
| [error-is-as](#error-is-as) | ✅ | 🤏 |
| [error-nil](#error-nil) | ✅ | ✅ |
Expand Down Expand Up @@ -216,6 +217,28 @@ due to the inappropriate recursive nature of `assert.Equal` (based on

---

### contains

```go
assert.True(t, strings.Contains(a, "abc123"))
assert.False(t, strings.Contains(a, "456"))
assert.True(t, strings.Contains(string(b), "abc123"))
assert.False(t, strings.Contains(string(b), "456"))

assert.Contains(t, a, "abc123")
assert.NotContains(t, a, "456")
assert.Contains(t, string(b), "abc123")
assert.NotContains(t, string(b), "456")
```

**Autofix**: true. <br>
**Enabled by default**: true. <br>
**Reason**: More appropriate `testify` API with clearer failure message.

---

### empty

```go
Expand Down
2 changes: 2 additions & 0 deletions analyzer/checkers_factory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ func Test_newCheckers(t *testing.T) {
checkers.NewLen(),
checkers.NewNegativePositive(),
checkers.NewCompares(),
checkers.NewContains(),
checkers.NewErrorNil(),
checkers.NewNilCompare(),
checkers.NewErrorIsAs(),
Expand All @@ -38,6 +39,7 @@ func Test_newCheckers(t *testing.T) {
checkers.NewLen(),
checkers.NewNegativePositive(),
checkers.NewCompares(),
checkers.NewContains(),
checkers.NewErrorNil(),
checkers.NewNilCompare(),
checkers.NewErrorIsAs(),
Expand Down
55 changes: 55 additions & 0 deletions analyzer/testdata/src/checkers-default/contains/contains_test.go
mmorel-35 marked this conversation as resolved.
Show resolved Hide resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// Code generated by testifylint/internal/testgen. DO NOT EDIT.

package contains

import (
"errors"
"strings"
"testing"

"github.com/stretchr/testify/assert"
)

func TestContainsChecker(t *testing.T) {
var (
a = "abc123"
b = []byte(a)
errSentinel = errors.New("user not found")
)

// Invalid.
{
assert.Contains(t, a, "abc123") // want "contains: use assert\\.Contains"
assert.Containsf(t, a, "abc123", "msg with args %d %s", 42, "42") // want "contains: use assert\\.Containsf"
assert.NotContains(t, a, "456") // want "contains: use assert\\.NotContains"
assert.NotContainsf(t, a, "456", "msg with args %d %s", 42, "42") // want "contains: use assert\\.NotContainsf"
assert.Contains(t, string(b), "abc123") // want "contains: use assert\\.Contains"
assert.Containsf(t, string(b), "abc123", "msg with args %d %s", 42, "42") // want "contains: use assert\\.Containsf"
assert.NotContains(t, string(b), "456") // want "contains: use assert\\.NotContains"
assert.NotContainsf(t, string(b), "456", "msg with args %d %s", 42, "42") // want "contains: use assert\\.NotContainsf"
}

// Valid.
{
assert.Contains(t, a, "abc123")
assert.Containsf(t, a, "abc123", "msg with args %d %s", 42, "42")
assert.NotContains(t, a, "456")
assert.NotContainsf(t, a, "456", "msg with args %d %s", 42, "42")
assert.Contains(t, string(b), "abc123")
assert.Containsf(t, string(b), "abc123", "msg with args %d %s", 42, "42")
assert.NotContains(t, string(b), "456")
assert.NotContainsf(t, string(b), "456", "msg with args %d %s", 42, "42")
}

// Ignored.
{
assert.Contains(t, errSentinel.Error(), "user")
assert.Containsf(t, errSentinel.Error(), "user", "msg with args %d %s", 42, "42")
assert.Equal(t, strings.Contains(a, "abc123"), true)
assert.Equalf(t, strings.Contains(a, "abc123"), true, "msg with args %d %s", 42, "42")
assert.False(t, !strings.Contains(a, "abc123"))
assert.Falsef(t, !strings.Contains(a, "abc123"), "msg with args %d %s", 42, "42")
assert.True(t, !strings.Contains(a, "456"))
assert.Truef(t, !strings.Contains(a, "456"), "msg with args %d %s", 42, "42")
}
}
1 change: 1 addition & 0 deletions internal/checkers/checkers_registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ var registry = checkersRegistry{
{factory: asCheckerFactory(NewLen), enabledByDefault: true},
{factory: asCheckerFactory(NewNegativePositive), enabledByDefault: true},
{factory: asCheckerFactory(NewCompares), enabledByDefault: true},
{factory: asCheckerFactory(NewContains), enabledByDefault: true},
{factory: asCheckerFactory(NewErrorNil), enabledByDefault: true},
{factory: asCheckerFactory(NewNilCompare), enabledByDefault: true},
{factory: asCheckerFactory(NewErrorIsAs), enabledByDefault: true},
Expand Down
2 changes: 2 additions & 0 deletions internal/checkers/checkers_registry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ func TestAll(t *testing.T) {
"len",
"negative-positive",
"compares",
"contains",
"error-nil",
"nil-compare",
"error-is-as",
Expand Down Expand Up @@ -76,6 +77,7 @@ func TestEnabledByDefault(t *testing.T) {
"len",
"negative-positive",
"compares",
"contains",
"error-nil",
"nil-compare",
"error-is-as",
Expand Down
79 changes: 79 additions & 0 deletions internal/checkers/contains.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
package checkers

import (
"go/ast"

"golang.org/x/tools/go/analysis"
)

// Contains detects situations like
//
// assert.True(t, strings.Contains(a, "abc123"))
// assert.False(t, strings.Contains(a, "456"))
// assert.True(t, strings.Contains(string(b), "abc123"))
// assert.False(t, strings.Contains(string(b), "456"))
//
// and requires
//
// assert.Contains(t, a, "abc123")
// assert.NotContains(t, a, "456")
// assert.Contains(t, string(b), "abc123")
// assert.NotContains(t, string(b), "456")
type Contains struct{}

// NewContains constructs Contains checker.
func NewContains() Contains { return Contains{} }
func (Contains) Name() string { return "contains" }

func (checker Contains) Check(pass *analysis.Pass, call *CallMeta) *analysis.Diagnostic {
mmorel-35 marked this conversation as resolved.
Show resolved Hide resolved
switch call.Fn.NameFTrimmed {
case "True":
if len(call.Args) < 1 {
return nil
}

ce, ok := call.Args[0].(*ast.CallExpr)
if !ok {
return nil
}
if len(ce.Args) != 2 {
return nil
}

if isStringsContainsCall(pass, ce) {
const proposed = "Contains"
return newUseFunctionDiagnostic(checker.Name(), call, proposed,
newSuggestedFuncReplacement(call, proposed, analysis.TextEdit{
Pos: ce.Pos(),
End: ce.End(),
NewText: formatAsCallArgs(pass, ce.Args[0], ce.Args[1]),
}),
)
}

case "False":
if len(call.Args) < 1 {
return nil
}

ce, ok := call.Args[0].(*ast.CallExpr)
if !ok {
return nil
}
if len(ce.Args) != 2 {
return nil
}

if isStringsContainsCall(pass, ce) {
const proposed = "NotContains"
return newUseFunctionDiagnostic(checker.Name(), call, proposed,
newSuggestedFuncReplacement(call, proposed, analysis.TextEdit{
Pos: ce.Pos(),
End: ce.End(),
NewText: formatAsCallArgs(pass, ce.Args[0], ce.Args[1]),
}),
)
}
}
return nil
}
4 changes: 4 additions & 0 deletions internal/checkers/helpers_pkg_func.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ func isRegexpMustCompileCall(pass *analysis.Pass, ce *ast.CallExpr) bool {
return isPkgFnCall(pass, ce, "regexp", "MustCompile")
}

func isStringsContainsCall(pass *analysis.Pass, ce *ast.CallExpr) bool {
return isPkgFnCall(pass, ce, "strings", "Contains")
}

func isPkgFnCall(pass *analysis.Pass, ce *ast.CallExpr, pkg, fn string) bool {
se, ok := ce.Fun.(*ast.SelectorExpr)
if !ok {
Expand Down
Loading