mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-11-28 07:21:21 +08:00
e9d328aa16
This allows turning the following pattern in tests: value, cleanup := setupSomething() defer cleanup() into the following: value := setupSomething(t)
162 lines
4.4 KiB
Go
162 lines
4.4 KiB
Go
package edit
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"src.elv.sh/pkg/cli/lscolors"
|
|
"src.elv.sh/pkg/testutil"
|
|
|
|
"src.elv.sh/pkg/cli/term"
|
|
"src.elv.sh/pkg/ui"
|
|
)
|
|
|
|
func TestNavigation(t *testing.T) {
|
|
f := setupNav(t)
|
|
|
|
feedInput(f.TTYCtrl, "put")
|
|
f.TTYCtrl.Inject(term.K('N', ui.Ctrl))
|
|
f.TestTTY(t,
|
|
filepath.Join("~", "d"), "> ",
|
|
"put", Styles,
|
|
"vvv", term.DotHere, "\n",
|
|
" NAVIGATING \n", Styles,
|
|
"************ ",
|
|
" d a \n", Styles,
|
|
"###### ++++++++++++++++++ ",
|
|
" e ", Styles,
|
|
" //////////////////",
|
|
)
|
|
|
|
// Test $edit:selected-file.
|
|
evals(f.Evaler, `file = $edit:selected-file`)
|
|
wantFile := "a"
|
|
if file, _ := f.Evaler.Global().Index("file"); file != wantFile {
|
|
t.Errorf("Got $edit:selected-file %q, want %q", file, wantFile)
|
|
}
|
|
|
|
// Test Alt-Enter: inserts filename without quitting.
|
|
f.TTYCtrl.Inject(term.K(ui.Enter, ui.Alt))
|
|
f.TestTTY(t,
|
|
filepath.Join("~", "d"), "> ",
|
|
"put a", Styles,
|
|
"vvv ", term.DotHere, "\n",
|
|
" NAVIGATING \n", Styles,
|
|
"************ ",
|
|
" d a \n", Styles,
|
|
"###### ++++++++++++++++++ ",
|
|
" e ", Styles,
|
|
" //////////////////",
|
|
)
|
|
|
|
// Test Enter: inserts filename and quits.
|
|
f.TTYCtrl.Inject(term.K(ui.Enter))
|
|
f.TestTTY(t,
|
|
filepath.Join("~", "d"), "> ",
|
|
"put a a", Styles,
|
|
"vvv ", term.DotHere,
|
|
)
|
|
}
|
|
|
|
func TestNavigation_WidthRatio(t *testing.T) {
|
|
f := setupNav(t)
|
|
|
|
evals(f.Evaler, `@edit:navigation:width-ratio = 1 1 1`)
|
|
f.TTYCtrl.Inject(term.K('N', ui.Ctrl))
|
|
f.TestTTY(t,
|
|
filepath.Join("~", "d"), "> ", term.DotHere, "\n",
|
|
" NAVIGATING \n", Styles,
|
|
"************ ",
|
|
" d a \n", Styles,
|
|
"################ ++++++++++++++++ ",
|
|
" e ", Styles,
|
|
" ////////////////",
|
|
)
|
|
}
|
|
|
|
// Test corner case: Inserting a selection when the CLI cursor is not at the
|
|
// start of the edit buffer, but the preceding char is a space, does not
|
|
// insert another space.
|
|
func TestNavigation_EnterDoesNotAddSpaceAfterSpace(t *testing.T) {
|
|
f := setupNav(t)
|
|
|
|
feedInput(f.TTYCtrl, "put ")
|
|
f.TTYCtrl.Inject(term.K('N', ui.Ctrl)) // begin navigation mode
|
|
f.TTYCtrl.Inject(term.K(ui.Down)) // select "e"
|
|
f.TTYCtrl.Inject(term.K(ui.Enter)) // insert the "e" file name
|
|
f.TestTTY(t,
|
|
filepath.Join("~", "d"), "> ",
|
|
"put e", Styles,
|
|
"vvv", term.DotHere,
|
|
)
|
|
}
|
|
|
|
// Test corner case: Inserting a selection when the CLI cursor is at the start
|
|
// of the edit buffer omits the space char prefix.
|
|
func TestNavigation_EnterDoesNotAddSpaceAtStartOfBuffer(t *testing.T) {
|
|
f := setupNav(t)
|
|
|
|
f.TTYCtrl.Inject(term.K('N', ui.Ctrl)) // begin navigation mode
|
|
f.TTYCtrl.Inject(term.K(ui.Enter)) // insert the "a" file name
|
|
f.TestTTY(t,
|
|
filepath.Join("~", "d"), "> ",
|
|
"a", Styles,
|
|
"!", term.DotHere,
|
|
)
|
|
}
|
|
|
|
// Test corner case: Inserting a selection when the CLI cursor is at the start
|
|
// of a line buffer omits the space char prefix.
|
|
func TestNavigation_EnterDoesNotAddSpaceAtStartOfLine(t *testing.T) {
|
|
f := setupNav(t)
|
|
|
|
feedInput(f.TTYCtrl, "put [\n")
|
|
f.TTYCtrl.Inject(term.K('N', ui.Ctrl)) // begin navigation mode
|
|
f.TTYCtrl.Inject(term.K(ui.Enter)) // insert the "a" file name
|
|
f.TestTTY(t,
|
|
filepath.Join("~", "d"), "> ",
|
|
"put [", Styles,
|
|
"vvv b", "\n",
|
|
" a", term.DotHere,
|
|
)
|
|
}
|
|
|
|
// Test corner case: Inserting the "selection" in an empty directory inserts
|
|
// nothing. Regression test for https://b.elv.sh/1169.
|
|
func TestNavigation_EnterDoesNothingInEmptyDir(t *testing.T) {
|
|
f := setupNav(t)
|
|
|
|
feedInput(f.TTYCtrl, "pu")
|
|
f.TTYCtrl.Inject(term.K('N', ui.Ctrl)) // begin navigation mode
|
|
f.TTYCtrl.Inject(term.K(ui.Down)) // select empty directory "e"
|
|
f.TTYCtrl.Inject(term.K(ui.Right)) // move into "e" directory
|
|
f.TTYCtrl.Inject(term.K(ui.Enter, ui.Alt)) // insert nothing since the dir is empty
|
|
f.TTYCtrl.Inject(term.K('t')) // user presses 'a'
|
|
f.TestTTY(t,
|
|
filepath.Join("~", "d", "e"), "> ",
|
|
"put", Styles,
|
|
"vvv", term.DotHere, "\n",
|
|
" NAVIGATING \n", Styles,
|
|
"************ ",
|
|
" a \n", Styles,
|
|
" ",
|
|
" e ", Styles,
|
|
"######",
|
|
)
|
|
}
|
|
|
|
var testDir = testutil.Dir{
|
|
"d": testutil.Dir{
|
|
"a": "",
|
|
"e": testutil.Dir{},
|
|
},
|
|
}
|
|
|
|
func setupNav(c testutil.Cleanuper) *fixture {
|
|
f := setup(c)
|
|
lscolors.SetTestLsColors(c)
|
|
testutil.ApplyDir(testDir)
|
|
testutil.MustChdir("d")
|
|
return f
|
|
}
|