-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autocmpl_test.go
78 lines (67 loc) · 1.42 KB
/
autocmpl_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
package main
import (
"strings"
"testing"
)
func TestCompletionBash(t *testing.T) {
tests := []struct {
summary string
input []string
expected string
}{
{
summary: "no arguments",
input: []string{""},
expected: strings.Join(validCommands, " "),
},
{
summary: "commands - incomplete",
input: []string{"f"},
expected: strings.Join(validCommands, " "),
},
{
summary: "commands - incomplete",
input: []string{"flas"},
expected: strings.Join(validCommands, " "),
},
{
summary: "commands",
input: []string{"flash"},
expected: "",
},
{
summary: "flag",
input: []string{"flash", "-size"},
expected: "none short full",
},
}
for _, test := range tests {
if g, e := completionBash(test.input), test.expected; g != e {
t.Errorf("got %q, want %q (%s)", g, e, test.summary)
}
}
}
func TestCompletionBashFlags(t *testing.T) {
tests := []struct {
summary string
input []string
expected string
}{
{
summary: "flag - incomplete",
input: []string{"flash", "-prog"},
expected: "-programmer",
},
{
summary: "flag - incomplete && double-dash",
input: []string{"flash", "--prog"},
expected: "--programmer",
},
}
for _, test := range tests {
got := completionBash(test.input)
if !strings.Contains(got, test.expected) {
t.Errorf("%q is not contained in %q (%s)", test.expected, got, test.summary)
}
}
}