-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy patheditor_test.go
97 lines (91 loc) · 2.71 KB
/
editor_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
package editor
import (
"reflect"
"testing"
)
func TestEditor(t *testing.T) {
filename := "README.md"
for k, v := range map[string][]string{
"": {"nano", filename},
"nvim": {"nvim", filename},
"vim": {"vim", filename},
"vscode --foo": {"vscode", "--foo", filename},
"nvim -a -b": {"nvim", "-a", "-b", filename},
} {
t.Run(k, func(t *testing.T) {
t.Setenv("EDITOR", k)
cmd, _ := Cmd("X", "README.md")
got := cmd.Args
if !reflect.DeepEqual(got, v) {
t.Fatalf("expected %v; got %v", v, got)
}
})
}
t.Run("with line number", func(t *testing.T) {
for k, v := range map[string][]string{
"": {"nano", "+12", filename},
"nvim": {"nvim", "+12", filename},
"vim": {"vim", "+12", filename},
"vscode --foo": {"vscode", "--foo", filename},
"nvim -a -b": {"nvim", "-a", "-b", "+12", filename},
"code --foo": {"code", "--foo", "--goto", filename + ":12"},
} {
t.Run(k, func(t *testing.T) {
t.Setenv("EDITOR", k)
cmd, _ := Cmd("X", "README.md", LineNumber(12))
got := cmd.Args
if !reflect.DeepEqual(got, v) {
t.Fatalf("expected %v; got %v", v, got)
}
})
}
})
t.Run("with end of line", func(t *testing.T) {
for k, v := range map[string][]string{
"": {"nano", filename},
"nvim": {"nvim", "+norm! $", filename},
"vim": {"vim", "+norm! $", filename},
"vscode --foo": {"vscode", "--foo", filename},
"nvim -a -b": {"nvim", "-a", "-b", "+norm! $", filename},
"code --foo": {"code", "--foo", filename},
} {
t.Run(k, func(t *testing.T) {
t.Setenv("EDITOR", k)
cmd, _ := Cmd("X", "README.md", EndOfLine())
got := cmd.Args
if !reflect.DeepEqual(got, v) {
t.Fatalf("expected %v; got %v", v, got)
}
})
}
})
t.Run("with line and end of line", func(t *testing.T) {
for k, v := range map[string][]string{
"": {"nano", "+3", filename},
"nvim": {"nvim", "+norm! $", "+3", filename},
"vim": {"vim", "+norm! $", "+3", filename},
"vscode --foo": {"vscode", "--foo", filename},
"nvim -a -b": {"nvim", "-a", "-b", "+norm! $", "+3", filename},
"code --foo": {"code", "--foo", "--goto", filename + ":3"},
} {
t.Run(k, func(t *testing.T) {
t.Setenv("EDITOR", k)
cmd, _ := Cmd("X", "README.md", EndOfLine(), LineNumber(3))
got := cmd.Args
if !reflect.DeepEqual(got, v) {
t.Fatalf("expected %v; got %v", v, got)
}
})
}
})
t.Run("inside snap", func(t *testing.T) {
t.Setenv("SNAP_REVISION", "10")
got, err := Cmd("X", "foo")
if err == nil {
t.Fatalf("expected an error, got nil")
}
if got != nil {
t.Fatalf("should have returned nil, got %v", got)
}
})
}