2017-04-15 20:41:41 +02:00
|
|
|
package fpm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2017-10-22 16:16:28 +02:00
|
|
|
"runtime"
|
2017-04-15 20:41:41 +02:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/goreleaser/goreleaser/config"
|
|
|
|
"github.com/goreleaser/goreleaser/context"
|
2017-08-20 21:50:34 +02:00
|
|
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
2017-04-15 20:41:41 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDescription(t *testing.T) {
|
|
|
|
assert.NotEmpty(t, Pipe{}.Description())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRunPipeNoFormats(t *testing.T) {
|
|
|
|
var ctx = &context.Context{
|
2017-10-22 16:16:28 +02:00
|
|
|
Version: "1.0.0",
|
|
|
|
Config: config.Project{},
|
|
|
|
Parallelism: runtime.NumCPU(),
|
2017-04-15 20:41:41 +02:00
|
|
|
}
|
2017-08-20 21:50:34 +02:00
|
|
|
testlib.AssertSkipped(t, Pipe{}.Run(ctx))
|
2017-04-15 20:41:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRunPipe(t *testing.T) {
|
|
|
|
folder, err := ioutil.TempDir("", "archivetest")
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, err)
|
2017-04-15 20:41:41 +02:00
|
|
|
var dist = filepath.Join(folder, "dist")
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, os.Mkdir(dist, 0755))
|
|
|
|
assert.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0755))
|
2017-07-14 03:40:44 +02:00
|
|
|
var binPath = filepath.Join(dist, "mybin", "mybin")
|
|
|
|
_, err = os.Create(binPath)
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, err)
|
2017-04-15 20:41:41 +02:00
|
|
|
var ctx = &context.Context{
|
2017-10-22 16:16:28 +02:00
|
|
|
Version: "1.0.0",
|
|
|
|
Parallelism: runtime.NumCPU(),
|
2017-11-08 23:32:58 +02:00
|
|
|
Debug: true,
|
2017-04-15 20:41:41 +02:00
|
|
|
Config: config.Project{
|
2017-07-02 03:42:10 +02:00
|
|
|
ProjectName: "mybin",
|
|
|
|
Dist: dist,
|
2017-04-15 20:41:41 +02:00
|
|
|
FPM: config.FPM{
|
2017-08-19 00:45:44 +02:00
|
|
|
Formats: []string{"deb", "rpm"},
|
2017-04-15 20:41:41 +02:00
|
|
|
Dependencies: []string{"make"},
|
|
|
|
Conflicts: []string{"git"},
|
2017-04-21 22:02:28 +02:00
|
|
|
Description: "Some description",
|
|
|
|
License: "MIT",
|
|
|
|
Maintainer: "me@me",
|
|
|
|
Vendor: "asdf",
|
|
|
|
Homepage: "https://goreleaser.github.io",
|
2017-04-15 20:41:41 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-14 03:40:44 +02:00
|
|
|
for _, plat := range []string{"linuxamd64", "linux386", "darwinamd64"} {
|
|
|
|
ctx.AddBinary(plat, "mybin", "mybin", binPath)
|
|
|
|
}
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, Pipe{}.Run(ctx))
|
2017-04-15 20:41:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestNoFPMInPath(t *testing.T) {
|
|
|
|
var path = os.Getenv("PATH")
|
|
|
|
defer func() {
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, os.Setenv("PATH", path))
|
2017-04-15 20:41:41 +02:00
|
|
|
}()
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, os.Setenv("PATH", ""))
|
2017-04-15 20:41:41 +02:00
|
|
|
var ctx = &context.Context{
|
2017-10-22 16:16:28 +02:00
|
|
|
Version: "1.0.0",
|
|
|
|
Parallelism: runtime.NumCPU(),
|
2017-04-15 20:41:41 +02:00
|
|
|
Config: config.Project{
|
|
|
|
FPM: config.FPM{
|
2017-08-19 00:45:44 +02:00
|
|
|
Formats: []string{"deb", "rpm"},
|
2017-04-15 20:41:41 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.EqualError(t, Pipe{}.Run(ctx), ErrNoFPM.Error())
|
2017-04-15 20:41:41 +02:00
|
|
|
}
|
2017-04-22 15:41:58 +02:00
|
|
|
|
|
|
|
func TestCreateFileDoesntExist(t *testing.T) {
|
|
|
|
folder, err := ioutil.TempDir("", "archivetest")
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, err)
|
2017-04-22 15:41:58 +02:00
|
|
|
var dist = filepath.Join(folder, "dist")
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, os.Mkdir(dist, 0755))
|
|
|
|
assert.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0755))
|
2017-04-22 15:41:58 +02:00
|
|
|
var ctx = &context.Context{
|
2017-10-22 16:16:28 +02:00
|
|
|
Version: "1.0.0",
|
|
|
|
Parallelism: runtime.NumCPU(),
|
2017-04-22 15:41:58 +02:00
|
|
|
Config: config.Project{
|
|
|
|
Dist: dist,
|
|
|
|
FPM: config.FPM{
|
2017-08-19 00:45:44 +02:00
|
|
|
Formats: []string{"deb", "rpm"},
|
2017-08-09 03:54:23 +02:00
|
|
|
Files: map[string]string{
|
|
|
|
"testdata/testfile.txt": "/var/lib/test/testfile.txt",
|
|
|
|
},
|
2017-04-22 15:41:58 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-07-14 03:40:44 +02:00
|
|
|
ctx.AddBinary("linuxamd64", "mybin", "mybin", filepath.Join(dist, "mybin", "mybin"))
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.Error(t, Pipe{}.Run(ctx))
|
2017-04-22 15:41:58 +02:00
|
|
|
}
|
2017-08-09 03:54:23 +02:00
|
|
|
|
|
|
|
func TestRunPipeWithExtraFiles(t *testing.T) {
|
|
|
|
var ctx = &context.Context{
|
2017-10-22 16:16:28 +02:00
|
|
|
Version: "1.0.0",
|
|
|
|
Parallelism: runtime.NumCPU(),
|
2017-08-09 03:54:23 +02:00
|
|
|
Config: config.Project{
|
|
|
|
FPM: config.FPM{
|
2017-08-19 00:45:44 +02:00
|
|
|
Formats: []string{"deb", "rpm"},
|
2017-08-09 03:54:23 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2017-09-27 00:24:49 +02:00
|
|
|
assert.NoError(t, Pipe{}.Run(ctx))
|
2017-08-09 03:54:23 +02:00
|
|
|
}
|