mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
01fd3e8c7b
* feat: support closing milestones Reference: https://github.com/goreleaser/goreleaser/issues/1415 * refactor: Adjust milestone handling for code simplification, add ErrNoMilestoneFound, and fix milestone documentation close default Reference: https://github.com/goreleaser/goreleaser/pull/1657#pullrequestreview-445025743 * refactor: Use single repo config in milestones instead of each VCS * fix: Ensure milestone Pipe is included in Defaulters * feat: Add fail_on_error configuration to milestone configuration Co-authored-by: Radek Simko <radek.simko@gmail.com>
47 lines
1.0 KiB
Go
47 lines
1.0 KiB
Go
package git_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/git"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGit(t *testing.T) {
|
|
out, err := git.Run("status")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, out)
|
|
|
|
out, err = git.Run("command-that-dont-exist")
|
|
assert.Error(t, err)
|
|
assert.Empty(t, out)
|
|
assert.Equal(
|
|
t,
|
|
"git: 'command-that-dont-exist' is not a git command. See 'git --help'.\n",
|
|
err.Error(),
|
|
)
|
|
}
|
|
|
|
func TestRepo(t *testing.T) {
|
|
assert.True(t, git.IsRepo(), "goreleaser folder should be a git repo")
|
|
|
|
assert.NoError(t, os.Chdir(os.TempDir()))
|
|
assert.False(t, git.IsRepo(), os.TempDir()+" folder should be a git repo")
|
|
}
|
|
|
|
func TestClean(t *testing.T) {
|
|
out, err := git.Clean("asdasd 'ssadas'\nadasd", nil)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "asdasd ssadas", out)
|
|
|
|
out, err = git.Clean(git.Run("command-that-dont-exist"))
|
|
assert.Error(t, err)
|
|
assert.Empty(t, out)
|
|
assert.Equal(
|
|
t,
|
|
"git: 'command-that-dont-exist' is not a git command. See 'git --help'.",
|
|
err.Error(),
|
|
)
|
|
}
|