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 @.",
|
|
|
|
ExtraCmdArgs: "",
|
|
|
|
Skip: false,
|
|
|
|
SetupConfig: func(config *config.AppConfig) {},
|
|
|
|
SetupRepo: func(shell *Shell) {
|
|
|
|
shell.
|
|
|
|
CreateNCommits(3).
|
|
|
|
NewBranch("@").
|
|
|
|
Checkout("master").
|
|
|
|
EmptyCommit("blah")
|
|
|
|
},
|
|
|
|
Run: func(shell *Shell, input *Input, assert *Assert, keys config.KeybindingConfig) {
|
2022-12-26 07:49:54 +02:00
|
|
|
input.SwitchToBranchesView()
|
2022-10-16 14:31:42 +02:00
|
|
|
|
2022-12-26 07:49:54 +02:00
|
|
|
assert.CurrentView().Lines(
|
2022-12-25 02:38:00 +02:00
|
|
|
Contains("master"),
|
|
|
|
Contains("@"),
|
|
|
|
)
|
2022-10-16 14:31:42 +02:00
|
|
|
input.NextItem()
|
2022-12-25 02:38:00 +02:00
|
|
|
|
2022-12-24 08:48:57 +02:00
|
|
|
input.Press(keys.Branches.CheckoutBranchByName)
|
|
|
|
|
2022-12-27 02:21:44 +02:00
|
|
|
input.Prompt().Title(Equals("Branch name:")).Type("new-branch").Confirm()
|
2022-12-24 08:48:57 +02:00
|
|
|
|
2022-12-27 02:34:41 +02:00
|
|
|
input.Alert().Title(Equals("Branch not found")).Content(Equals("Branch not found. Create a new branch named new-branch?")).Confirm()
|
2022-10-16 14:31:42 +02:00
|
|
|
|
2022-12-26 02:12:56 +02:00
|
|
|
assert.CurrentView().Name("localBranches").
|
|
|
|
Lines(
|
|
|
|
MatchesRegexp(`\*.*new-branch`),
|
|
|
|
Contains("master"),
|
|
|
|
Contains("@"),
|
|
|
|
).
|
|
|
|
SelectedLine(Contains("new-branch"))
|
2022-10-16 14:31:42 +02:00
|
|
|
},
|
|
|
|
})
|