forked from golangci/golangci-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfix_test.go
114 lines (88 loc) · 2.46 KB
/
fix_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
package test
import (
"os"
"os/exec"
"path/filepath"
"testing"
"github.com/stretchr/testify/require"
"github.com/golangci/golangci-lint/test/testshared"
)
// value: "1"
const envKeepTempFiles = "GL_KEEP_TEMP_FILES"
func setupTestFix(t *testing.T) []string {
t.Helper()
testshared.SkipOnWindows(t)
tmpDir := filepath.Join(testdataDir, "fix.tmp")
_ = os.RemoveAll(tmpDir) // cleanup previous runs
if os.Getenv(envKeepTempFiles) == "1" {
t.Logf("Temp dir for fix test: %s", tmpDir)
} else {
t.Cleanup(func() { _ = os.RemoveAll(tmpDir) })
}
sourcesDir := filepath.Join(testdataDir, "fix")
err := exec.Command("cp", "-R", sourcesDir, tmpDir).Run()
require.NoError(t, err)
testshared.InstallGolangciLint(t)
return findSources(t, tmpDir, "in", "*.go")
}
func TestFix(t *testing.T) {
sources := setupTestFix(t)
for _, input := range sources {
input := input
t.Run(filepath.Base(input), func(t *testing.T) {
t.Parallel()
rc := testshared.ParseTestDirectives(t, input)
if rc == nil {
t.Logf("Skipped: %s", input)
return
}
testshared.NewRunnerBuilder(t).
WithArgs("--disable-all",
"--print-issued-lines=false",
"--print-linter-name=false",
"--out-format=line-number",
"--fix").
WithRunContext(rc).
WithTargetPath(input).
Runner().
Run().
ExpectExitCode(rc.ExitCode)
output, err := os.ReadFile(input)
require.NoError(t, err)
expectedOutput, err := os.ReadFile(filepath.Join(testdataDir, "fix", "out", filepath.Base(input)))
require.NoError(t, err)
require.Equal(t, string(expectedOutput), string(output))
})
}
}
func TestFix_pathPrefix(t *testing.T) {
sources := setupTestFix(t)
for _, input := range sources {
input := input
t.Run(filepath.Base(input), func(t *testing.T) {
t.Parallel()
rc := testshared.ParseTestDirectives(t, input)
if rc == nil {
t.Logf("Skipped: %s", input)
return
}
testshared.NewRunnerBuilder(t).
WithArgs("--disable-all",
"--print-issued-lines=false",
"--print-linter-name=false",
"--out-format=line-number",
"--fix",
"--path-prefix=foobar/").
WithRunContext(rc).
WithTargetPath(input).
Runner().
Run().
ExpectExitCode(rc.ExitCode)
output, err := os.ReadFile(input)
require.NoError(t, err)
expectedOutput, err := os.ReadFile(filepath.Join(testdataDir, "fix", "out", filepath.Base(input)))
require.NoError(t, err)
require.Equal(t, string(expectedOutput), string(output))
})
}
}