2022-08-14 12:13:39 +02:00
|
|
|
package custom_commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
|
|
)
|
|
|
|
|
|
|
|
var MultiplePrompts = NewIntegrationTest(NewIntegrationTestArgs{
|
|
|
|
Description: "Using a custom command with multiple prompts",
|
|
|
|
ExtraCmdArgs: "",
|
|
|
|
Skip: false,
|
2022-08-14 13:33:47 +02:00
|
|
|
SetupRepo: func(shell *Shell) {
|
|
|
|
shell.EmptyCommit("blah")
|
|
|
|
},
|
2022-08-14 12:13:39 +02:00
|
|
|
SetupConfig: func(cfg *config.AppConfig) {
|
|
|
|
cfg.UserConfig.CustomCommands = []config.CustomCommand{
|
|
|
|
{
|
|
|
|
Key: "a",
|
|
|
|
Context: "files",
|
|
|
|
Command: `echo "{{index .PromptResponses 1}}" > {{index .PromptResponses 0}}`,
|
|
|
|
Prompts: []config.CustomCommandPrompt{
|
|
|
|
{
|
|
|
|
Type: "input",
|
|
|
|
Title: "Enter a file name",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: "menu",
|
|
|
|
Title: "Choose file content",
|
|
|
|
Options: []config.CustomCommandMenuOption{
|
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Description: "Foo",
|
|
|
|
Value: "FOO",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "bar",
|
|
|
|
Description: "Bar",
|
|
|
|
Value: "BAR",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "baz",
|
|
|
|
Description: "Baz",
|
|
|
|
Value: "BAZ",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Type: "confirm",
|
|
|
|
Title: "Are you sure?",
|
|
|
|
Body: "Are you REALLY sure you want to make this file? Up to you buddy.",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Run: func(
|
|
|
|
shell *Shell,
|
|
|
|
input *Input,
|
|
|
|
keys config.KeybindingConfig,
|
|
|
|
) {
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Model().WorkingTreeFileCount(0)
|
2022-08-14 12:13:39 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Views().Files().
|
|
|
|
IsFocused().
|
|
|
|
Press("a")
|
2022-08-14 12:13:39 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.ExpectPrompt().Title(Equals("Enter a file name")).Type("myfile").Confirm()
|
2022-08-14 12:13:39 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.ExpectMenu().Title(Equals("Choose file content")).Select(Contains("bar")).Confirm()
|
2022-08-14 12:13:39 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.ExpectConfirmation().
|
2022-12-27 01:50:00 +02:00
|
|
|
Title(Equals("Are you sure?")).
|
|
|
|
Content(Equals("Are you REALLY sure you want to make this file? Up to you buddy.")).
|
|
|
|
Confirm()
|
2022-08-14 12:13:39 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Model().WorkingTreeFileCount(1)
|
|
|
|
input.Views().Files().SelectedLine(Contains("myfile"))
|
|
|
|
input.Views().Main().Content(Contains("BAR"))
|
2022-08-14 12:13:39 +02:00
|
|
|
},
|
|
|
|
})
|