2017-04-15 15:26:05 -03:00
|
|
|
package archive
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/goreleaser/goreleaser/config"
|
|
|
|
"github.com/goreleaser/goreleaser/context"
|
2017-07-23 16:27:46 -03:00
|
|
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
2017-04-15 15:26:05 -03:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDescription(t *testing.T) {
|
|
|
|
assert.NotEmpty(t, Pipe{}.Description())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRunPipe(t *testing.T) {
|
|
|
|
var assert = assert.New(t)
|
2017-07-23 16:27:46 -03:00
|
|
|
folder, back := testlib.Mktmp(t)
|
|
|
|
defer back()
|
2017-04-15 15:26:05 -03:00
|
|
|
var dist = filepath.Join(folder, "dist")
|
|
|
|
assert.NoError(os.Mkdir(dist, 0755))
|
2017-07-01 13:13:44 -03:00
|
|
|
assert.NoError(os.Mkdir(filepath.Join(dist, "mybin_darwin_amd64"), 0755))
|
|
|
|
assert.NoError(os.Mkdir(filepath.Join(dist, "mybin_windows_amd64"), 0755))
|
2017-07-23 16:27:46 -03:00
|
|
|
_, err := os.Create(filepath.Join(dist, "mybin_darwin_amd64", "mybin"))
|
2017-04-15 15:26:05 -03:00
|
|
|
assert.NoError(err)
|
2017-07-01 13:13:44 -03:00
|
|
|
_, err = os.Create(filepath.Join(dist, "mybin_windows_amd64", "mybin.exe"))
|
2017-05-11 00:05:51 -03:00
|
|
|
assert.NoError(err)
|
|
|
|
_, err = os.Create(filepath.Join(folder, "README.md"))
|
2017-04-15 15:26:05 -03:00
|
|
|
assert.NoError(err)
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{
|
|
|
|
Dist: dist,
|
|
|
|
Archive: config.Archive{
|
|
|
|
Files: []string{
|
2017-05-11 00:05:51 -03:00
|
|
|
"README.*",
|
2017-04-15 15:26:05 -03:00
|
|
|
},
|
2017-04-21 16:01:19 -03:00
|
|
|
FormatOverrides: []config.FormatOverride{
|
|
|
|
{
|
|
|
|
Goos: "windows",
|
|
|
|
Format: "zip",
|
|
|
|
},
|
|
|
|
},
|
2017-04-15 15:26:05 -03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-13 20:43:12 -03:00
|
|
|
ctx.AddBinary("darwinamd64", "mybin_darwin_amd64", "mybin", filepath.Join(dist, "mybin_darwin_amd64", "mybin"))
|
|
|
|
ctx.AddBinary("windowsamd64", "mybin_windows_amd64", "mybin.exe", filepath.Join(dist, "mybin_windows_amd64", "mybin.exe"))
|
2017-04-15 15:26:05 -03:00
|
|
|
for _, format := range []string{"tar.gz", "zip"} {
|
|
|
|
t.Run("Archive format "+format, func(t *testing.T) {
|
|
|
|
ctx.Config.Archive.Format = format
|
|
|
|
assert.NoError(Pipe{}.Run(ctx))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2017-04-21 16:03:36 -03:00
|
|
|
|
2017-06-08 11:41:09 +02:00
|
|
|
func TestRunPipeBinary(t *testing.T) {
|
2017-06-05 16:38:59 +02:00
|
|
|
var assert = assert.New(t)
|
2017-07-23 16:27:46 -03:00
|
|
|
folder, back := testlib.Mktmp(t)
|
|
|
|
defer back()
|
2017-06-05 16:38:59 +02:00
|
|
|
var dist = filepath.Join(folder, "dist")
|
|
|
|
assert.NoError(os.Mkdir(dist, 0755))
|
2017-07-03 01:08:14 -03:00
|
|
|
assert.NoError(os.Mkdir(filepath.Join(dist, "mybin_darwin"), 0755))
|
|
|
|
assert.NoError(os.Mkdir(filepath.Join(dist, "mybin_win"), 0755))
|
2017-07-23 16:27:46 -03:00
|
|
|
_, err := os.Create(filepath.Join(dist, "mybin_darwin", "mybin"))
|
2017-06-05 16:38:59 +02:00
|
|
|
assert.NoError(err)
|
2017-07-03 01:08:14 -03:00
|
|
|
_, err = os.Create(filepath.Join(dist, "mybin_win", "mybin.exe"))
|
2017-06-05 16:38:59 +02:00
|
|
|
assert.NoError(err)
|
|
|
|
_, err = os.Create(filepath.Join(folder, "README.md"))
|
|
|
|
assert.NoError(err)
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{
|
|
|
|
Dist: dist,
|
2017-07-03 01:08:14 -03:00
|
|
|
Builds: []config.Build{
|
|
|
|
{Binary: "mybin"},
|
2017-06-05 16:38:59 +02:00
|
|
|
},
|
|
|
|
Archive: config.Archive{
|
2017-06-08 11:41:09 +02:00
|
|
|
Format: "binary",
|
2017-06-05 16:38:59 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-13 20:43:12 -03:00
|
|
|
ctx.AddBinary("darwinamd64", "mybin_darwin", "mybin", filepath.Join(dist, "mybin_darwin", "mybin"))
|
|
|
|
ctx.AddBinary("windowsamd64", "mybin_win", "mybin.exe", filepath.Join(dist, "mybin_win", "mybin.exe"))
|
2017-06-05 16:38:59 +02:00
|
|
|
assert.NoError(Pipe{}.Run(ctx))
|
2017-07-03 01:08:14 -03:00
|
|
|
assert.Contains(ctx.Artifacts, "mybin_darwin/mybin")
|
|
|
|
assert.Contains(ctx.Artifacts, "mybin_win/mybin.exe")
|
2017-06-05 19:21:33 +02:00
|
|
|
assert.Len(ctx.Artifacts, 2)
|
2017-06-05 16:38:59 +02:00
|
|
|
}
|
|
|
|
|
2017-04-22 10:29:53 -03:00
|
|
|
func TestRunPipeDistRemoved(t *testing.T) {
|
|
|
|
var assert = assert.New(t)
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{
|
|
|
|
Dist: "/path/nope",
|
|
|
|
Archive: config.Archive{
|
|
|
|
Format: "zip",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-13 20:43:12 -03:00
|
|
|
ctx.AddBinary("windowsamd64", "nope", "no", "blah")
|
2017-04-22 10:29:53 -03:00
|
|
|
assert.Error(Pipe{}.Run(ctx))
|
|
|
|
}
|
|
|
|
|
2017-05-11 00:05:51 -03:00
|
|
|
func TestRunPipeInvalidGlob(t *testing.T) {
|
|
|
|
var assert = assert.New(t)
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{
|
|
|
|
Dist: "/tmp",
|
|
|
|
Archive: config.Archive{
|
|
|
|
Files: []string{
|
|
|
|
"[x-]",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-13 20:43:12 -03:00
|
|
|
ctx.AddBinary("windowsamd64", "whatever", "foo", "bar")
|
2017-05-11 00:05:51 -03:00
|
|
|
assert.Error(Pipe{}.Run(ctx))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRunPipeGlobFailsToAdd(t *testing.T) {
|
|
|
|
var assert = assert.New(t)
|
2017-07-23 16:27:46 -03:00
|
|
|
folder, back := testlib.Mktmp(t)
|
|
|
|
defer back()
|
2017-05-11 00:05:51 -03:00
|
|
|
assert.NoError(os.MkdirAll(filepath.Join(folder, "folder", "another"), 0755))
|
|
|
|
|
|
|
|
var ctx = &context.Context{
|
|
|
|
Config: config.Project{
|
|
|
|
Dist: folder,
|
|
|
|
Archive: config.Archive{
|
|
|
|
Files: []string{
|
|
|
|
"folder",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-13 20:43:12 -03:00
|
|
|
ctx.AddBinary("windows386", "mybin", "mybin", "dist/mybin")
|
2017-05-11 00:05:51 -03:00
|
|
|
assert.Error(Pipe{}.Run(ctx))
|
|
|
|
}
|