1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-10 04:07:18 +02:00
lazygit/pkg/integration/tests/branch/checkout_by_name.go

41 lines
1.1 KiB
Go
Raw Normal View History

package branch
import (
"github.com/jesseduffield/lazygit/pkg/config"
. "github.com/jesseduffield/lazygit/pkg/integration/components"
)
var CheckoutByName = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Try to checkout branch by name. Verify that it also works on the branch with the special name @.",
ExtraCmdArgs: []string{},
Skip: false,
SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shell.
CreateNCommits(3).
NewBranch("@").
Checkout("master").
EmptyCommit("blah")
},
2022-12-27 12:47:37 +02:00
Run: func(t *TestDriver, keys config.KeybindingConfig) {
2022-12-27 12:35:36 +02:00
t.Views().Branches().
Focus().
Lines(
2022-12-27 12:25:11 +02:00
Contains("master").IsSelected(),
Contains("@"),
).
SelectNextItem().
2022-12-27 12:25:11 +02:00
Press(keys.Branches.CheckoutBranchByName).
Tap(func() {
2022-12-28 02:00:22 +02:00
t.ExpectPopup().Prompt().Title(Equals("Branch name:")).Type("new-branch").Confirm()
2022-12-28 02:00:22 +02:00
t.ExpectPopup().Alert().Title(Equals("Branch not found")).Content(Equals("Branch not found. Create a new branch named new-branch?")).Confirm()
2022-12-27 12:25:11 +02:00
}).
2022-12-26 02:12:56 +02:00
Lines(
2022-12-27 12:25:11 +02:00
MatchesRegexp(`\*.*new-branch`).IsSelected(),
2022-12-26 02:12:56 +02:00
Contains("master"),
Contains("@"),
2022-12-27 12:25:11 +02:00
)
},
})