summaryrefslogtreecommitdiffstats
path: root/pkg/integration/tests/interactive_rebase/dont_show_branch_heads_for_todo_items.go
blob: 7c70371881442f79945d130168ec1477b5268823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package interactive_rebase

import (
	"github.com/jesseduffield/lazygit/pkg/config"
	. "github.com/jesseduffield/lazygit/pkg/integration/components"
)

var DontShowBranchHeadsForTodoItems = NewIntegrationTest(NewIntegrationTestArgs{
	Description:  "Check that branch heads are shown for normal commits during interactive rebase, but not for todo items",
	ExtraCmdArgs: []string{},
	Skip:         false,
	GitVersion:   AtLeast("2.38.0"),
	SetupConfig: func(config *config.AppConfig) {
		config.AppState.GitLogShowGraph = "never"
	},
	SetupRepo: func(shell *Shell) {
		shell.
			NewBranch("branch1").
			CreateNCommits(2).
			NewBranch("branch2").
			CreateNCommitsStartingAt(4, 3).
			NewBranch("branch3").
			CreateNCommitsStartingAt(3, 7)

		shell.SetConfig("rebase.updateRefs", "true")
	},
	Run: func(t *TestDriver, keys config.KeybindingConfig) {
		t.Views().Commits().
			Focus().
			Lines(
				Contains("CI commit 09"),
				Contains("CI commit 08"),
				Contains("CI commit 07"),
				Contains("CI * commit 06"),
				Contains("CI commit 05"),
				Contains("CI commit 04"),
				Contains("CI commit 03"),
				Contains("CI * commit 02"),
				Contains("CI commit 01"),
			).
			NavigateToLine(Contains("commit 04")).
			Press(keys.Universal.Edit).
			Lines(
				Contains("pick").Contains("CI commit 09"),
				Contains("pick").Contains("CI commit 08"),
				Contains("pick").Contains("CI commit 07"),
				Contains("update-ref").Contains("branch2"),
				Contains("pick").Contains("CI * commit 06"), // the star is undesired here; it's confusing because of the update-ref right above
				Contains("pick").Contains("CI commit 05"),
				Contains("CI <-- YOU ARE HERE --- commit 04"),
				Contains("CI commit 03"),
				Contains("CI * commit 02"), // this star is fine though
				Contains("CI commit 01"),
			)
	},
})