mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
60 lines
1.8 KiB
Go
60 lines
1.8 KiB
Go
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(t *TestDriver, keys config.KeybindingConfig) {
|
|
markCommitAsBad := func() {
|
|
t.Views().Commits().
|
|
Press(keys.Commits.ViewBisectOptions)
|
|
|
|
t.ExpectPopup().Menu().Title(Equals("Bisect")).Select(MatchesRegexp(`mark .* as bad`)).Confirm()
|
|
}
|
|
|
|
markCommitAsGood := func() {
|
|
t.Views().Commits().
|
|
Press(keys.Commits.ViewBisectOptions)
|
|
|
|
t.ExpectPopup().Menu().Title(Equals("Bisect")).Select(MatchesRegexp(`mark .* as good`)).Confirm()
|
|
}
|
|
|
|
t.Views().Commits().
|
|
Focus().
|
|
SelectedLine(Contains("commit 10")).
|
|
NavigateToListItem(Contains("commit 09")).
|
|
Tap(func() {
|
|
markCommitAsBad()
|
|
|
|
t.Views().Information().Content(Contains("bisecting"))
|
|
}).
|
|
SelectedLine(Contains("<-- bad")).
|
|
NavigateToListItem(Contains("commit 02")).
|
|
Tap(markCommitAsGood).
|
|
// lazygit will land us in the commit between our good and bad commits.
|
|
SelectedLine(Contains("commit 05").Contains("<-- current")).
|
|
Tap(markCommitAsBad).
|
|
SelectedLine(Contains("commit 04").Contains("<-- current")).
|
|
Tap(func() {
|
|
markCommitAsGood()
|
|
|
|
// commit 5 is the culprit because we marked 4 as good and 5 as bad.
|
|
t.ExpectPopup().Alert().Title(Equals("Bisect complete")).Content(MatchesRegexp("(?s)commit 05.*Do you want to reset")).Confirm()
|
|
}).
|
|
IsFocused().
|
|
Content(Contains("commit 04"))
|
|
|
|
t.Views().Information().Content(DoesNotContain("bisecting"))
|
|
},
|
|
})
|