1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-31 23:19:40 +02:00

Add integration test for local branch sort order

This commit is contained in:
Alex March 2023-12-26 15:40:57 +09:00 committed by Stefan Haller
parent 36a29f225b
commit 21334fa889
2 changed files with 69 additions and 0 deletions

View 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"),
)
},
})

View File

@ -54,6 +54,7 @@ var tests = []*components.IntegrationTest{
branch.ResetToUpstream,
branch.SetUpstream,
branch.ShowDivergenceFromUpstream,
branch.SortLocalBranches,
branch.SortRemoteBranches,
branch.Suggestions,
branch.UnsetUpstream,