1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-31 14:24:25 +03:00

Allow force-tagging if tag exists

This commit is contained in:
Stefan Haller
2023-07-24 12:29:42 +02:00
parent 71d2fd37e2
commit d41a195ee6
6 changed files with 137 additions and 6 deletions

View File

@ -0,0 +1,47 @@
package tag
import (
"github.com/jesseduffield/lazygit/pkg/config"
. "github.com/jesseduffield/lazygit/pkg/integration/components"
)
var ForceTagAnnotated = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Overwrite an annotated tag that already exists",
ExtraCmdArgs: []string{},
Skip: false,
SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shell.EmptyCommit("first commit")
shell.CreateAnnotatedTag("new-tag", "message", "HEAD")
shell.EmptyCommit("second commit")
},
Run: func(t *TestDriver, keys config.KeybindingConfig) {
t.Views().Commits().
Focus().
Lines(
Contains("second commit").IsSelected(),
Contains("new-tag").Contains("first commit"),
).
Press(keys.Commits.CreateTag).
Tap(func() {
t.ExpectPopup().CommitMessagePanel().
Title(Equals("Tag name")).
Type("new-tag").
SwitchToDescription().
Title(Equals("Tag description")).
Type("message").
SwitchToSummary().
Confirm()
}).
Tap(func() {
t.ExpectPopup().Confirmation().
Title(Equals("Force Tag")).
Content(Contains("The tag 'new-tag' exists already. Press <esc> to cancel, or <enter> to overwrite.")).
Confirm()
}).
Lines(
Contains("new-tag").Contains("second commit"),
DoesNotContain("new-tag").Contains("first commit"),
)
},
})

View File

@ -0,0 +1,43 @@
package tag
import (
"github.com/jesseduffield/lazygit/pkg/config"
. "github.com/jesseduffield/lazygit/pkg/integration/components"
)
var ForceTagLightweight = NewIntegrationTest(NewIntegrationTestArgs{
Description: "Overwrite a lightweight tag that already exists",
ExtraCmdArgs: []string{},
Skip: false,
SetupConfig: func(config *config.AppConfig) {},
SetupRepo: func(shell *Shell) {
shell.EmptyCommit("first commit")
shell.CreateLightweightTag("new-tag", "HEAD")
shell.EmptyCommit("second commit")
},
Run: func(t *TestDriver, keys config.KeybindingConfig) {
t.Views().Commits().
Focus().
Lines(
Contains("second commit").IsSelected(),
Contains("new-tag").Contains("first commit"),
).
Press(keys.Commits.CreateTag).
Tap(func() {
t.ExpectPopup().CommitMessagePanel().
Title(Equals("Tag name")).
Type("new-tag").
Confirm()
}).
Tap(func() {
t.ExpectPopup().Confirmation().
Title(Equals("Force Tag")).
Content(Contains("The tag 'new-tag' exists already. Press <esc> to cancel, or <enter> to overwrite.")).
Confirm()
}).
Lines(
Contains("new-tag").Contains("second commit"),
DoesNotContain("new-tag").Contains("first commit"),
)
},
})

View File

@ -214,6 +214,8 @@ var tests = []*components.IntegrationTest{
tag.CreateWhileCommitting,
tag.CrudAnnotated,
tag.CrudLightweight,
tag.ForceTagAnnotated,
tag.ForceTagLightweight,
tag.Reset,
ui.Accordion,
ui.DoublePopup,