mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 09:57:51 +08:00
4fcffc5671
The remaining few uses are in some of the tests, which will be removed later. This addresses #645.
117 lines
2.5 KiB
Go
117 lines
2.5 KiB
Go
package edit
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"reflect"
|
|
"regexp"
|
|
"sort"
|
|
"testing"
|
|
|
|
"src.elv.sh/pkg/cli/term"
|
|
"src.elv.sh/pkg/store/storedefs"
|
|
"src.elv.sh/pkg/testutil"
|
|
"src.elv.sh/pkg/ui"
|
|
)
|
|
|
|
func TestLocationAddon(t *testing.T) {
|
|
f := setup(t, storeOp(func(s storedefs.Store) {
|
|
s.AddDir(`C:\usr\bin`, 1)
|
|
s.AddDir(`C:\tmp`, 1)
|
|
s.AddDir(`C:\home\elf`, 1)
|
|
}))
|
|
|
|
evals(f.Evaler,
|
|
`set edit:location:pinned = ['C:\opt']`,
|
|
`set edit:location:hidden = ['C:\tmp']`)
|
|
f.TTYCtrl.Inject(term.K('L', ui.Ctrl))
|
|
|
|
f.TestTTY(t,
|
|
"~> \n",
|
|
" LOCATION ", Styles,
|
|
"********** ", term.DotHere, "\n",
|
|
` * C:\opt `+"\n", Styles,
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
` 10 C:\home\elf`+"\n",
|
|
` 10 C:\usr\bin`,
|
|
)
|
|
}
|
|
|
|
func TestLocationAddon_Workspace(t *testing.T) {
|
|
f := setup(t, storeOp(func(s storedefs.Store) {
|
|
s.AddDir(`C:\usr\bin`, 1)
|
|
s.AddDir(`ws\bin`, 1)
|
|
s.AddDir(`other-ws\bin`, 1)
|
|
}))
|
|
|
|
testutil.ApplyDir(
|
|
testutil.Dir{
|
|
"ws1": testutil.Dir{
|
|
"bin": testutil.Dir{},
|
|
"tmp": testutil.Dir{}}})
|
|
err := os.Chdir(`ws1\tmp`)
|
|
if err != nil {
|
|
t.Skip("chdir:", err)
|
|
}
|
|
|
|
evals(f.Evaler,
|
|
`set edit:location:workspaces = [&ws='`+
|
|
regexp.QuoteMeta(f.Home)+`\\'ws.]`)
|
|
|
|
f.TTYCtrl.Inject(term.K('L', ui.Ctrl))
|
|
f.TestTTY(t,
|
|
`~\ws1\tmp> `+"\n",
|
|
" LOCATION ", Styles,
|
|
"********** ", term.DotHere, "\n",
|
|
` 10 ws\bin `+"\n", Styles,
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
` 10 C:\usr\bin`,
|
|
)
|
|
|
|
f.TTYCtrl.Inject(term.K(ui.Enter))
|
|
f.TestTTY(t, `~\ws1\bin> `, term.DotHere)
|
|
}
|
|
|
|
func TestLocation_AddDir(t *testing.T) {
|
|
f := setup(t)
|
|
|
|
testutil.ApplyDir(
|
|
testutil.Dir{
|
|
"bin": testutil.Dir{},
|
|
"ws1": testutil.Dir{
|
|
"bin": testutil.Dir{}}})
|
|
evals(f.Evaler,
|
|
`set edit:location:workspaces = [&ws='`+
|
|
regexp.QuoteMeta(f.Home)+`\\'ws.]`)
|
|
|
|
chdir := func(path string) {
|
|
err := f.Evaler.Chdir(path)
|
|
if err != nil {
|
|
t.Skip("chdir:", err)
|
|
}
|
|
}
|
|
chdir("bin")
|
|
chdir(`..\ws1\bin`)
|
|
|
|
entries, err := f.Store.Dirs(map[string]struct{}{})
|
|
if err != nil {
|
|
t.Error("unable to list dir history:", err)
|
|
}
|
|
dirs := make([]string, len(entries))
|
|
for i, entry := range entries {
|
|
dirs[i] = entry.Path
|
|
}
|
|
|
|
wantDirs := []string{
|
|
filepath.Join(f.Home, "bin"),
|
|
filepath.Join(f.Home, "ws1", "bin"),
|
|
filepath.Join("ws", "bin"),
|
|
}
|
|
|
|
sort.Strings(dirs)
|
|
sort.Strings(wantDirs)
|
|
if !reflect.DeepEqual(dirs, wantDirs) {
|
|
t.Errorf("got dirs %v, want %v", dirs, wantDirs)
|
|
}
|
|
}
|