forked from TrueCloudLab/linters
134 lines
2.4 KiB
Go
134 lines
2.4 KiB
Go
package noliteral
|
|
|
|
import (
|
|
"go/ast"
|
|
"go/parser"
|
|
"go/token"
|
|
"path/filepath"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"golang.org/x/tools/go/analysis"
|
|
)
|
|
|
|
func init() {
|
|
Config.ConstantsPackage = "git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
}
|
|
|
|
func TestAnalyzer_negative(t *testing.T) {
|
|
const countNegativeCases = 4
|
|
|
|
_, filename, _, _ := runtime.Caller(0)
|
|
dir := filepath.Dir(filename)
|
|
fset := token.NewFileSet()
|
|
f, err := parser.ParseFile(fset, filepath.Join(dir, "test-case/literals/negative._go"), nil, parser.AllErrors)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
Count := 0
|
|
pass := &analysis.Pass{
|
|
Fset: fset,
|
|
Files: []*ast.File{f},
|
|
Report: func(diag analysis.Diagnostic) {
|
|
Count++
|
|
},
|
|
}
|
|
|
|
_, err = run(pass)
|
|
|
|
if Count != countNegativeCases {
|
|
t.Fail()
|
|
}
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestAnalyzer_literals_positive(t *testing.T) {
|
|
_, filename, _, _ := runtime.Caller(0)
|
|
dir := filepath.Dir(filename)
|
|
|
|
fset := token.NewFileSet()
|
|
f, err := parser.ParseFile(fset, filepath.Join(dir, "test-case/literals/positive._go"), nil, parser.AllErrors)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
flag := false
|
|
pass := &analysis.Pass{
|
|
Fset: fset,
|
|
Files: []*ast.File{f},
|
|
Report: func(diag analysis.Diagnostic) {
|
|
flag = true
|
|
},
|
|
}
|
|
_, err = run(pass)
|
|
|
|
if flag {
|
|
t.Fail()
|
|
}
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestAnalyzer_const_location_negative(t *testing.T) {
|
|
const countNegativeCases = 3
|
|
_, filename, _, _ := runtime.Caller(0)
|
|
dir := filepath.Dir(filename)
|
|
|
|
fset := token.NewFileSet()
|
|
f, err := parser.ParseFile(fset, filepath.Join(dir, "test-case/const-location/negative._go"), nil, parser.AllErrors)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
Count := 0
|
|
pass := &analysis.Pass{
|
|
Fset: fset,
|
|
Files: []*ast.File{f},
|
|
Report: func(diag analysis.Diagnostic) {
|
|
Count++
|
|
},
|
|
}
|
|
|
|
_, err = run(pass)
|
|
|
|
if Count != countNegativeCases {
|
|
t.Fail()
|
|
}
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestAnalyzer_const_location_positive(t *testing.T) {
|
|
_, filename, _, _ := runtime.Caller(0)
|
|
dir := filepath.Dir(filename)
|
|
|
|
fset := token.NewFileSet()
|
|
f, err := parser.ParseFile(fset, filepath.Join(dir, "test-case/const-location/positive._go"), nil, parser.AllErrors)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
flag := false
|
|
pass := &analysis.Pass{
|
|
Fset: fset,
|
|
Files: []*ast.File{f},
|
|
Report: func(diag analysis.Diagnostic) {
|
|
flag = true
|
|
},
|
|
}
|
|
_, err = run(pass)
|
|
|
|
if flag {
|
|
t.Fail()
|
|
}
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|