2022-10-16 14:31:42 +02:00
|
|
|
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 @.",
|
2023-05-21 09:00:29 +02:00
|
|
|
ExtraCmdArgs: []string{},
|
2022-10-16 14:31:42 +02:00
|
|
|
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().
|
2022-12-27 07:27:36 +02:00
|
|
|
Focus().
|
|
|
|
Lines(
|
2022-12-27 12:25:11 +02:00
|
|
|
Contains("master").IsSelected(),
|
2022-12-27 07:27:36 +02:00
|
|
|
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-24 08:48:57 +02:00
|
|
|
|
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
|
|
|
)
|
2022-10-16 14:31:42 +02:00
|
|
|
},
|
|
|
|
})
|