1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-28 05:46:16 +02:00
lazygit/pkg/integration/tests/bisect/from_other_branch.go

47 lines
1.6 KiB
Go
Raw Normal View History

2022-08-22 19:52:05 +10:00
package bisect
import (
"github.com/jesseduffield/lazygit/pkg/config"
. "github.com/jesseduffield/lazygit/pkg/integration/components"
)
var FromOtherBranch = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Opening lazygit when bisect has been started from another branch. There's an issue where we don't reselect the current branch if we mark the current branch as bad so this test side-steps that problem",
ExtraCmdArgs: []string{},
2022-08-22 19:52:05 +10:00
Skip: false,
SetupRepo: func(shell *Shell) {
shell.
EmptyCommit("only commit on master"). // this'll ensure we have a master branch
NewBranch("other").
CreateNCommits(10).
Checkout("master").
StartBisect("other~2", "other~5")
2022-08-22 19:52:05 +10:00
},
SetupConfig: func(cfg *config.AppConfig) {},
2022-12-27 21:47:37 +11:00
Run: func(t *TestDriver, keys config.KeybindingConfig) {
t.Views().Information().Content(Contains("Bisecting"))
2022-08-22 19:52:05 +10:00
2022-12-27 21:35:36 +11:00
t.Views().Commits().
Focus().
TopLines(
MatchesRegexp(`<-- bad.*commit 08`),
MatchesRegexp(`<-- current.*commit 07`),
MatchesRegexp(`\?.*commit 06`),
MatchesRegexp(`<-- good.*commit 05`),
).
SelectNextItem().
2022-12-27 21:25:11 +11:00
Press(keys.Commits.ViewBisectOptions).
Tap(func() {
t.ExpectPopup().Menu().Title(Equals("Bisect")).Select(MatchesRegexp(`Mark .* as good`)).Confirm()
2022-12-27 21:25:11 +11:00
2022-12-28 11:00:22 +11:00
t.ExpectPopup().Alert().Title(Equals("Bisect complete")).Content(MatchesRegexp("(?s)commit 08.*Do you want to reset")).Confirm()
2022-12-27 21:25:11 +11:00
t.Views().Information().Content(DoesNotContain("Bisecting"))
2022-12-27 21:25:11 +11:00
}).
// back in master branch which just had the one commit
Lines(
Contains("only commit on master"),
)
2022-08-22 19:52:05 +10:00
},
})