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
|
package main
import (
"os"
"sort"
"testing"
"github.com/posener/complete/v2"
)
func TestPredictions(t *testing.T) {
t.Parallel()
tests := []struct {
name string
predictor complete.Predictor
prefix string
want []string
}{
{
name: "predict tests ok",
predictor: predictTest,
want: []string{"TestPredictions", "Example"},
},
{
name: "predict benchmark ok",
predictor: predictBenchmark,
want: []string{"BenchmarkFake"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.predictor.Predict(tt.prefix)
if !equal(got, tt.want) {
t.Errorf("Failed %s: got: %q, want: %q", t.Name(), got, tt.want)
}
})
}
}
func BenchmarkFake(b *testing.B) {}
func Example() {
os.Setenv("COMP_LINE", "go ru")
os.Setenv("COMP_POINT", "5")
main()
// output: run
}
func equal(s1, s2 []string) bool {
sort.Strings(s1)
sort.Strings(s2)
if len(s1) != len(s2) {
return false
}
for i := range s1 {
if s1[i] != s2[i] {
return false
}
}
return true
}
|