summaryrefslogtreecommitdiff
path: root/gocomplete/tests_test.go
blob: f1b294a967693161178e708ddb4bf84361628c55 (plain)
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
package main

import (
	"testing"

	"github.com/posener/complete"
	"os"
)

func TestPredictions(t *testing.T) {
	t.Parallel()

	tests := []struct {
		name       string
		predictor  complete.Predictor
		last       string
		completion []string
	}{
		{
			name:       "predict tests ok",
			predictor:  predictTest,
			completion: []string{"TestPredictions", "Example"},
		},
		{
			name:      "predict tests not found",
			predictor: predictTest,
			last:      "X",
		},
		{
			name:       "predict benchmark ok",
			predictor:  predictBenchmark,
			completion: []string{"BenchmarkFake"},
		},
		{
			name:      "predict benchmarks not found",
			predictor: predictBenchmark,
			last:      "X",
		},
		{
			name:       "predict packages ok",
			predictor:  complete.PredictFunc(predictPackages),
			completion: []string{"./"},
		},
		{
			name:      "predict packages not found",
			predictor: complete.PredictFunc(predictPackages),
			last:      "X",
		},
		{
			name:       "predict runnable ok",
			predictor:  complete.PredictFunc(predictRunnableFiles),
			completion: []string{"./complete.go"},
		},
		{
			name:      "predict runnable not found",
			predictor: complete.PredictFunc(predictRunnableFiles),
			last:      "X",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			a := complete.Args{Last: tt.last}
			got := tt.predictor.Predict(a)
			if want := tt.completion; !equal(got, want) {
				t.Errorf("Failed %s: completion = %q, want %q", t.Name(), got, want)
			}
		})
	}
}

func BenchmarkFake(b *testing.B) {}

func Example() {
	os.Setenv("COMP_LINE", "go ru")
	main()
	// output: run

}

func equal(s1, s2 []string) bool {
	if len(s1) != len(s2) {
		return false
	}
	for i := range s1 {
		if s1[i] != s2[i] {
			return false
		}
	}
	return true
}