mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
c91c4b7cd8
- wrap the multiple errors in an internal error with cleaner messaging - improve testlib.RequireTemplateError and several tests
73 lines
1.5 KiB
Go
73 lines
1.5 KiB
Go
package archive
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/testctx"
|
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestMeta(t *testing.T) {
|
|
t.Run("good", func(t *testing.T) {
|
|
dist := t.TempDir()
|
|
ctx := testctx.NewWithCfg(config.Project{
|
|
Dist: dist,
|
|
Archives: []config.Archive{
|
|
{
|
|
Meta: true,
|
|
NameTemplate: "foo",
|
|
Files: []config.File{
|
|
{Source: "testdata/**/*.txt"},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
require.Equal(
|
|
t,
|
|
[]string{"testdata/a/a.txt", "testdata/a/b/a.txt", "testdata/a/b/c/d.txt"},
|
|
testlib.LsArchive(t, filepath.Join(dist, "foo.tar.gz"), "tar.gz"),
|
|
)
|
|
})
|
|
|
|
t.Run("bad tmpl", func(t *testing.T) {
|
|
dist := t.TempDir()
|
|
ctx := testctx.NewWithCfg(config.Project{
|
|
Dist: dist,
|
|
Archives: []config.Archive{
|
|
{
|
|
Meta: true,
|
|
NameTemplate: "foo{{.Os}}",
|
|
Files: []config.File{
|
|
{Source: "testdata/**/*.txt"},
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
testlib.RequireTemplateError(t, Pipe{}.Run(ctx))
|
|
})
|
|
|
|
t.Run("no files", func(t *testing.T) {
|
|
dist := t.TempDir()
|
|
ctx := testctx.NewWithCfg(config.Project{
|
|
Dist: dist,
|
|
Archives: []config.Archive{
|
|
{
|
|
Meta: true,
|
|
NameTemplate: "foo",
|
|
},
|
|
},
|
|
})
|
|
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
require.EqualError(t, Pipe{}.Run(ctx), `no files found`)
|
|
})
|
|
}
|