-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
validator_test.go
242 lines (200 loc) · 5.47 KB
/
validator_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
package lintersdb
import (
"testing"
"github.com/stretchr/testify/require"
"github.com/golangci/golangci-lint/pkg/config"
"github.com/golangci/golangci-lint/pkg/logutils"
)
type validateErrorTestCase struct {
desc string
cfg *config.Linters
expected string
}
var validateLintersNamesErrorTestCases = []validateErrorTestCase{
{
desc: "unknown enabled linter",
cfg: &config.Linters{
Enable: []string{"golangci"},
Disable: nil,
},
expected: `unknown linters: 'golangci', run 'golangci-lint help linters' to see the list of supported linters`,
},
{
desc: "unknown disabled linter",
cfg: &config.Linters{
Enable: nil,
Disable: []string{"golangci"},
},
expected: `unknown linters: 'golangci', run 'golangci-lint help linters' to see the list of supported linters`,
},
}
var validatePresetsErrorTestCases = []validateErrorTestCase{
{
desc: "unknown preset",
cfg: &config.Linters{
EnableAll: false,
Presets: []string{"golangci"},
},
expected: "no such preset \"golangci\": only next presets exist: " +
"(bugs|comment|complexity|error|format|import|metalinter|module|performance|sql|style|test|unused)",
},
{
desc: "presets and enable-all",
cfg: &config.Linters{
EnableAll: true,
Presets: []string{"bugs"},
},
expected: `--presets is incompatible with --enable-all`,
},
}
type validatorTestCase struct {
desc string
cfg *config.Linters
}
var validateLintersNamesTestCases = []validatorTestCase{
{
desc: "no enable no disable",
cfg: &config.Linters{
Enable: nil,
Disable: nil,
},
},
{
desc: "existing enabled linter",
cfg: &config.Linters{
Enable: []string{"gofmt"},
Disable: nil,
},
},
{
desc: "existing disabled linter",
cfg: &config.Linters{
Enable: nil,
Disable: []string{"gofmt"},
},
},
}
var validatePresetsTestCases = []validatorTestCase{
{
desc: "known preset",
cfg: &config.Linters{
EnableAll: false,
Presets: []string{"bugs"},
},
},
{
desc: "enable-all and no presets",
cfg: &config.Linters{
EnableAll: true,
Presets: nil,
},
},
{
desc: "no presets",
cfg: &config.Linters{
EnableAll: false,
Presets: nil,
},
},
}
func TestValidator_Validate(t *testing.T) {
m, err := NewManager(nil, nil, NewLinterBuilder())
require.NoError(t, err)
v := NewValidator(m)
var testCases []validatorTestCase
testCases = append(testCases, validateLintersNamesTestCases...)
testCases = append(testCases, validatePresetsTestCases...)
for _, test := range testCases {
test := test
t.Run(test.desc, func(t *testing.T) {
t.Parallel()
err := v.Validate(&config.Config{Linters: *test.cfg})
require.NoError(t, err)
})
}
}
func TestValidator_Validate_error(t *testing.T) {
m, err := NewManager(nil, nil, NewLinterBuilder())
require.NoError(t, err)
v := NewValidator(m)
var testCases []validateErrorTestCase
testCases = append(testCases, validateLintersNamesErrorTestCases...)
testCases = append(testCases, validatePresetsErrorTestCases...)
for _, test := range testCases {
test := test
t.Run(test.desc, func(t *testing.T) {
t.Parallel()
err := v.Validate(&config.Config{Linters: *test.cfg})
require.Error(t, err)
require.EqualError(t, err, test.expected)
})
}
}
func TestValidator_validateLintersNames(t *testing.T) {
m, err := NewManager(nil, nil, NewLinterBuilder())
require.NoError(t, err)
v := NewValidator(m)
for _, test := range validateLintersNamesTestCases {
test := test
t.Run(test.desc, func(t *testing.T) {
t.Parallel()
err := v.validateLintersNames(test.cfg)
require.NoError(t, err)
})
}
}
func TestValidator_validateLintersNames_error(t *testing.T) {
m, err := NewManager(nil, nil, NewLinterBuilder())
require.NoError(t, err)
v := NewValidator(m)
for _, test := range validateLintersNamesErrorTestCases {
test := test
t.Run(test.desc, func(t *testing.T) {
t.Parallel()
err := v.validateLintersNames(test.cfg)
require.Error(t, err)
require.EqualError(t, err, test.expected)
})
}
}
func TestValidator_validatePresets(t *testing.T) {
v := NewValidator(nil)
for _, test := range validatePresetsTestCases {
test := test
t.Run(test.desc, func(t *testing.T) {
t.Parallel()
err := v.validatePresets(test.cfg)
require.NoError(t, err)
})
}
}
func TestValidator_validatePresets_error(t *testing.T) {
v := NewValidator(nil)
for _, test := range validatePresetsErrorTestCases {
test := test
t.Run(test.desc, func(t *testing.T) {
t.Parallel()
err := v.validatePresets(test.cfg)
require.Error(t, err)
require.EqualError(t, err, test.expected)
})
}
}
func TestValidator_alternativeNamesDeprecation(t *testing.T) {
t.Setenv(logutils.EnvTestRun, "0")
log := logutils.NewMockLog().
OnWarnf("The name %q is deprecated. The linter has been renamed to: %s.", "vet", "govet").
OnWarnf("The name %q is deprecated. The linter has been renamed to: %s.", "vetshadow", "govet").
OnWarnf("The name %q is deprecated. The linter has been renamed to: %s.", "logrlint", "loggercheck").
OnWarnf("The linter named %q is deprecated. It has been split into: %s.", "megacheck", "gosimple, staticcheck, unused").
OnWarnf("The name %q is deprecated. The linter has been renamed to: %s.", "gas", "gosec")
m, err := NewManager(log, nil, NewLinterBuilder())
require.NoError(t, err)
v := NewValidator(m)
cfg := &config.Linters{
Enable: []string{"vet", "vetshadow", "logrlint"},
Disable: []string{"megacheck", "gas"},
}
err = v.alternativeNamesDeprecation(cfg)
require.NoError(t, err)
}