mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-09 13:36:56 +02:00
alternative to #3806 the idea is that both `context.New` and `context.Context{}` are never used in tests. not sure yet how much I like it, so far code does look a bit more readable though. --------- Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
72 lines
1.5 KiB
Go
72 lines
1.5 KiB
Go
package archive
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/testctx"
|
|
"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"},
|
|
tarFiles(t, filepath.Join(dist, "foo.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))
|
|
require.EqualError(t, Pipe{}.Run(ctx), `template: tmpl:1:5: executing "tmpl" at <.Os>: map has no entry for key "Os"`)
|
|
})
|
|
|
|
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`)
|
|
})
|
|
}
|