1
0
mirror of https://github.com/mgechev/revive.git synced 2025-05-19 22:03:20 +02:00
revive/test/add_constant_test.go

34 lines
945 B
Go
Raw Normal View History

2018-07-17 21:21:27 +02:00
package test
import (
"testing"
"github.com/mgechev/revive/lint"
"github.com/mgechev/revive/rule"
)
func TestAddConstantWithDefaultArguments(t *testing.T) {
testRule(t, "add_constant_default", &rule.AddConstantRule{}, &lint.RuleConfig{})
}
2018-07-17 21:21:27 +02:00
func TestAddConstantWithArguments(t *testing.T) {
testRule(t, "add_constant", &rule.AddConstantRule{}, &lint.RuleConfig{
Arguments: []any{map[string]any{
"maxLitCount": "2",
"allowStrs": "\"\"",
"allowInts": "0,1,2",
"allowFloats": "0.0,1.0",
"ignoreFuncs": "os\\.(CreateFile|WriteFile|Chmod|FindProcess),\\.Println,ignoredFunc,\\.Info",
}},
2018-07-17 21:21:27 +02:00
})
testRule(t, "add_constant", &rule.AddConstantRule{}, &lint.RuleConfig{
Arguments: []any{map[string]any{
"max-lit-count": "2",
"allow-strs": `""`,
"allow-ints": "0,1,2",
"allow-floats": "0.0,1.0",
"ignore-funcs": `os\.(CreateFile|WriteFile|Chmod|FindProcess),\.Println,ignoredFunc,\.Info`,
}},
})
2018-07-17 21:21:27 +02:00
}