mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
529af6fe72
Improved the error handling in git code, mostly in the defaults pipe. The idea is to output better error messages, hopefully avoiding confusion on "whats wrong". refs #356
129 lines
3.3 KiB
Go
129 lines
3.3 KiB
Go
package defaults
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/config"
|
|
"github.com/goreleaser/goreleaser/context"
|
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDescription(t *testing.T) {
|
|
assert.NotEmpty(t, Pipe{}.Description())
|
|
}
|
|
|
|
func TestFillBasicData(t *testing.T) {
|
|
_, back := testlib.Mktmp(t)
|
|
defer back()
|
|
testlib.GitInit(t)
|
|
testlib.GitRemoteAdd(t, "git@github.com:goreleaser/goreleaser.git")
|
|
|
|
var ctx = &context.Context{
|
|
Config: config.Project{},
|
|
}
|
|
|
|
assert.NoError(t, Pipe{}.Run(ctx))
|
|
assert.Equal(t, "goreleaser", ctx.Config.Release.GitHub.Owner)
|
|
assert.Equal(t, "goreleaser", ctx.Config.Release.GitHub.Name)
|
|
assert.NotEmpty(t, ctx.Config.Builds)
|
|
assert.Equal(t, "goreleaser", ctx.Config.Builds[0].Binary)
|
|
assert.Equal(t, ".", ctx.Config.Builds[0].Main)
|
|
assert.Contains(t, ctx.Config.Builds[0].Goos, "darwin")
|
|
assert.Contains(t, ctx.Config.Builds[0].Goos, "linux")
|
|
assert.Contains(t, ctx.Config.Builds[0].Goarch, "386")
|
|
assert.Contains(t, ctx.Config.Builds[0].Goarch, "amd64")
|
|
assert.Equal(t, "tar.gz", ctx.Config.Archive.Format)
|
|
assert.Contains(t, ctx.Config.Brew.Install, "bin.install \"goreleaser\"")
|
|
assert.Empty(t, ctx.Config.Dockers)
|
|
assert.NotEmpty(
|
|
t,
|
|
ctx.Config.Archive.NameTemplate,
|
|
ctx.Config.Builds[0].Ldflags,
|
|
ctx.Config.Archive.Files,
|
|
)
|
|
}
|
|
|
|
func TestFillPartial(t *testing.T) {
|
|
_, back := testlib.Mktmp(t)
|
|
defer back()
|
|
testlib.GitInit(t)
|
|
testlib.GitRemoteAdd(t, "git@github.com:goreleaser/goreleaser.git")
|
|
|
|
var ctx = &context.Context{
|
|
Config: config.Project{
|
|
Release: config.Release{
|
|
GitHub: config.Repo{
|
|
Owner: "goreleaser",
|
|
Name: "test",
|
|
},
|
|
},
|
|
Archive: config.Archive{
|
|
Files: []string{
|
|
"glob/*",
|
|
},
|
|
},
|
|
Builds: []config.Build{
|
|
{Binary: "testreleaser"},
|
|
{Goos: []string{"linux"}},
|
|
{
|
|
Binary: "another",
|
|
Ignore: []config.IgnoredBuild{
|
|
{Goos: "darwin", Goarch: "amd64"},
|
|
},
|
|
},
|
|
},
|
|
Dockers: []config.Docker{
|
|
{Image: "a/b"},
|
|
},
|
|
},
|
|
}
|
|
assert.NoError(t, Pipe{}.Run(ctx))
|
|
assert.Len(t, ctx.Config.Archive.Files, 1)
|
|
assert.Equal(t, `bin.install "testreleaser"`, ctx.Config.Brew.Install)
|
|
assert.NotEmpty(t, ctx.Config.Dockers[0].Binary)
|
|
assert.NotEmpty(t, ctx.Config.Dockers[0].Goos)
|
|
assert.NotEmpty(t, ctx.Config.Dockers[0].Goarch)
|
|
assert.NotEmpty(t, ctx.Config.Dockers[0].Dockerfile)
|
|
assert.Empty(t, ctx.Config.Dockers[0].Goarm)
|
|
}
|
|
|
|
func TestFillSingleBuild(t *testing.T) {
|
|
_, back := testlib.Mktmp(t)
|
|
defer back()
|
|
testlib.GitInit(t)
|
|
testlib.GitRemoteAdd(t, "git@github.com:goreleaser/goreleaser.git")
|
|
|
|
var ctx = &context.Context{
|
|
Config: config.Project{
|
|
SingleBuild: config.Build{
|
|
Main: "testreleaser",
|
|
},
|
|
},
|
|
}
|
|
assert.NoError(t, Pipe{}.Run(ctx))
|
|
assert.Len(t, ctx.Config.Builds, 1)
|
|
assert.Equal(t, ctx.Config.Builds[0].Binary, "goreleaser")
|
|
}
|
|
|
|
func TestNotAGitRepo(t *testing.T) {
|
|
_, back := testlib.Mktmp(t)
|
|
defer back()
|
|
testlib.GitInit(t)
|
|
var ctx = &context.Context{
|
|
Config: config.Project{},
|
|
}
|
|
assert.Error(t, Pipe{}.Run(ctx))
|
|
assert.Empty(t, ctx.Config.Release.GitHub.String())
|
|
}
|
|
|
|
func TestGitRepoWithoutRemote(t *testing.T) {
|
|
_, back := testlib.Mktmp(t)
|
|
defer back()
|
|
var ctx = &context.Context{
|
|
Config: config.Project{},
|
|
}
|
|
assert.Error(t, Pipe{}.Run(ctx))
|
|
assert.Empty(t, ctx.Config.Release.GitHub.String())
|
|
}
|