2022-08-22 11:34:02 +02:00
|
|
|
package bisect
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Basic = NewIntegrationTest(NewIntegrationTestArgs{
|
|
|
|
Description: "Start a git bisect to find a bad commit",
|
|
|
|
ExtraCmdArgs: "",
|
|
|
|
Skip: false,
|
|
|
|
SetupRepo: func(shell *Shell) {
|
|
|
|
shell.
|
|
|
|
CreateNCommits(10)
|
|
|
|
},
|
|
|
|
SetupConfig: func(cfg *config.AppConfig) {},
|
|
|
|
Run: func(
|
|
|
|
shell *Shell,
|
|
|
|
input *Input,
|
|
|
|
keys config.KeybindingConfig,
|
|
|
|
) {
|
|
|
|
markCommitAsBad := func() {
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Views().Commits().
|
|
|
|
Press(keys.Commits.ViewBisectOptions)
|
2022-08-22 11:34:02 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.ExpectMenu().Title(Equals("Bisect")).Select(MatchesRegexp(`mark .* as bad`)).Confirm()
|
2022-08-22 11:34:02 +02:00
|
|
|
}
|
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
markCommitAsGood := func() {
|
|
|
|
input.Views().Commits().
|
|
|
|
Press(keys.Commits.ViewBisectOptions)
|
2022-08-22 11:34:02 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.ExpectMenu().Title(Equals("Bisect")).Select(MatchesRegexp(`mark .* as good`)).Confirm()
|
|
|
|
}
|
2022-08-22 11:34:02 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Model().AtLeastOneCommit()
|
2022-08-22 11:34:02 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Views().Commits().
|
|
|
|
Focus().
|
|
|
|
SelectedLine(Contains("commit 10")).
|
|
|
|
NavigateToListItem(Contains("commit 09"))
|
2022-08-22 11:34:02 +02:00
|
|
|
|
|
|
|
markCommitAsBad()
|
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Views().Information().Content(Contains("bisecting"))
|
2022-08-22 11:34:02 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Views().Commits().
|
|
|
|
IsFocused().
|
|
|
|
SelectedLine(Contains("<-- bad")).
|
|
|
|
NavigateToListItem(Contains("commit 02"))
|
2022-08-22 11:34:02 +02:00
|
|
|
|
|
|
|
markCommitAsGood()
|
|
|
|
|
2022-12-24 08:48:57 +02:00
|
|
|
// lazygit will land us in the commit between our good and bad commits.
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Views().Commits().IsFocused().
|
2022-12-26 08:15:33 +02:00
|
|
|
SelectedLine(Contains("commit 05").Contains("<-- current"))
|
2022-08-22 11:34:02 +02:00
|
|
|
|
|
|
|
markCommitAsBad()
|
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Views().Commits().IsFocused().
|
2022-12-26 08:15:33 +02:00
|
|
|
SelectedLine(Contains("commit 04").Contains("<-- current"))
|
2022-08-22 11:34:02 +02:00
|
|
|
|
|
|
|
markCommitAsGood()
|
|
|
|
|
|
|
|
// commit 5 is the culprit because we marked 4 as good and 5 as bad.
|
2022-12-27 07:27:36 +02:00
|
|
|
input.ExpectAlert().Title(Equals("Bisect complete")).Content(MatchesRegexp("(?s)commit 05.*Do you want to reset")).Confirm()
|
2022-08-22 11:34:02 +02:00
|
|
|
|
2022-12-27 07:27:36 +02:00
|
|
|
input.Views().Commits().IsFocused().Content(Contains("commit 04"))
|
|
|
|
input.Views().Information().Content(DoesNotContain("bisecting"))
|
2022-08-22 11:34:02 +02:00
|
|
|
},
|
|
|
|
})
|