generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add linter for correct usage of CommitOrRollback (#2306)
<img width="1514" alt="image" src="https://github.com/user-attachments/assets/9b132f4d-8047-4089-b892-851f9657e3e6">
- Loading branch information
1 parent
bdc2dae
commit 1d4bf29
Showing
12 changed files
with
263 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
module github.com/tbdeng/pfi/cmd/lint-commit-or-rollback | ||
|
||
go 1.22.0 | ||
|
||
require golang.org/x/tools v0.18.0 | ||
|
||
require ( | ||
github.com/alecthomas/repr v0.4.0 // indirect | ||
github.com/hexops/gotextdiff v1.0.3 // indirect | ||
) | ||
|
||
require ( | ||
github.com/alecthomas/assert/v2 v2.6.0 | ||
golang.org/x/mod v0.15.0 // indirect | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
package main | ||
|
||
import ( | ||
"go/ast" | ||
"go/token" | ||
|
||
"golang.org/x/tools/go/analysis" | ||
"golang.org/x/tools/go/analysis/singlechecker" | ||
) | ||
|
||
var Analyzer = &analysis.Analyzer{ | ||
Name: "commitorrollback", | ||
Doc: "Detects misues of dal.TX.CommitOrRollback", | ||
Run: run, | ||
} | ||
|
||
// Detect that any use of dal.TX.CommitOrRollback is in a defer statement and | ||
// takes a reference to a named error return parameter. | ||
// | ||
// ie. Must be in the following form | ||
// | ||
// func myFunc() (err error) { | ||
// // ... | ||
// defer tx.CommitOrRollback(&err) | ||
// } | ||
func run(pass *analysis.Pass) (interface{}, error) { | ||
var inspect func(n ast.Node) bool | ||
funcStack := []*ast.FuncType{} | ||
inspect = func(n ast.Node) bool { | ||
switch n := n.(type) { | ||
case nil: | ||
return false | ||
|
||
case *ast.FuncLit: | ||
funcStack = append(funcStack, n.Type) | ||
ast.Inspect(n.Body, inspect) | ||
funcStack = funcStack[:len(funcStack)-1] | ||
return false | ||
|
||
case *ast.FuncDecl: | ||
funcStack = append(funcStack, n.Type) | ||
ast.Inspect(n.Body, inspect) | ||
funcStack = funcStack[:len(funcStack)-1] | ||
return false | ||
|
||
case *ast.CallExpr: | ||
sel, ok := n.Fun.(*ast.SelectorExpr) | ||
if !ok { | ||
return true | ||
} | ||
x, ok := sel.X.(*ast.Ident) | ||
if !ok || x.Name != "tx" || sel.Sel.Name != "CommitOrRollback" || len(n.Args) != 2 { | ||
return true | ||
} | ||
arg0, ok := n.Args[1].(*ast.UnaryExpr) | ||
if !ok || arg0.Op != token.AND { | ||
return true | ||
} | ||
arg0Ident, ok := arg0.X.(*ast.Ident) | ||
if !ok { | ||
return true | ||
} | ||
funcDecl := funcStack[len(funcStack)-1] | ||
funcPos := pass.Fset.Position(funcDecl.Func) | ||
if funcDecl.Results == nil { | ||
pass.Reportf(arg0.Pos(), "defer tx.CommitOrRollback(ctx, &err) should be deferred with a named error return parameter but the function at %s has no named return parameters", funcPos) | ||
return true | ||
} | ||
for _, field := range funcDecl.Results.List { | ||
if result, ok := field.Type.(*ast.Ident); ok && result.Name == "error" { | ||
if len(field.Names) == 0 { | ||
pass.Reportf(arg0.Pos(), "defer tx.CommitOrRollback(ctx, &err) should be deferred with a reference to a named error return parameter, but the function at %s has no named return parameters", funcPos) | ||
} | ||
for _, name := range field.Names { | ||
if name.Name != arg0Ident.Name { | ||
namePos := pass.Fset.Position(name.NamePos) | ||
pass.Reportf(arg0.Pos(), "defer tx.CommitOrRollback(&ctx, %s) should be deferred with the named error return parameter here %s", arg0Ident.Name, namePos) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
return true | ||
} | ||
for _, file := range pass.Files { | ||
funcStack = []*ast.FuncType{} | ||
ast.Inspect(file, inspect) | ||
} | ||
return nil, nil | ||
} | ||
|
||
func main() { | ||
singlechecker.Main(Analyzer) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package main | ||
|
||
import ( | ||
"os" | ||
"os/exec" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/alecthomas/assert/v2" | ||
) | ||
|
||
func TestLinter(t *testing.T) { | ||
pwd, err := os.Getwd() | ||
assert.NoError(t, err) | ||
cmd := exec.Command("lint-commit-or-rollback", ".") | ||
cmd.Dir = "testdata" | ||
output, err := cmd.CombinedOutput() | ||
assert.Error(t, err) | ||
expected := ` | ||
` + pwd + `/testdata/main.go:35:29: defer tx.CommitOrRollback(&err) should be deferred with a reference to a named error return parameter, but the function at /Users/alec/dev/pfi/cmd/lint-commit-or-rollback/testdata/main.go:29:6 has no named return parameters | ||
` + pwd + `/testdata/main.go:44:28: defer tx.CommitOrRollback(&err) should be deferred with a reference to a named error return parameter, but the function at /Users/alec/dev/pfi/cmd/lint-commit-or-rollback/testdata/main.go:28:1 has no named return parameters | ||
` + pwd + `/testdata/main.go:55:29: defer tx.CommitOrRollback(&err) should be deferred with a reference to a named error return parameter, but the function at /Users/alec/dev/pfi/cmd/lint-commit-or-rollback/testdata/main.go:49:6 has no named return parameters | ||
` | ||
assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(string(output))) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module main | ||
|
||
go 1.22.2 | ||
|
||
replace pfi/backend => ../../../backend | ||
|
||
require pfi/backend v0.0.0-00010101000000-000000000000 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"database/sql" | ||
|
||
libdal "pfi/backend/libs/dal" | ||
) | ||
|
||
type Tx struct { | ||
*libdal.Tx[Tx] | ||
*DAL | ||
} | ||
|
||
// DAL is the data access layer for the IDV module. | ||
type DAL struct { | ||
db libdal.Conn | ||
*libdal.DAL[Tx] | ||
} | ||
|
||
// NewDAL creates a new Data Access Layer instance. | ||
func NewDAL(conn *sql.DB) *DAL { | ||
return &DAL{db: conn, DAL: libdal.New(conn, func(tx *sql.Tx, t *libdal.Tx[Tx]) *Tx { | ||
return &Tx{DAL: &DAL{db: tx, DAL: t.DAL}, Tx: t} | ||
})} | ||
} | ||
|
||
func failure() error { | ||
_ = func() error { | ||
dal := DAL{} | ||
tx, err := dal.Begin(context.Background()) | ||
if err != nil { | ||
return err | ||
} | ||
defer tx.CommitOrRollback(&err) // Should error | ||
return nil | ||
} | ||
|
||
dal := DAL{} | ||
tx, err := dal.Begin(context.Background()) | ||
if err != nil { | ||
return err | ||
} | ||
defer tx.CommitOrRollback(&err) // Should error | ||
return nil | ||
} | ||
|
||
func success() (err error) { | ||
_ = func() error { | ||
dal := DAL{} | ||
tx, err := dal.Begin(context.Background()) | ||
if err != nil { | ||
return err | ||
} | ||
defer tx.CommitOrRollback(&err) // Should error | ||
return nil | ||
} | ||
dal := DAL{} | ||
tx, err := dal.Begin(context.Background()) | ||
if err != nil { | ||
return err | ||
} | ||
defer tx.CommitOrRollback(&err) // Should NOT error | ||
return nil | ||
} | ||
|
||
func main() { | ||
_ = failure() | ||
_ = success() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ftl |