1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/integration/tests/branch/rebase.go

65 lines
1.8 KiB
Go
Raw Normal View History

2022-08-22 12:43:19 +02: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 12:43:19 +02:00
)
var Rebase = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Rebase onto another branch, deal with the conflicts.",
ExtraCmdArgs: "",
Skip: false,
SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shared.MergeConflictsSetup(shell)
2022-08-22 12:43:19 +02:00
},
Run: func(shell *Shell, input *Input, assert *Assert, keys config.KeybindingConfig) {
input.SwitchToBranchesWindow()
assert.CurrentViewName("localBranches")
2022-12-25 02:38:00 +02:00
assert.ViewLines(
"localBranches",
Contains("first-change-branch"),
Contains("second-change-branch"),
Contains("original-branch"),
)
assert.ViewTopLines(
"commits",
Contains("first change"),
Contains("original"),
)
2022-08-22 12:43:19 +02:00
input.NextItem()
input.Press(keys.Branches.RebaseBranch)
2022-08-22 12:43:19 +02:00
input.AcceptConfirmation(Equals("Rebasing"), Contains("Are you sure you want to rebase 'first-change-branch' on top of 'second-change-branch'?"))
2022-08-22 12:43:19 +02:00
input.AcceptConfirmation(Equals("Auto-merge failed"), Contains("Conflicts!"))
2022-08-22 12:43:19 +02:00
assert.CurrentViewName("files")
assert.CurrentLine(Contains("file"))
2022-08-22 12:43:19 +02: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 12:43:19 +02:00
assert.CurrentViewName("mergeConflicts")
input.PrimaryAction()
assert.ViewContent("information", Contains("rebasing"))
input.AcceptConfirmation(Equals("continue"), Contains("all merge conflicts resolved. Continue?"))
assert.ViewContent("information", NotContains("rebasing"))
2022-08-22 12:43:19 +02:00
2022-12-25 02:38:00 +02:00
assert.ViewTopLines(
"commits",
Contains("second-change-branch unrelated change"),
Contains("second change"),
Contains("original"),
)
2022-08-22 12:43:19 +02:00
},
})