-
Notifications
You must be signed in to change notification settings - Fork 348
/
completion_test.go
206 lines (201 loc) · 6.85 KB
/
completion_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
package prompt
import (
"reflect"
"testing"
)
func TestFormatShortSuggestion(t *testing.T) {
var scenarioTable = []struct {
in []Suggest
expected []Suggest
max int
exWidth int
}{
{
in: []Suggest{
{Text: "foo"},
{Text: "bar"},
{Text: "fuga"},
},
expected: []Suggest{
{Text: " foo "},
{Text: " bar "},
{Text: " fuga "},
},
max: 100,
exWidth: 6,
},
{
in: []Suggest{
{Text: "apple", Description: "This is apple."},
{Text: "banana", Description: "This is banana."},
{Text: "coconut", Description: "This is coconut."},
},
expected: []Suggest{
{Text: " apple ", Description: " This is apple. "},
{Text: " banana ", Description: " This is banana. "},
{Text: " coconut ", Description: " This is coconut. "},
},
max: 100,
exWidth: len(" apple " + " This is apple. "),
},
{
in: []Suggest{
{Text: "This is apple."},
{Text: "This is banana."},
{Text: "This is coconut."},
},
expected: []Suggest{
{Text: " Thi... "},
{Text: " Thi... "},
{Text: " Thi... "},
},
max: 8,
exWidth: 8,
},
{
in: []Suggest{
{Text: "This is apple."},
{Text: "This is banana."},
{Text: "This is coconut."},
},
expected: []Suggest{},
max: 3,
exWidth: 0,
},
{
in: []Suggest{
{Text: "--all-namespaces", Description: "-------------------------------------------------------------------------------------------------------------------------------------------"},
{Text: "--allow-missing-template-keys", Description: "-----------------------------------------------------------------------------------------------------------------------------------------------"},
{Text: "--export", Description: "----------------------------------------------------------------------------------------------------------"},
{Text: "-f", Description: "-----------------------------------------------------------------------------------"},
{Text: "--filename", Description: "-----------------------------------------------------------------------------------"},
{Text: "--include-extended-apis", Description: "------------------------------------------------------------------------------------"},
},
expected: []Suggest{
{Text: " --all-namespaces ", Description: " --------------... "},
{Text: " --allow-missing-template-keys ", Description: " --------------... "},
{Text: " --export ", Description: " --------------... "},
{Text: " -f ", Description: " --------------... "},
{Text: " --filename ", Description: " --------------... "},
{Text: " --include-extended-apis ", Description: " --------------... "},
},
max: 50,
exWidth: len(" --include-extended-apis " + " ---------------..."),
},
{
in: []Suggest{
{Text: "--all-namespaces", Description: "If present, list the requested object(s) across all namespaces. Namespace in current context is ignored even if specified with --namespace."},
{Text: "--allow-missing-template-keys", Description: "If true, ignore any errors in templates when a field or map key is missing in the template. Only applies to golang and jsonpath output formats."},
{Text: "--export", Description: "If true, use 'export' for the resources. Exported resources are stripped of cluster-specific information."},
{Text: "-f", Description: "Filename, directory, or URL to files identifying the resource to get from a server."},
{Text: "--filename", Description: "Filename, directory, or URL to files identifying the resource to get from a server."},
{Text: "--include-extended-apis", Description: "If true, include definitions of new APIs via calls to the API server. [default true]"},
},
expected: []Suggest{
{Text: " --all-namespaces ", Description: " If present, list the requested object(s) across all namespaces. Namespace in current context is ignored even if specified with --namespace. "},
{Text: " --allow-missing-template-keys ", Description: " If true, ignore any errors in templates when a field or map key is missing in the template. Only applies to golang and jsonpath output formats. "},
{Text: " --export ", Description: " If true, use 'export' for the resources. Exported resources are stripped of cluster-specific information. "},
{Text: " -f ", Description: " Filename, directory, or URL to files identifying the resource to get from a server. "},
{Text: " --filename ", Description: " Filename, directory, or URL to files identifying the resource to get from a server. "},
{Text: " --include-extended-apis ", Description: " If true, include definitions of new APIs via calls to the API server. [default true] "},
},
max: 500,
exWidth: len(" --include-extended-apis " + " If true, include definitions of new APIs via calls to the API server. [default true] "),
},
}
for i, s := range scenarioTable {
actual, width := formatSuggestions(s.in, s.max)
if width != s.exWidth {
t.Errorf("[scenario %d] Want %d but got %d\n", i, s.exWidth, width)
}
if !reflect.DeepEqual(actual, s.expected) {
t.Errorf("[scenario %d] Want %#v, but got %#v\n", i, s.expected, actual)
}
}
}
func TestFormatText(t *testing.T) {
var scenarioTable = []struct {
in []string
expected []string
max int
exWidth int
}{
{
in: []string{
"",
"",
},
expected: []string{
"",
"",
},
max: 10,
exWidth: 0,
},
{
in: []string{
"apple",
"banana",
"coconut",
},
expected: []string{
"",
"",
"",
},
max: 2,
exWidth: 0,
},
{
in: []string{
"apple",
"banana",
"coconut",
},
expected: []string{
"",
"",
"",
},
max: len(" " + " " + shortenSuffix),
exWidth: 0,
},
{
in: []string{
"apple",
"banana",
"coconut",
},
expected: []string{
" apple ",
" banana ",
" coconut ",
},
max: 100,
exWidth: len(" coconut "),
},
{
in: []string{
"apple",
"banana",
"coconut",
},
expected: []string{
" a... ",
" b... ",
" c... ",
},
max: 6,
exWidth: 6,
},
}
for i, s := range scenarioTable {
actual, width := formatTexts(s.in, s.max, " ", " ")
if width != s.exWidth {
t.Errorf("[scenario %d] Want %d but got %d\n", i, s.exWidth, width)
}
if !reflect.DeepEqual(actual, s.expected) {
t.Errorf("[scenario %d] Want %#v, but got %#v\n", i, s.expected, actual)
}
}
}