mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-06 23:46:13 +02:00
Add integration test for local branch sort order
This commit is contained in:
parent
36a29f225b
commit
21334fa889
68
pkg/integration/tests/branch/sort_local_branches.go
Normal file
68
pkg/integration/tests/branch/sort_local_branches.go
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
package branch
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/jesseduffield/lazygit/pkg/config"
|
||||||
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
||||||
|
)
|
||||||
|
|
||||||
|
var SortLocalBranches = NewIntegrationTest(NewIntegrationTestArgs{
|
||||||
|
Description: "Sort local branches by recency, date or alphabetically",
|
||||||
|
ExtraCmdArgs: []string{},
|
||||||
|
Skip: false,
|
||||||
|
SetupConfig: func(config *config.AppConfig) {},
|
||||||
|
SetupRepo: func(shell *Shell) {
|
||||||
|
shell.
|
||||||
|
EmptyCommit("commit").
|
||||||
|
NewBranch("first").
|
||||||
|
EmptyCommitWithDate("commit", "2023-04-07 10:00:00").
|
||||||
|
NewBranch("second").
|
||||||
|
EmptyCommitWithDate("commit", "2023-04-07 12:00:00").
|
||||||
|
NewBranch("third").
|
||||||
|
EmptyCommitWithDate("commit", "2023-04-07 11:00:00").
|
||||||
|
Checkout("master")
|
||||||
|
},
|
||||||
|
Run: func(t *TestDriver, keys config.KeybindingConfig) {
|
||||||
|
// sorted by recency by default
|
||||||
|
t.Views().Branches().
|
||||||
|
Focus().
|
||||||
|
Lines(
|
||||||
|
Contains("master").IsSelected(),
|
||||||
|
Contains("third"),
|
||||||
|
Contains("second"),
|
||||||
|
Contains("first"),
|
||||||
|
).
|
||||||
|
SelectNextItem() // to test that the selection jumps back to the top when sorting
|
||||||
|
|
||||||
|
t.Views().Branches().
|
||||||
|
Press(keys.Branches.SortOrder)
|
||||||
|
|
||||||
|
t.ExpectPopup().Menu().Title(Equals("Sort order")).
|
||||||
|
Select(Contains("-committerdate")).
|
||||||
|
Confirm()
|
||||||
|
|
||||||
|
t.Views().Branches().
|
||||||
|
IsFocused().
|
||||||
|
Lines(
|
||||||
|
Contains("master").IsSelected(),
|
||||||
|
Contains("second"),
|
||||||
|
Contains("third"),
|
||||||
|
Contains("first"),
|
||||||
|
)
|
||||||
|
|
||||||
|
t.Views().Branches().
|
||||||
|
Press(keys.Branches.SortOrder)
|
||||||
|
|
||||||
|
t.ExpectPopup().Menu().Title(Equals("Sort order")).
|
||||||
|
Select(Contains("refname")).
|
||||||
|
Confirm()
|
||||||
|
|
||||||
|
t.Views().Branches().
|
||||||
|
IsFocused().
|
||||||
|
Lines(
|
||||||
|
Contains("master").IsSelected(),
|
||||||
|
Contains("first"),
|
||||||
|
Contains("second"),
|
||||||
|
Contains("third"),
|
||||||
|
)
|
||||||
|
},
|
||||||
|
})
|
@ -54,6 +54,7 @@ var tests = []*components.IntegrationTest{
|
|||||||
branch.ResetToUpstream,
|
branch.ResetToUpstream,
|
||||||
branch.SetUpstream,
|
branch.SetUpstream,
|
||||||
branch.ShowDivergenceFromUpstream,
|
branch.ShowDivergenceFromUpstream,
|
||||||
|
branch.SortLocalBranches,
|
||||||
branch.SortRemoteBranches,
|
branch.SortRemoteBranches,
|
||||||
branch.Suggestions,
|
branch.Suggestions,
|
||||||
branch.UnsetUpstream,
|
branch.UnsetUpstream,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user