mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
dba83bff60
This should avoid some failures.
354 lines
8.0 KiB
Go
354 lines
8.0 KiB
Go
package build
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/config"
|
|
"github.com/goreleaser/goreleaser/context"
|
|
"github.com/goreleaser/goreleaser/internal/buildtarget"
|
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
var emptyEnv []string
|
|
|
|
func TestPipeDescription(t *testing.T) {
|
|
assert.NotEmpty(t, Pipe{}.Description())
|
|
}
|
|
|
|
func TestRun(t *testing.T) {
|
|
assert.NoError(t, run(buildtarget.Runtime, []string{"go", "list", "./..."}, emptyEnv))
|
|
}
|
|
|
|
func TestRunInvalidCommand(t *testing.T) {
|
|
assert.Error(t, run(buildtarget.Runtime, []string{"gggggo", "nope"}, emptyEnv))
|
|
}
|
|
|
|
func TestBuild(t *testing.T) {
|
|
var config = config.Project{
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "testing",
|
|
Flags: "-n",
|
|
Env: []string{"BLAH=1"},
|
|
},
|
|
},
|
|
}
|
|
var ctx = context.New(config)
|
|
assert.NoError(t, doBuild(ctx, ctx.Config.Builds[0], buildtarget.Runtime))
|
|
}
|
|
|
|
func TestRunFullPipe(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
writeGoodMain(t, folder)
|
|
var binary = filepath.Join(folder, "testing")
|
|
var pre = filepath.Join(folder, "pre")
|
|
var post = filepath.Join(folder, "post")
|
|
var config = config.Project{
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "testing",
|
|
Flags: "-v",
|
|
Ldflags: "-X main.test=testing",
|
|
Hooks: config.Hooks{
|
|
Pre: "touch " + pre,
|
|
Post: "touch " + post,
|
|
},
|
|
Goos: []string{
|
|
runtime.GOOS,
|
|
},
|
|
Goarch: []string{
|
|
runtime.GOARCH,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
assert.NoError(t, Pipe{}.Run(context.New(config)))
|
|
assert.True(t, exists(binary), binary)
|
|
assert.True(t, exists(pre), pre)
|
|
assert.True(t, exists(post), post)
|
|
}
|
|
|
|
func TestRunPipeFormatBinary(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
writeGoodMain(t, folder)
|
|
var binary = filepath.Join(folder, "binary-testing")
|
|
var config = config.Project{
|
|
ProjectName: "testing",
|
|
Dist: folder,
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "testing",
|
|
Goos: []string{
|
|
runtime.GOOS,
|
|
},
|
|
Goarch: []string{
|
|
runtime.GOARCH,
|
|
},
|
|
},
|
|
},
|
|
Archive: config.Archive{
|
|
Format: "binary",
|
|
NameTemplate: "binary-{{.Binary}}",
|
|
},
|
|
}
|
|
assert.NoError(t, Pipe{}.Run(context.New(config)))
|
|
assert.True(t, exists(binary))
|
|
}
|
|
|
|
func TestRunPipeArmBuilds(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
writeGoodMain(t, folder)
|
|
var binary = filepath.Join(folder, "armtesting")
|
|
var config = config.Project{
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "armtesting",
|
|
Flags: "-v",
|
|
Ldflags: "-X main.test=armtesting",
|
|
Goos: []string{
|
|
"linux",
|
|
},
|
|
Goarch: []string{
|
|
"arm",
|
|
"arm64",
|
|
},
|
|
Goarm: []string{
|
|
"6",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
assert.NoError(t, Pipe{}.Run(context.New(config)))
|
|
assert.True(t, exists(binary), binary)
|
|
}
|
|
|
|
func TestBuildFailed(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
writeGoodMain(t, folder)
|
|
var config = config.Project{
|
|
Builds: []config.Build{
|
|
{
|
|
Flags: "-flag-that-dont-exists-to-force-failure",
|
|
Goos: []string{
|
|
runtime.GOOS,
|
|
},
|
|
Goarch: []string{
|
|
runtime.GOARCH,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
assertContainsError(t, Pipe{}.Run(context.New(config)), `flag provided but not defined: -flag-that-dont-exists-to-force-failure`)
|
|
}
|
|
|
|
func TestRunPipeWithInvalidOS(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
writeGoodMain(t, folder)
|
|
var config = config.Project{
|
|
Builds: []config.Build{
|
|
{
|
|
Flags: "-v",
|
|
Goos: []string{
|
|
"windows",
|
|
},
|
|
Goarch: []string{
|
|
"arm",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
assert.NoError(t, Pipe{}.Run(context.New(config)))
|
|
}
|
|
|
|
func TestRunInvalidNametemplate(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
writeGoodMain(t, folder)
|
|
for _, format := range []string{"tar.gz", "zip", "binary"} {
|
|
var config = config.Project{
|
|
ProjectName: "nameeeee",
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "namet{{.est}",
|
|
Flags: "-v",
|
|
Goos: []string{
|
|
runtime.GOOS,
|
|
},
|
|
Goarch: []string{
|
|
runtime.GOARCH,
|
|
},
|
|
},
|
|
},
|
|
Archive: config.Archive{
|
|
Format: format,
|
|
NameTemplate: "{{.Binary}",
|
|
},
|
|
}
|
|
assert.EqualError(t, Pipe{}.Run(context.New(config)), `template: nameeeee:1: unexpected "}" in operand`)
|
|
}
|
|
}
|
|
|
|
func TestRunInvalidLdflags(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
writeGoodMain(t, folder)
|
|
var config = config.Project{
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "nametest",
|
|
Flags: "-v",
|
|
Ldflags: "-s -w -X main.version={{.Version}",
|
|
Goos: []string{
|
|
runtime.GOOS,
|
|
},
|
|
Goarch: []string{
|
|
runtime.GOARCH,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
assert.EqualError(t, Pipe{}.Run(context.New(config)), `template: ldflags:1: unexpected "}" in operand`)
|
|
}
|
|
|
|
func TestRunPipeFailingHooks(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
writeGoodMain(t, folder)
|
|
var config = config.Project{
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "hooks",
|
|
Hooks: config.Hooks{},
|
|
Goos: []string{
|
|
runtime.GOOS,
|
|
},
|
|
Goarch: []string{
|
|
runtime.GOARCH,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
t.Run("pre-hook", func(t *testing.T) {
|
|
var ctx = context.New(config)
|
|
ctx.Config.Builds[0].Hooks.Pre = "exit 1"
|
|
ctx.Config.Builds[0].Hooks.Post = "echo post"
|
|
assert.EqualError(t, Pipe{}.Run(ctx), `pre hook failed: `)
|
|
})
|
|
t.Run("post-hook", func(t *testing.T) {
|
|
var ctx = context.New(config)
|
|
ctx.Config.Builds[0].Hooks.Pre = "echo pre"
|
|
ctx.Config.Builds[0].Hooks.Post = "exit 1"
|
|
assert.EqualError(t, Pipe{}.Run(ctx), `post hook failed: `)
|
|
})
|
|
}
|
|
|
|
func TestRunPipeWithouMainFunc(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
writeMainWithoutMainFunc(t, folder)
|
|
var config = config.Project{
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "no-main",
|
|
Hooks: config.Hooks{},
|
|
Goos: []string{
|
|
runtime.GOOS,
|
|
},
|
|
Goarch: []string{
|
|
runtime.GOARCH,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
var ctx = context.New(config)
|
|
t.Run("empty", func(t *testing.T) {
|
|
ctx.Config.Builds[0].Main = ""
|
|
assert.EqualError(t, Pipe{}.Run(ctx), `build for no-main does not contain a main function`)
|
|
})
|
|
t.Run("not main.go", func(t *testing.T) {
|
|
ctx.Config.Builds[0].Main = "foo.go"
|
|
assert.EqualError(t, Pipe{}.Run(ctx), `could not open foo.go: stat foo.go: no such file or directory`)
|
|
})
|
|
t.Run("glob", func(t *testing.T) {
|
|
ctx.Config.Builds[0].Main = "."
|
|
assert.EqualError(t, Pipe{}.Run(ctx), `build for no-main does not contain a main function`)
|
|
})
|
|
t.Run("fixed main.go", func(t *testing.T) {
|
|
ctx.Config.Builds[0].Main = "main.go"
|
|
assert.EqualError(t, Pipe{}.Run(ctx), `build for no-main does not contain a main function`)
|
|
})
|
|
}
|
|
|
|
func TestRunPipeWithMainFuncNotInMainGoFile(t *testing.T) {
|
|
folder, back := testlib.Mktmp(t)
|
|
defer back()
|
|
assert.NoError(t, ioutil.WriteFile(
|
|
filepath.Join(folder, "foo.go"),
|
|
[]byte("package main\nfunc main() {println(0)}"),
|
|
0644,
|
|
))
|
|
var config = config.Project{
|
|
Builds: []config.Build{
|
|
{
|
|
Binary: "foo",
|
|
Hooks: config.Hooks{},
|
|
Goos: []string{
|
|
runtime.GOOS,
|
|
},
|
|
Goarch: []string{
|
|
runtime.GOARCH,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
var ctx = context.New(config)
|
|
t.Run("empty", func(t *testing.T) {
|
|
ctx.Config.Builds[0].Main = ""
|
|
assert.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
t.Run("foo.go", func(t *testing.T) {
|
|
ctx.Config.Builds[0].Main = "foo.go"
|
|
assert.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
t.Run("glob", func(t *testing.T) {
|
|
ctx.Config.Builds[0].Main = "."
|
|
assert.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
}
|
|
|
|
func exists(file string) bool {
|
|
_, err := os.Stat(file)
|
|
return !os.IsNotExist(err)
|
|
}
|
|
|
|
func writeMainWithoutMainFunc(t *testing.T, folder string) {
|
|
assert.NoError(t, ioutil.WriteFile(
|
|
filepath.Join(folder, "main.go"),
|
|
[]byte("package main\nconst a = 2\nfunc notMain() {println(0)}"),
|
|
0644,
|
|
))
|
|
}
|
|
|
|
func writeGoodMain(t *testing.T, folder string) {
|
|
assert.NoError(t, ioutil.WriteFile(
|
|
filepath.Join(folder, "main.go"),
|
|
[]byte("package main\nvar a = 1\nfunc main() {println(0)}"),
|
|
0644,
|
|
))
|
|
}
|
|
|
|
func assertContainsError(t *testing.T, err error, s string) {
|
|
assert.Error(t, err)
|
|
assert.Contains(t, err.Error(), s)
|
|
}
|