Timothy J Warren
fe1c54317e
Some checks failed
timw4mail/gilo/pipeline/head There was a failure building this commit
80 lines
1.6 KiB
Go
80 lines
1.6 KiB
Go
package editor
|
|
|
|
import (
|
|
"testing"
|
|
gilo2 "timshome.page/gilo/internal/gilo"
|
|
"timshome.page/gilo/key"
|
|
)
|
|
|
|
type moveCursor struct {
|
|
keys []string
|
|
withFile bool
|
|
cursor *gilo2.Point
|
|
}
|
|
|
|
var cursorTests = []moveCursor{
|
|
{[]string{string(key.Esc)}, false, gilo2.DefaultPoint()},
|
|
{[]string{keyRight}, true, gilo2.NewPoint(1, 0)},
|
|
{[]string{keyDown, keyEnd}, true, gilo2.NewPoint(14, 1)},
|
|
{[]string{keyEnd, keyHome}, true, gilo2.DefaultPoint()},
|
|
{[]string{keyRight, keyLeft}, true, gilo2.DefaultPoint()},
|
|
{[]string{keyDown, keyUp}, true, gilo2.DefaultPoint()},
|
|
// {[]string{keyPageUp}, true, gilo.DefaultPoint()},
|
|
}
|
|
|
|
func TestMoveCursor(t *testing.T) {
|
|
for _, test := range cursorTests {
|
|
e := NewEditor()
|
|
|
|
if test.withFile {
|
|
e.Open("editor.go")
|
|
}
|
|
|
|
for _, k := range test.keys {
|
|
e.moveCursor(k)
|
|
}
|
|
want := test.cursor
|
|
got := e.cursor
|
|
|
|
if got.X != want.X || got.Y != want.Y {
|
|
t.Errorf("Output %v not equal to expected %v for input %q", got, want, test.keys)
|
|
}
|
|
}
|
|
}
|
|
|
|
type seqTest struct {
|
|
input string
|
|
expected string
|
|
}
|
|
|
|
var seqTests = []seqTest{
|
|
{"OH", keyHome},
|
|
{"OF", keyEnd},
|
|
{"[A", keyUp},
|
|
{"[B", keyDown},
|
|
{"[C", keyRight},
|
|
{"[D", keyLeft},
|
|
{"[H", keyHome},
|
|
{"[F", keyEnd},
|
|
{"[1~", keyHome},
|
|
{"[3~", keyDelete},
|
|
{"[4~", keyEnd},
|
|
{"[5~", keyPageUp},
|
|
{"[6~", keyPageDown},
|
|
{"[7~", keyHome},
|
|
{"[8~", keyEnd},
|
|
{"OQ", string(key.Esc)},
|
|
{"XZ", string(key.Esc)},
|
|
}
|
|
|
|
func TestEscToKey(t *testing.T) {
|
|
for _, test := range seqTests {
|
|
got := escSeqToKey([]rune(test.input))
|
|
want := test.expected
|
|
|
|
if got != want {
|
|
t.Errorf("Got %s for input %s, expected %s", got, test.input, want)
|
|
}
|
|
}
|
|
}
|