-
Notifications
You must be signed in to change notification settings - Fork 5
/
nargs_test.go
90 lines (87 loc) · 2.79 KB
/
nargs_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
package nargs
import (
"reflect"
"testing"
)
func TestCheckForUnusedFunctionArgs(t *testing.T) {
defaultFlags := Flags{
IncludeNamedReturns: false,
IncludeReceivers: false,
IncludeTests: true,
SetExitStatus: true,
}
type args struct {
cliArgs []string
flags Flags
}
tests := []struct {
name string
args args
wantResults []string
wantExitWithStatus bool
wantErr bool
}{
{name: "Success (file with no errors), default flags",
args: args{
cliArgs: []string{"testdata/success.go"},
flags: defaultFlags,
},
// Even though setExitStatus is true, no errors were found.
// Hence, we do not want to exit with a nonzero exit code.
wantExitWithStatus: false,
wantErr: false,
},
{name: "File with errors, default flags",
args: args{
cliArgs: []string{"testdata/test.go"},
flags: defaultFlags,
},
wantResults: []string{
"testdata/test.go:6 funcOne contains unused parameter c\n",
"testdata/test.go:13 funcTwo contains unused parameter z\n",
"testdata/test.go:31 closureOne contains unused parameter v\n",
"testdata/test.go:39 unusedFunc contains unused parameter f\n",
"testdata/test.go:43 closureTwo contains unused parameter i\n",
},
wantExitWithStatus: true,
wantErr: false,
},
{name: "File with errors, include named returns",
args: args{
cliArgs: []string{"testdata/test.go"},
flags: Flags{
IncludeNamedReturns: true,
IncludeReceivers: true,
IncludeTests: true,
SetExitStatus: true,
},
},
wantResults: []string{
"testdata/test.go:6 funcOne contains unused parameter c\n",
"testdata/test.go:13 funcTwo contains unused parameter z\n",
"testdata/test.go:19 funcThree contains unused parameter recv\n",
"testdata/test.go:25 funcFour contains unused parameter namedReturn\n",
"testdata/test.go:31 closureOne contains unused parameter v\n",
"testdata/test.go:39 unusedFunc contains unused parameter f\n",
"testdata/test.go:43 closureTwo contains unused parameter i\n",
},
wantExitWithStatus: true,
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotResults, gotExitWithStatus, err := CheckForUnusedFunctionArgs(tt.args.cliArgs, tt.args.flags)
if (err != nil) != tt.wantErr {
t.Errorf("CheckForUnusedFunctionArgs() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(gotResults, tt.wantResults) {
t.Errorf("CheckForUnusedFunctionArgs()\ngot = %v,\nwant %v", gotResults, tt.wantResults)
}
if gotExitWithStatus != tt.wantExitWithStatus {
t.Errorf("CheckForUnusedFunctionArgs() gotExitWithStatus = %v, want %v", gotExitWithStatus, tt.wantExitWithStatus)
}
})
}
}