-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuffer_test.go
More file actions
219 lines (193 loc) · 5.12 KB
/
buffer_test.go
File metadata and controls
219 lines (193 loc) · 5.12 KB
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
207
208
209
210
211
212
213
214
215
216
217
218
package wig
import (
"os"
"testing"
"github.com/firstrow/wig/testutils"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestBuffer(t *testing.T) {
buf := NewBuffer()
assert.Equal(t, 1, buf.Lines.Len)
buf.Lines.PushFront(Line{})
assert.Equal(t, 2, buf.Lines.Len)
}
func TestBufferReadFile(t *testing.T) {
buf, err := BufferReadFile(testutils.Filepath("buffer_test.txt"))
if err != nil {
t.Errorf("expected nil, got %v", err)
}
assert.Equal(t, 5, buf.Lines.Len)
}
func TestLineByNum(t *testing.T) {
buf, err := BufferReadFile(testutils.Filepath("buffer_test.txt"))
if err != nil {
t.Errorf("expected nil, got %v", err)
}
line := CursorLineByNum(buf, 1)
assert.Equal(t, "line two\n", string(line.Value))
}
func TestSelectionDelete(t *testing.T) {
e := NewEditor(testutils.Viewport, nil)
buf, _ := e.OpenFile(testutils.Filepath("buffer_test.txt"))
e.ActiveWindow().ShowBuffer(buf)
buf.Selection = &Selection{
Start: Cursor{Line: 0, Char: 0},
End: Cursor{Line: 1, Char: 0},
}
ctx := Context{
Editor: e,
Buf: buf,
}
SelectionDelete(ctx)
line := CursorLineByNum(buf, 0)
assert.Equal(t, "ine two\n", string(line.Value))
}
func TestSaveFile(t *testing.T) {
tmpFilePath := "/tmp/wcwig_test.go"
testFilePath := testutils.Filepath("buffer_test.txt")
err := copyFile(testFilePath, tmpFilePath)
assert.NoError(t, err)
buf, err := BufferReadFile(tmpFilePath)
assert.NoError(t, err)
err = buf.Save()
err = buf.Save()
if err != nil {
t.Errorf("expected nil, got %v", err)
}
buf, err = BufferReadFile(tmpFilePath)
assert.NoError(t, err)
assert.Equal(t, 5, buf.Lines.Len)
}
func TestWordUnderCusor(t *testing.T) {
e := NewEditor(testutils.Viewport, nil)
buf, _ := e.OpenFile(testutils.Filepath("buffer_test.txt"))
e.ActiveWindow().ShowBuffer(buf)
buf.Selection = &Selection{
Start: Cursor{Line: 0, Char: 0},
End: Cursor{Line: 1, Char: 0},
}
ctx := Context{
Editor: e,
Buf: buf,
}
SelectionDelete(ctx)
line := CursorLineByNum(buf, 0)
assert.Equal(t, "ine two\n", string(line.Value))
}
func TestTextInsertNewLine(t *testing.T) {
e := NewEditor(testutils.Viewport, nil)
buf, _ := e.OpenFile(testutils.Filepath("buffer_test.txt"))
e.ActiveWindow().ShowBuffer(buf)
defer CmdKillBuffer(e.NewContext())
expected := `line
one
line two
line three
line four
line five
`
TextInsert(buf, buf.Lines.First(), 4, "\n")
require.Equal(t, expected, string(buf.String()))
}
func TestTextInsertDelete(t *testing.T) {
e := NewEditor(testutils.Viewport, nil)
buf, _ := e.OpenFile(testutils.Filepath("buffer_test.txt"))
e.ActiveWindow().ShowBuffer(buf)
defer CmdKillBuffer(e.NewContext())
TextInsert(buf, buf.Lines.First(), 4, " test")
require.Equal(t, "line test one\n", string(buf.Lines.First().Value))
TextDelete(buf, &Selection{
Start: Cursor{Line: 0, Char: 4},
End: Cursor{Line: 0, Char: 9},
})
require.Equal(t, "line one\n", string(buf.Lines.First().Value))
}
func TestTextDeleteMultiline(t *testing.T) {
e := NewEditor(testutils.Viewport, nil)
buf, _ := e.OpenFile(testutils.Filepath("buffer_test.txt"))
e.ActiveWindow().ShowBuffer(buf)
defer CmdKillBuffer(e.NewContext())
TextDelete(buf, &Selection{
Start: Cursor{Line: 0, Char: 0},
End: Cursor{Line: 1, Char: 0},
})
expected := `line two
line three
line four
line five
`
require.Equal(t, expected, buf.String())
}
func TestTextDeleteMultiline2(t *testing.T) {
e := NewEditor(testutils.Viewport, nil)
buf, _ := e.OpenFile(testutils.Filepath("buffer_test.txt"))
e.ActiveWindow().ShowBuffer(buf)
defer CmdKillBuffer(e.NewContext())
TextDelete(buf, &Selection{
Start: Cursor{Line: 0, Char: 0},
End: Cursor{Line: 2, Char: 5},
})
expected := `three
line four
line five
`
require.Equal(t, expected, buf.String())
}
func TestTextDeleteToEOL(t *testing.T) {
e := NewEditor(testutils.Viewport, nil)
buf, _ := e.OpenFile(testutils.Filepath("buffer_test.txt"))
e.ActiveWindow().ShowBuffer(buf)
defer CmdKillBuffer(e.NewContext())
TextDelete(buf, &Selection{
Start: Cursor{Line: 0, Char: 0},
End: Cursor{Line: 0, Char: 8},
})
expected := `
line two
line three
line four
line five
`
require.Equal(t, expected, buf.String())
}
func TestTextDelete_EOL(t *testing.T) {
e := NewEditor(testutils.Viewport, nil)
buf, _ := e.OpenFile(testutils.Filepath("buffer_test.txt"))
e.ActiveWindow().ShowBuffer(buf)
defer CmdKillBuffer(e.NewContext())
TextDelete(buf, &Selection{
Start: Cursor{Line: 0, Char: 0},
End: Cursor{Line: 0, Char: 9},
})
expected := `line two
line three
line four
line five
`
require.Equal(t, expected, buf.String())
}
func TestTextDelete_EOL_EOF(t *testing.T) {
e := NewEditor(testutils.Viewport, nil)
buf, _ := e.OpenFile(testutils.Filepath("buffer_test.txt"))
e.ActiveWindow().ShowBuffer(buf)
defer CmdKillBuffer(e.NewContext())
// delete last line
TextDelete(buf, &Selection{
Start: Cursor{Line: 4, Char: 0},
End: Cursor{Line: 4, Char: 10},
})
expected := `line one
line two
line three
line four
`
require.Equal(t, expected, buf.String())
}
func copyFile(src string, dst string) error {
data, err := os.ReadFile(src)
if err != nil {
return err
}
return os.WriteFile(dst, data, 0644)
}