1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/commands/oscommands/os_windows_test.go

82 lines
1.9 KiB
Go
Raw Normal View History

//go:build windows
// +build windows
package oscommands
import (
"testing"
"github.com/cli/safeexec"
2022-01-03 06:15:26 +02:00
"github.com/go-errors/errors"
"github.com/stretchr/testify/assert"
)
2022-01-03 06:15:26 +02:00
// handling this in a separate file because str.ToArgv has different behaviour if we're on windows
func TestOSCommandOpenFileWindows(t *testing.T) {
type scenario struct {
filename string
2021-12-31 01:44:47 +02:00
runner *FakeCmdObjRunner
test func(error)
}
fullCmdPath, _ := safeexec.LookPath("cmd")
scenarios := []scenario{
{
2021-12-31 01:44:47 +02:00
filename: "test",
runner: NewFakeRunner(t).
ExpectArgs([]string{fullCmdPath, "/c", "start", "", "test"}, "", errors.New("error")),
2021-12-31 01:44:47 +02:00
test: func(err error) {
assert.Error(t, err)
},
},
{
2021-12-31 01:44:47 +02:00
filename: "test",
runner: NewFakeRunner(t).
ExpectArgs([]string{fullCmdPath, "/c", "start", "", "test"}, "", nil),
2021-12-31 01:44:47 +02:00
test: func(err error) {
assert.NoError(t, err)
},
},
{
2021-12-31 01:44:47 +02:00
filename: "filename with spaces",
runner: NewFakeRunner(t).
ExpectArgs([]string{fullCmdPath, "/c", "start", "", "filename with spaces"}, "", nil),
2021-12-31 01:44:47 +02:00
test: func(err error) {
assert.NoError(t, err)
},
},
{
2021-12-31 01:44:47 +02:00
filename: "let's_test_with_single_quote",
runner: NewFakeRunner(t).
ExpectArgs([]string{fullCmdPath, "/c", "start", "", "let's_test_with_single_quote"}, "", nil),
2021-12-31 01:44:47 +02:00
test: func(err error) {
assert.NoError(t, err)
},
},
{
2021-12-31 01:44:47 +02:00
filename: "$USER.txt",
runner: NewFakeRunner(t).
ExpectArgs([]string{fullCmdPath, "/c", "start", "", "$USER.txt"}, "", nil),
2021-12-31 01:44:47 +02:00
test: func(err error) {
assert.NoError(t, err)
},
},
}
for _, s := range scenarios {
2021-12-31 01:44:47 +02:00
oSCmd := NewDummyOSCommandWithRunner(s.runner)
platform := &Platform{
OS: "windows",
Shell: "cmd",
ShellArg: "/c",
}
oSCmd.Platform = platform
oSCmd.Cmd.platform = platform
oSCmd.UserConfig.OS.OpenCommand = `start "" {{filename}}`
2021-12-31 01:44:47 +02:00
s.test(oSCmd.OpenFile(s.filename))
}
}