mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
1226 lines
33 KiB
Go
1226 lines
33 KiB
Go
package nfpm
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/artifact"
|
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
"github.com/goreleaser/nfpm/v2/files"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestDescription(t *testing.T) {
|
|
require.NotEmpty(t, Pipe{}.String())
|
|
}
|
|
|
|
func TestRunPipeNoFormats(t *testing.T) {
|
|
ctx := &context.Context{
|
|
Version: "1.0.0",
|
|
Git: context.GitInfo{
|
|
CurrentTag: "v1.0.0",
|
|
},
|
|
Config: config.Project{
|
|
NFPMs: []config.NFPM{
|
|
{},
|
|
},
|
|
},
|
|
Parallelism: runtime.NumCPU(),
|
|
}
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
testlib.AssertSkipped(t, Pipe{}.Run(ctx))
|
|
}
|
|
|
|
func TestRunPipeInvalidFormat(t *testing.T) {
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "nope",
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
Bindir: "/usr/bin",
|
|
Formats: []string{"nope"},
|
|
Builds: []string{"foo"},
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
FileNameTemplate: defaultNameTemplate,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.2.3"
|
|
ctx.Git = context.GitInfo{
|
|
CurrentTag: "v1.2.3",
|
|
}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: "testdata/testfile.txt",
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "foo",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `no packager registered for the format nope`)
|
|
}
|
|
|
|
func TestRunPipe(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
f, err := os.Create(binPath)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.Close())
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
Env: []string{
|
|
"PRO=pro",
|
|
"DESC=templates",
|
|
},
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
Bindir: "/usr/bin",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"deb", "rpm", "apk"},
|
|
Section: "somesection",
|
|
Priority: "standard",
|
|
Description: "Some description with {{ .Env.DESC }}",
|
|
License: "MIT",
|
|
Maintainer: "me@me",
|
|
Vendor: "asdf",
|
|
Homepage: "https://goreleaser.com/{{ .Env.PRO }}",
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
FileNameTemplate: defaultNameTemplate + "-{{ .Release }}-{{ .Epoch }}",
|
|
PackageName: "foo",
|
|
Dependencies: []string{"make"},
|
|
Recommends: []string{"svn"},
|
|
Suggests: []string{"bzr"},
|
|
Replaces: []string{"fish"},
|
|
Conflicts: []string{"git"},
|
|
EmptyFolders: []string{"/var/log/foobar"},
|
|
Release: "10",
|
|
Epoch: "20",
|
|
Contents: []*files.Content{
|
|
{
|
|
Source: "./testdata/testfile.txt",
|
|
Destination: "/usr/share/testfile.txt",
|
|
},
|
|
{
|
|
Source: "./testdata/testfile.txt",
|
|
Destination: "/etc/nope.conf",
|
|
Type: "config",
|
|
},
|
|
{
|
|
Destination: "/etc/mydir",
|
|
Type: "dir",
|
|
},
|
|
{
|
|
Source: "./testdata/testfile.txt",
|
|
Destination: "/etc/nope-rpm.conf",
|
|
Type: "config",
|
|
Packager: "rpm",
|
|
},
|
|
{
|
|
Source: "/etc/nope.conf",
|
|
Destination: "/etc/nope2.conf",
|
|
Type: "symlink",
|
|
},
|
|
{
|
|
Source: "./testdata/testfile-{{ .Arch }}.txt",
|
|
Destination: "/etc/nope3_{{ .ProjectName }}.conf",
|
|
},
|
|
},
|
|
Replacements: map[string]string{
|
|
"linux": "Tux",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "subdir/mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
packages := ctx.Artifacts.Filter(artifact.ByType(artifact.LinuxPackage)).List()
|
|
require.Len(t, packages, 6)
|
|
for _, pkg := range packages {
|
|
format := pkg.Format()
|
|
require.NotEmpty(t, format)
|
|
require.Equal(t, "foo_1.0.0_Tux_"+pkg.Goarch+"-10-20."+format, pkg.Name)
|
|
require.Equal(t, "someid", pkg.ID())
|
|
require.ElementsMatch(t, []string{
|
|
"./testdata/testfile.txt",
|
|
"./testdata/testfile.txt",
|
|
"./testdata/testfile.txt",
|
|
"/etc/nope.conf",
|
|
"./testdata/testfile-" + pkg.Goarch + ".txt",
|
|
binPath,
|
|
}, sources(pkg.ExtraOr(extraFiles, files.Contents{}).(files.Contents)))
|
|
require.ElementsMatch(t, []string{
|
|
"/usr/share/testfile.txt",
|
|
"/etc/mydir",
|
|
"/etc/nope.conf",
|
|
"/etc/nope-rpm.conf",
|
|
"/etc/nope2.conf",
|
|
"/etc/nope3_mybin.conf",
|
|
"/usr/bin/subdir/mybin",
|
|
}, destinations(pkg.ExtraOr(extraFiles, files.Contents{}).(files.Contents)))
|
|
}
|
|
require.Len(t, ctx.Config.NFPMs[0].Contents, 6, "should not modify the config file list")
|
|
}
|
|
|
|
func TestRunPipeConventionalNameTemplate(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
f, err := os.Create(binPath)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.Close())
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"deb", "rpm", "apk"},
|
|
Section: "somesection",
|
|
Priority: "standard",
|
|
Description: "Some description ",
|
|
License: "MIT",
|
|
Maintainer: "me@me",
|
|
Vendor: "asdf",
|
|
Homepage: "https://goreleaser.com/",
|
|
Bindir: "/usr/bin",
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
FileNameTemplate: "{{ .ConventionalFileName }}",
|
|
PackageName: "foo",
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "subdir/mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
packages := ctx.Artifacts.Filter(artifact.ByType(artifact.LinuxPackage)).List()
|
|
require.Len(t, packages, 6)
|
|
for _, pkg := range packages {
|
|
format := pkg.Format()
|
|
require.NotEmpty(t, format)
|
|
require.Contains(t, []string{
|
|
"foo_1.0.0_amd64.deb",
|
|
"foo_1.0.0_x86.apk",
|
|
"foo_1.0.0_i386.deb",
|
|
"foo_1.0.0_x86_64.apk",
|
|
"foo-1.0.0.i386.rpm",
|
|
"foo-1.0.0.x86_64.rpm",
|
|
}, pkg.Name, "package name is not expected")
|
|
require.Equal(t, "someid", pkg.ID())
|
|
require.ElementsMatch(t, []string{binPath}, sources(pkg.ExtraOr(extraFiles, files.Contents{}).(files.Contents)))
|
|
require.ElementsMatch(t, []string{"/usr/bin/subdir/mybin"}, destinations(pkg.ExtraOr(extraFiles, files.Contents{}).(files.Contents)))
|
|
}
|
|
}
|
|
|
|
func TestInvalidTemplate(t *testing.T) {
|
|
makeCtx := func() *context.Context {
|
|
ctx := &context.Context{
|
|
Version: "1.2.3",
|
|
Parallelism: runtime.NumCPU(),
|
|
Artifacts: artifact.New(),
|
|
Config: config.Project{
|
|
ProjectName: "test",
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
Formats: []string{"deb"},
|
|
Builds: []string{"default"},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Goos: "linux",
|
|
Goarch: "amd64",
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
return ctx
|
|
}
|
|
|
|
t.Run("filename_template", func(t *testing.T) {
|
|
ctx := makeCtx()
|
|
ctx.Config.NFPMs[0].Meta = true
|
|
ctx.Config.NFPMs[0].NFPMOverridables = config.NFPMOverridables{
|
|
FileNameTemplate: "{{.Foo}",
|
|
}
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `template: tmpl:1: unexpected "}" in operand`)
|
|
})
|
|
|
|
t.Run("source", func(t *testing.T) {
|
|
ctx := makeCtx()
|
|
ctx.Config.NFPMs[0].NFPMOverridables = config.NFPMOverridables{
|
|
Contents: files.Contents{
|
|
{
|
|
Source: "{{ .NOPE_SOURCE }}",
|
|
Destination: "/foo",
|
|
},
|
|
},
|
|
}
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `template: tmpl:1:3: executing "tmpl" at <.NOPE_SOURCE>: map has no entry for key "NOPE_SOURCE"`)
|
|
})
|
|
|
|
t.Run("target", func(t *testing.T) {
|
|
ctx := makeCtx()
|
|
ctx.Config.NFPMs[0].NFPMOverridables = config.NFPMOverridables{
|
|
Contents: files.Contents{
|
|
{
|
|
Source: "./testdata/testfile.txt",
|
|
Destination: "{{ .NOPE_TARGET }}",
|
|
},
|
|
},
|
|
}
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `template: tmpl:1:3: executing "tmpl" at <.NOPE_TARGET>: map has no entry for key "NOPE_TARGET"`)
|
|
})
|
|
|
|
t.Run("description", func(t *testing.T) {
|
|
ctx := makeCtx()
|
|
ctx.Config.NFPMs[0].Description = "{{ .NOPE_DESC }}"
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `template: tmpl:1:3: executing "tmpl" at <.NOPE_DESC>: map has no entry for key "NOPE_DESC"`)
|
|
})
|
|
|
|
t.Run("homepage", func(t *testing.T) {
|
|
ctx := makeCtx()
|
|
ctx.Config.NFPMs[0].Homepage = "{{ .NOPE_HOMEPAGE }}"
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `template: tmpl:1:3: executing "tmpl" at <.NOPE_HOMEPAGE>: map has no entry for key "NOPE_HOMEPAGE"`)
|
|
})
|
|
|
|
t.Run("deb key file", func(t *testing.T) {
|
|
ctx := makeCtx()
|
|
ctx.Config.NFPMs[0].Deb.Signature.KeyFile = "{{ .NOPE_KEY_FILE }}"
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `template: tmpl:1:3: executing "tmpl" at <.NOPE_KEY_FILE>: map has no entry for key "NOPE_KEY_FILE"`)
|
|
})
|
|
|
|
t.Run("rpm key file", func(t *testing.T) {
|
|
ctx := makeCtx()
|
|
ctx.Config.NFPMs[0].RPM.Signature.KeyFile = "{{ .NOPE_KEY_FILE }}"
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `template: tmpl:1:3: executing "tmpl" at <.NOPE_KEY_FILE>: map has no entry for key "NOPE_KEY_FILE"`)
|
|
})
|
|
|
|
t.Run("apk key file", func(t *testing.T) {
|
|
ctx := makeCtx()
|
|
ctx.Config.NFPMs[0].APK.Signature.KeyFile = "{{ .NOPE_KEY_FILE }}"
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `template: tmpl:1:3: executing "tmpl" at <.NOPE_KEY_FILE>: map has no entry for key "NOPE_KEY_FILE"`)
|
|
})
|
|
|
|
t.Run("bindir", func(t *testing.T) {
|
|
ctx := makeCtx()
|
|
ctx.Config.NFPMs[0].Bindir = "/usr/local/{{ .NOPE }}"
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `template: tmpl:1:14: executing "tmpl" at <.NOPE>: map has no entry for key "NOPE"`)
|
|
})
|
|
}
|
|
|
|
func TestRunPipeInvalidContentsSourceTemplate(t *testing.T) {
|
|
ctx := &context.Context{
|
|
Parallelism: runtime.NumCPU(),
|
|
Artifacts: artifact.New(),
|
|
Config: config.Project{
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
Contents: []*files.Content{
|
|
{
|
|
Source: "{{.asdsd}",
|
|
Destination: "testfile",
|
|
},
|
|
},
|
|
},
|
|
Formats: []string{"deb"},
|
|
Builds: []string{"default"},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Goos: "linux",
|
|
Goarch: "amd64",
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
require.EqualError(t, Pipe{}.Run(ctx), `template: tmpl:1: unexpected "}" in operand`)
|
|
}
|
|
|
|
func TestNoBuildsFound(t *testing.T) {
|
|
ctx := &context.Context{
|
|
Parallelism: runtime.NumCPU(),
|
|
Artifacts: artifact.New(),
|
|
Config: config.Project{
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
Formats: []string{"deb"},
|
|
Builds: []string{"nope"},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Goos: "linux",
|
|
Goarch: "amd64",
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
require.EqualError(t, Pipe{}.Run(ctx), `no linux binaries found for builds [nope]`)
|
|
}
|
|
|
|
func TestCreateFileDoesntExist(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
ctx := context.New(config.Project{
|
|
Dist: dist,
|
|
ProjectName: "asd",
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
Formats: []string{"deb", "rpm"},
|
|
Builds: []string{"default"},
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
Contents: []*files.Content{
|
|
{
|
|
Source: "testdata/testfile.txt",
|
|
Destination: "/var/lib/test/testfile.txt",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.2.3"
|
|
ctx.Git = context.GitInfo{
|
|
CurrentTag: "v1.2.3",
|
|
}
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: filepath.Join(dist, "mybin", "mybin"),
|
|
Goos: "linux",
|
|
Goarch: "amd64",
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `dist/mybin/mybin": file does not exist`)
|
|
}
|
|
|
|
func TestInvalidConfig(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
ctx := context.New(config.Project{
|
|
Dist: dist,
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
Formats: []string{"deb"},
|
|
Builds: []string{"default"},
|
|
},
|
|
},
|
|
})
|
|
ctx.Git.CurrentTag = "v1.2.3"
|
|
ctx.Version = "1.2.3"
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: filepath.Join(dist, "mybin", "mybin"),
|
|
Goos: "linux",
|
|
Goarch: "amd64",
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
require.Contains(t, Pipe{}.Run(ctx).Error(), `invalid nfpm config: package name must be provided`)
|
|
}
|
|
|
|
func TestDefault(t *testing.T) {
|
|
ctx := &context.Context{
|
|
Config: config.Project{
|
|
ProjectName: "foobar",
|
|
NFPMs: []config.NFPM{
|
|
{},
|
|
},
|
|
Builds: []config.Build{
|
|
{ID: "foo"},
|
|
{ID: "bar"},
|
|
},
|
|
},
|
|
}
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
require.Equal(t, "/usr/local/bin", ctx.Config.NFPMs[0].Bindir)
|
|
require.Equal(t, []string{"foo", "bar"}, ctx.Config.NFPMs[0].Builds)
|
|
require.Equal(t, defaultNameTemplate, ctx.Config.NFPMs[0].FileNameTemplate)
|
|
require.Equal(t, ctx.Config.ProjectName, ctx.Config.NFPMs[0].PackageName)
|
|
}
|
|
|
|
func TestDefaultSet(t *testing.T) {
|
|
ctx := &context.Context{
|
|
Config: config.Project{
|
|
Builds: []config.Build{
|
|
{ID: "foo"},
|
|
{ID: "bar"},
|
|
},
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
Builds: []string{"foo"},
|
|
Bindir: "/bin",
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
FileNameTemplate: "foo",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
require.Equal(t, "/bin", ctx.Config.NFPMs[0].Bindir)
|
|
require.Equal(t, "foo", ctx.Config.NFPMs[0].FileNameTemplate)
|
|
require.Equal(t, []string{"foo"}, ctx.Config.NFPMs[0].Builds)
|
|
require.Equal(t, config.NFPMRPMScripts{}, ctx.Config.NFPMs[0].RPM.Scripts)
|
|
}
|
|
|
|
func TestOverrides(t *testing.T) {
|
|
ctx := &context.Context{
|
|
Config: config.Project{
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
Bindir: "/bin",
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
FileNameTemplate: "foo",
|
|
},
|
|
Overrides: map[string]config.NFPMOverridables{
|
|
"deb": {
|
|
FileNameTemplate: "bar",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
merged, err := mergeOverrides(ctx.Config.NFPMs[0], "deb")
|
|
require.NoError(t, err)
|
|
require.Equal(t, "/bin", ctx.Config.NFPMs[0].Bindir)
|
|
require.Equal(t, "foo", ctx.Config.NFPMs[0].FileNameTemplate)
|
|
require.Equal(t, "bar", ctx.Config.NFPMs[0].Overrides["deb"].FileNameTemplate)
|
|
require.Equal(t, "bar", merged.FileNameTemplate)
|
|
}
|
|
|
|
func TestDebSpecificConfig(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
f, err := os.Create(binPath)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.Close())
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"deb"},
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
Contents: []*files.Content{
|
|
{
|
|
Source: "testdata/testfile.txt",
|
|
Destination: "/usr/share/testfile.txt",
|
|
},
|
|
},
|
|
Deb: config.NFPMDeb{
|
|
Signature: config.NFPMDebSignature{
|
|
KeyFile: "./testdata/privkey.gpg",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
t.Run("no passphrase set", func(t *testing.T) {
|
|
require.Contains(
|
|
t,
|
|
Pipe{}.Run(ctx).Error(),
|
|
`key is encrypted but no passphrase was provided`,
|
|
)
|
|
})
|
|
|
|
t.Run("general passphrase set", func(t *testing.T) {
|
|
ctx.Env = map[string]string{
|
|
"NFPM_SOMEID_PASSPHRASE": "hunter2",
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
|
|
t.Run("packager specific passphrase set", func(t *testing.T) {
|
|
ctx.Env = map[string]string{
|
|
"NFPM_SOMEID_DEB_PASSPHRASE": "hunter2",
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
}
|
|
|
|
func TestRPMSpecificConfig(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
f, err := os.Create(binPath)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.Close())
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"rpm"},
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
Contents: []*files.Content{
|
|
{
|
|
Source: "testdata/testfile.txt",
|
|
Destination: "/usr/share/testfile.txt",
|
|
},
|
|
},
|
|
RPM: config.NFPMRPM{
|
|
Signature: config.NFPMRPMSignature{
|
|
KeyFile: "./testdata/privkey.gpg",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
t.Run("no passphrase set", func(t *testing.T) {
|
|
require.Contains(
|
|
t,
|
|
Pipe{}.Run(ctx).Error(),
|
|
`key is encrypted but no passphrase was provided`,
|
|
)
|
|
})
|
|
|
|
t.Run("general passphrase set", func(t *testing.T) {
|
|
ctx.Env = map[string]string{
|
|
"NFPM_SOMEID_PASSPHRASE": "hunter2",
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
|
|
t.Run("packager specific passphrase set", func(t *testing.T) {
|
|
ctx.Env = map[string]string{
|
|
"NFPM_SOMEID_RPM_PASSPHRASE": "hunter2",
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
}
|
|
|
|
func TestRPMSpecificScriptsConfig(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
f, err := os.Create(binPath)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.Close())
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"rpm"},
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
RPM: config.NFPMRPM{
|
|
Scripts: config.NFPMRPMScripts{
|
|
PreTrans: "/does/not/exist_pretrans.sh",
|
|
PostTrans: "/does/not/exist_posttrans.sh",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
t.Run("PreTrans script file does not exist", func(t *testing.T) {
|
|
require.Contains(
|
|
t,
|
|
Pipe{}.Run(ctx).Error(),
|
|
`nfpm failed: open /does/not/exist_pretrans.sh: no such file or directory`,
|
|
)
|
|
})
|
|
|
|
t.Run("PostTrans script file does not exist", func(t *testing.T) {
|
|
ctx.Config.NFPMs[0].RPM.Scripts.PreTrans = "testdata/testfile.txt"
|
|
|
|
require.Contains(
|
|
t,
|
|
Pipe{}.Run(ctx).Error(),
|
|
`nfpm failed: open /does/not/exist_posttrans.sh: no such file or directory`,
|
|
)
|
|
})
|
|
|
|
t.Run("pretrans and posttrans scriptlets set", func(t *testing.T) {
|
|
ctx.Config.NFPMs[0].RPM.Scripts.PreTrans = "testdata/testfile.txt"
|
|
ctx.Config.NFPMs[0].RPM.Scripts.PostTrans = "testdata/testfile.txt"
|
|
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
}
|
|
|
|
func TestAPKSpecificConfig(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
f, err := os.Create(binPath)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.Close())
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
Maintainer: "me@me",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"apk"},
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
Contents: []*files.Content{
|
|
{
|
|
Source: "testdata/testfile.txt",
|
|
Destination: "/usr/share/testfile.txt",
|
|
},
|
|
},
|
|
APK: config.NFPMAPK{
|
|
Signature: config.NFPMAPKSignature{
|
|
KeyFile: "./testdata/rsa.priv",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
t.Run("no passphrase set", func(t *testing.T) {
|
|
require.Contains(
|
|
t,
|
|
Pipe{}.Run(ctx).Error(),
|
|
`key is encrypted but no passphrase was provided`,
|
|
)
|
|
})
|
|
|
|
t.Run("general passphrase set", func(t *testing.T) {
|
|
ctx.Env = map[string]string{
|
|
"NFPM_SOMEID_PASSPHRASE": "hunter2",
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
|
|
t.Run("packager specific passphrase set", func(t *testing.T) {
|
|
ctx.Env = map[string]string{
|
|
"NFPM_SOMEID_APK_PASSPHRASE": "hunter2",
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
}
|
|
|
|
func TestAPKSpecificScriptsConfig(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
f, err := os.Create(binPath)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.Close())
|
|
scripts := config.NFPMAPKScripts{
|
|
PreUpgrade: "/does/not/exist_preupgrade.sh",
|
|
PostUpgrade: "/does/not/exist_postupgrade.sh",
|
|
}
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
Maintainer: "me@me",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"apk"},
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
Contents: []*files.Content{
|
|
{
|
|
Source: "testdata/testfile.txt",
|
|
Destination: "/usr/share/testfile.txt",
|
|
},
|
|
},
|
|
APK: config.NFPMAPK{
|
|
Scripts: scripts,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
t.Run("PreUpgrade script file does not exist", func(t *testing.T) {
|
|
ctx.Config.NFPMs[0].APK.Scripts = scripts
|
|
ctx.Config.NFPMs[0].APK.Scripts.PostUpgrade = "testdata/testfile.txt"
|
|
|
|
require.Contains(
|
|
t,
|
|
Pipe{}.Run(ctx).Error(),
|
|
`nfpm failed: stat /does/not/exist_preupgrade.sh: no such file or directory`,
|
|
)
|
|
})
|
|
|
|
t.Run("PostUpgrade script file does not exist", func(t *testing.T) {
|
|
ctx.Config.NFPMs[0].APK.Scripts = scripts
|
|
ctx.Config.NFPMs[0].APK.Scripts.PreUpgrade = "testdata/testfile.txt"
|
|
|
|
require.Contains(
|
|
t,
|
|
Pipe{}.Run(ctx).Error(),
|
|
`nfpm failed: stat /does/not/exist_postupgrade.sh: no such file or directory`,
|
|
)
|
|
})
|
|
|
|
t.Run("preupgrade and postupgrade scriptlets set", func(t *testing.T) {
|
|
ctx.Config.NFPMs[0].APK.Scripts.PreUpgrade = "testdata/testfile.txt"
|
|
ctx.Config.NFPMs[0].APK.Scripts.PostUpgrade = "testdata/testfile.txt"
|
|
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
}
|
|
|
|
func TestSeveralNFPMsWithTheSameID(t *testing.T) {
|
|
ctx := &context.Context{
|
|
Config: config.Project{
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "a",
|
|
},
|
|
{
|
|
ID: "a",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
require.EqualError(t, Pipe{}.Default(ctx), "found 2 nfpms with the ID 'a', please fix your config")
|
|
}
|
|
|
|
func TestMeta(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
f, err := os.Create(binPath)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.Close())
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
Bindir: "/usr/bin",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"deb", "rpm"},
|
|
Section: "somesection",
|
|
Priority: "standard",
|
|
Description: "Some description",
|
|
License: "MIT",
|
|
Maintainer: "me@me",
|
|
Vendor: "asdf",
|
|
Homepage: "https://goreleaser.github.io",
|
|
Meta: true,
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
FileNameTemplate: defaultNameTemplate + "-{{ .Release }}-{{ .Epoch }}",
|
|
PackageName: "foo",
|
|
Dependencies: []string{"make"},
|
|
Recommends: []string{"svn"},
|
|
Suggests: []string{"bzr"},
|
|
Replaces: []string{"fish"},
|
|
Conflicts: []string{"git"},
|
|
EmptyFolders: []string{"/var/log/foobar"},
|
|
Release: "10",
|
|
Epoch: "20",
|
|
Contents: []*files.Content{
|
|
{
|
|
Source: "testdata/testfile.txt",
|
|
Destination: "/usr/share/testfile.txt",
|
|
},
|
|
{
|
|
Source: "./testdata/testfile.txt",
|
|
Destination: "/etc/nope.conf",
|
|
Type: "config",
|
|
},
|
|
{
|
|
Source: "./testdata/testfile.txt",
|
|
Destination: "/etc/nope-rpm.conf",
|
|
Type: "config",
|
|
Packager: "rpm",
|
|
},
|
|
},
|
|
Replacements: map[string]string{
|
|
"linux": "Tux",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
packages := ctx.Artifacts.Filter(artifact.ByType(artifact.LinuxPackage)).List()
|
|
require.Len(t, packages, 4)
|
|
for _, pkg := range packages {
|
|
format := pkg.Format()
|
|
require.NotEmpty(t, format)
|
|
require.Equal(t, pkg.Name, "foo_1.0.0_Tux_"+pkg.Goarch+"-10-20."+format)
|
|
require.Equal(t, pkg.ID(), "someid")
|
|
require.ElementsMatch(t, []string{
|
|
"/usr/share/testfile.txt",
|
|
"/etc/nope.conf",
|
|
"/etc/nope-rpm.conf",
|
|
}, destinations(pkg.ExtraOr(extraFiles, files.Contents{}).(files.Contents)))
|
|
}
|
|
|
|
require.Len(t, ctx.Config.NFPMs[0].Contents, 3, "should not modify the config file list")
|
|
}
|
|
|
|
func TestSkipSign(t *testing.T) {
|
|
folder, err := os.MkdirTemp("", "archivetest")
|
|
require.NoError(t, err)
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
_, err = os.Create(binPath)
|
|
require.NoError(t, err)
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"deb", "rpm", "apk"},
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
FileNameTemplate: defaultNameTemplate,
|
|
Contents: []*files.Content{
|
|
{
|
|
Source: "testdata/testfile.txt",
|
|
Destination: "/usr/share/testfile.txt",
|
|
},
|
|
},
|
|
Deb: config.NFPMDeb{
|
|
Signature: config.NFPMDebSignature{
|
|
KeyFile: "/does/not/exist.gpg",
|
|
},
|
|
},
|
|
RPM: config.NFPMRPM{
|
|
Signature: config.NFPMRPMSignature{
|
|
KeyFile: "/does/not/exist.gpg",
|
|
},
|
|
},
|
|
APK: config.NFPMAPK{
|
|
Signature: config.NFPMAPKSignature{
|
|
KeyFile: "/does/not/exist.gpg",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux", "darwin"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
t.Run("skip sign not set", func(t *testing.T) {
|
|
contains := "open /does/not/exist.gpg: no such file or directory"
|
|
if runtime.GOOS == "windows" {
|
|
contains = "open /does/not/exist.gpg: The system cannot find the path specified."
|
|
}
|
|
require.Contains(
|
|
t,
|
|
Pipe{}.Run(ctx).Error(),
|
|
contains,
|
|
)
|
|
})
|
|
|
|
t.Run("skip sign set", func(t *testing.T) {
|
|
ctx.SkipSign = true
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
})
|
|
}
|
|
|
|
func TestBinDirTemplating(t *testing.T) {
|
|
folder := t.TempDir()
|
|
dist := filepath.Join(folder, "dist")
|
|
require.NoError(t, os.Mkdir(dist, 0o755))
|
|
require.NoError(t, os.Mkdir(filepath.Join(dist, "mybin"), 0o755))
|
|
binPath := filepath.Join(dist, "mybin", "mybin")
|
|
f, err := os.Create(binPath)
|
|
require.NoError(t, err)
|
|
require.NoError(t, f.Close())
|
|
ctx := context.New(config.Project{
|
|
ProjectName: "mybin",
|
|
Dist: dist,
|
|
Env: []string{
|
|
"PRO=pro",
|
|
"DESC=templates",
|
|
},
|
|
NFPMs: []config.NFPM{
|
|
{
|
|
ID: "someid",
|
|
// Bindir should pass through the template engine
|
|
Bindir: "/usr/lib/{{ .Env.PRO }}/nagios/plugins",
|
|
Builds: []string{"default"},
|
|
Formats: []string{"rpm"},
|
|
Section: "somesection",
|
|
Priority: "standard",
|
|
Description: "Some description with {{ .Env.DESC }}",
|
|
License: "MIT",
|
|
Maintainer: "me@me",
|
|
Vendor: "asdf",
|
|
Homepage: "https://goreleaser.com/{{ .Env.PRO }}",
|
|
NFPMOverridables: config.NFPMOverridables{
|
|
PackageName: "foo",
|
|
},
|
|
},
|
|
},
|
|
})
|
|
ctx.Version = "1.0.0"
|
|
ctx.Git = context.GitInfo{CurrentTag: "v1.0.0"}
|
|
for _, goos := range []string{"linux"} {
|
|
for _, goarch := range []string{"amd64", "386"} {
|
|
ctx.Artifacts.Add(&artifact.Artifact{
|
|
Name: "subdir/mybin",
|
|
Path: binPath,
|
|
Goarch: goarch,
|
|
Goos: goos,
|
|
Type: artifact.Binary,
|
|
Extra: map[string]interface{}{
|
|
artifact.ExtraID: "default",
|
|
},
|
|
})
|
|
}
|
|
}
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
packages := ctx.Artifacts.Filter(artifact.ByType(artifact.LinuxPackage)).List()
|
|
|
|
for _, pkg := range packages {
|
|
format := pkg.Format()
|
|
require.NotEmpty(t, format)
|
|
// the final binary should contain the evaluated bindir (after template eval)
|
|
require.ElementsMatch(t, []string{
|
|
"/usr/lib/pro/nagios/plugins/subdir/mybin",
|
|
}, destinations(pkg.ExtraOr(extraFiles, files.Contents{}).(files.Contents)))
|
|
}
|
|
}
|
|
|
|
func TestSkip(t *testing.T) {
|
|
t.Run("skip", func(t *testing.T) {
|
|
require.True(t, Pipe{}.Skip(context.New(config.Project{})))
|
|
})
|
|
|
|
t.Run("dont skip", func(t *testing.T) {
|
|
ctx := context.New(config.Project{
|
|
NFPMs: []config.NFPM{
|
|
{},
|
|
},
|
|
})
|
|
require.False(t, Pipe{}.Skip(ctx))
|
|
})
|
|
}
|
|
|
|
func sources(contents files.Contents) []string {
|
|
result := make([]string, 0, len(contents))
|
|
for _, f := range contents {
|
|
if f.Source == "" {
|
|
continue
|
|
}
|
|
result = append(result, f.Source)
|
|
}
|
|
return result
|
|
}
|