1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-24 05:36:19 +02:00
lazygit/pkg/integration/tests/branch/rebase_and_drop.go

101 lines
2.9 KiB
Go
Raw Normal View History

2022-08-22 20:43:19 +10:00
package branch
import (
"github.com/jesseduffield/lazygit/pkg/config"
. "github.com/jesseduffield/lazygit/pkg/integration/components"
"github.com/jesseduffield/lazygit/pkg/integration/tests/shared"
2022-08-22 20:43:19 +10:00
)
var RebaseAndDrop = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Rebase onto another branch, deal with the conflicts. Also mark a commit to be dropped before continuing.",
ExtraCmdArgs: "",
Skip: false,
SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shared.MergeConflictsSetup(shell)
2022-08-22 20:43:19 +10:00
// addin a couple additional commits so that we can drop one
shell.EmptyCommit("to remove")
2022-08-22 20:43:19 +10:00
shell.EmptyCommit("to keep")
},
Run: func(shell *Shell, input *Input, assert *Assert, keys config.KeybindingConfig) {
2022-12-26 16:49:54 +11:00
input.SwitchToBranchesView()
2022-08-22 20:43:19 +10:00
2022-12-27 15:07:11 +11:00
assert.Views().Current().Lines(
2022-12-25 11:38:00 +11:00
Contains("first-change-branch"),
Contains("second-change-branch"),
Contains("original-branch"),
)
2022-12-27 15:07:11 +11:00
assert.Views().ByName("commits").TopLines(
Contains("to keep").IsSelected(),
2022-12-25 11:38:00 +11:00
Contains("to remove"),
Contains("first change"),
Contains("original"),
)
2022-08-22 20:43:19 +10:00
input.NextItem()
input.Press(keys.Branches.RebaseBranch)
2022-08-22 20:43:19 +10:00
2022-12-27 11:21:44 +11:00
input.Confirmation().
Title(Equals("Rebasing")).
Content(Contains("Are you sure you want to rebase 'first-change-branch' on top of 'second-change-branch'?")).
Confirm()
2022-08-22 20:43:19 +10:00
2022-12-27 15:07:11 +11:00
assert.Views().ByName("information").Content(Contains("rebasing"))
2022-12-27 11:21:44 +11:00
input.Confirmation().
Title(Equals("Auto-merge failed")).
Content(Contains("Conflicts!")).
Confirm()
2022-08-22 20:43:19 +10:00
2022-12-27 15:07:11 +11:00
assert.Views().Current().
2022-12-26 11:12:56 +11:00
Name("files").
SelectedLine(MatchesRegexp("UU.*file"))
2022-08-22 20:43:19 +10:00
2022-12-26 16:49:54 +11:00
input.SwitchToCommitsView()
2022-12-27 15:07:11 +11:00
assert.Views().Current().
2022-12-26 11:12:56 +11:00
TopLines(
MatchesRegexp(`pick.*to keep`).IsSelected(),
2022-12-26 11:12:56 +11:00
MatchesRegexp(`pick.*to remove`),
MatchesRegexp("YOU ARE HERE.*second-change-branch unrelated change"),
MatchesRegexp("second change"),
MatchesRegexp("original"),
)
2022-12-26 11:12:56 +11:00
2022-08-22 20:43:19 +10:00
input.NextItem()
input.Press(keys.Universal.Remove)
2022-12-27 15:07:11 +11:00
assert.Views().Current().
TopLines(
MatchesRegexp(`pick.*to keep`),
MatchesRegexp(`drop.*to remove`).IsSelected(),
MatchesRegexp("YOU ARE HERE.*second-change-branch unrelated change"),
MatchesRegexp("second change"),
MatchesRegexp("original"),
)
2022-08-22 20:43:19 +10:00
2022-12-26 16:49:54 +11:00
input.SwitchToFilesView()
2022-08-22 20:43:19 +10:00
// not using Confirm() convenience method because I suspect we might change this
// keybinding to something more bespoke
input.Press(keys.Universal.Confirm)
2022-08-22 20:43:19 +10:00
2022-12-27 15:07:11 +11:00
assert.Views().Current().Name("mergeConflicts")
2022-08-22 20:43:19 +10:00
input.PrimaryAction()
2022-12-27 11:21:44 +11:00
input.Confirmation().
Title(Equals("continue")).
Content(Contains("all merge conflicts resolved. Continue?")).
Confirm()
2022-08-22 20:43:19 +10:00
2022-12-27 15:07:11 +11:00
assert.Views().ByName("information").Content(DoesNotContain("rebasing"))
2022-12-27 15:07:11 +11:00
assert.Views().ByName("commits").TopLines(
2022-12-25 11:38:00 +11:00
Contains("to keep"),
Contains("second-change-branch unrelated change").IsSelected(),
2022-12-25 11:38:00 +11:00
Contains("second change"),
Contains("original"),
)
2022-08-22 20:43:19 +10:00
},
})