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

133 lines
3.2 KiB
Go
Raw Normal View History

2021-04-10 03:40:42 +02:00
package commands
import (
"testing"
2021-12-31 01:24:53 +02:00
"github.com/jesseduffield/lazygit/pkg/commands/oscommands"
2021-04-10 03:40:42 +02:00
"github.com/stretchr/testify/assert"
)
func TestGitCommandRenameCommit(t *testing.T) {
2021-12-31 01:24:53 +02:00
runner := oscommands.NewFakeRunner(t).
2022-01-03 06:15:26 +02:00
ExpectGitArgs([]string{"commit", "--allow-empty", "--amend", "--only", "-m", "test"}, "", nil)
2021-12-31 01:24:53 +02:00
gitCmd := NewDummyGitCommandWithRunner(runner)
2021-04-10 03:40:42 +02:00
assert.NoError(t, gitCmd.RenameCommit("test"))
2021-12-31 01:24:53 +02:00
runner.CheckForMissingCalls()
2021-04-10 03:40:42 +02:00
}
func TestGitCommandResetToCommit(t *testing.T) {
2021-12-31 01:24:53 +02:00
runner := oscommands.NewFakeRunner(t).
2022-01-03 06:15:26 +02:00
ExpectGitArgs([]string{"reset", "--hard", "78976bc"}, "", nil)
2021-12-31 01:24:53 +02:00
gitCmd := NewDummyGitCommandWithRunner(runner)
2021-04-10 03:40:42 +02:00
2021-12-07 12:59:36 +02:00
assert.NoError(t, gitCmd.ResetToCommit("78976bc", "hard", []string{}))
2021-12-31 01:24:53 +02:00
runner.CheckForMissingCalls()
2021-04-10 03:40:42 +02:00
}
2021-12-07 12:59:36 +02:00
func TestGitCommandCommitObj(t *testing.T) {
2021-04-10 03:40:42 +02:00
type scenario struct {
testName string
message string
flags string
expected string
}
scenarios := []scenario{
{
testName: "Commit",
message: "test",
flags: "",
2022-01-03 06:15:26 +02:00
expected: `git commit -m "test"`,
2021-04-10 03:40:42 +02:00
},
{
testName: "Commit with --no-verify flag",
message: "test",
flags: "--no-verify",
2022-01-03 06:15:26 +02:00
expected: `git commit --no-verify -m "test"`,
2021-04-10 03:40:42 +02:00
},
{
testName: "Commit with multiline message",
message: "line1\nline2",
flags: "",
2022-01-03 06:15:26 +02:00
expected: `git commit -m "line1" -m "line2"`,
2021-04-10 03:40:42 +02:00
},
}
for _, s := range scenarios {
t.Run(s.testName, func(t *testing.T) {
2022-01-03 06:15:26 +02:00
gitCmd := NewDummyGitCommand()
2021-12-07 12:59:36 +02:00
cmdStr := gitCmd.CommitCmdObj(s.message, s.flags).ToString()
2021-04-10 03:40:42 +02:00
assert.Equal(t, s.expected, cmdStr)
})
}
}
func TestGitCommandCreateFixupCommit(t *testing.T) {
type scenario struct {
testName string
sha string
2021-12-31 01:24:53 +02:00
runner *oscommands.FakeCmdObjRunner
2021-04-10 03:40:42 +02:00
test func(error)
}
scenarios := []scenario{
{
2021-12-31 01:24:53 +02:00
testName: "valid case",
sha: "12345",
runner: oscommands.NewFakeRunner(t).
Expect(`git commit --fixup=12345`, "", nil),
test: func(err error) {
2021-04-10 03:40:42 +02:00
assert.NoError(t, err)
},
},
}
for _, s := range scenarios {
t.Run(s.testName, func(t *testing.T) {
2021-12-31 01:24:53 +02:00
gitCmd := NewDummyGitCommandWithRunner(s.runner)
2021-04-10 03:40:42 +02:00
s.test(gitCmd.CreateFixupCommit(s.sha))
2021-12-31 01:24:53 +02:00
s.runner.CheckForMissingCalls()
2021-04-10 03:40:42 +02:00
})
}
}
2021-09-03 22:37:46 +02:00
2021-12-07 12:59:36 +02:00
func TestGitCommandShowCmdObj(t *testing.T) {
2021-09-03 22:37:46 +02:00
type scenario struct {
testName string
filterPath string
contextSize int
expected string
}
scenarios := []scenario{
{
testName: "Default case without filter path",
filterPath: "",
contextSize: 3,
expected: "git show --submodule --color=always --unified=3 --no-renames --stat -p 1234567890 ",
},
{
testName: "Default case with filter path",
filterPath: "file.txt",
contextSize: 3,
2022-01-03 06:15:26 +02:00
expected: `git show --submodule --color=always --unified=3 --no-renames --stat -p 1234567890 -- "file.txt"`,
2021-09-03 22:37:46 +02:00
},
{
testName: "Show diff with custom context size",
filterPath: "",
contextSize: 77,
expected: "git show --submodule --color=always --unified=77 --no-renames --stat -p 1234567890 ",
},
}
for _, s := range scenarios {
t.Run(s.testName, func(t *testing.T) {
2022-01-03 06:15:26 +02:00
gitCmd := NewDummyGitCommand()
2021-12-29 02:41:33 +02:00
gitCmd.UserConfig.Git.DiffContextSize = s.contextSize
2021-12-07 12:59:36 +02:00
cmdStr := gitCmd.ShowCmdObj("1234567890", s.filterPath).ToString()
2021-09-03 22:37:46 +02:00
assert.Equal(t, s.expected, cmdStr)
})
}
}