mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-22 04:08:49 +02:00
61bead8989
* refactor: improve middleware Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: upload tests Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: twitter tests Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: source tests Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: snapshot tests Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * test: improved some tests Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: snapcraft skip Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip slack Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip sign Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip scoop Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip reddit Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip discord Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip publish Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip nfpm Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip milestone Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip custompublishers Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip checksums Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip changelog Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip brew Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip blob Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip before Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip artifactory Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip announce Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip defaults Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: cmds Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip docker Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * chore: todo Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: go.mod Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip release Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: remove old skip pipe errors Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip teams Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip brew Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix/test: skip smtp Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: lint issues Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip docker Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip brew and scoop Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip docker Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: skip http/artifactory Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * test: increase coverage Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * test: fix Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
109 lines
2.3 KiB
Go
109 lines
2.3 KiB
Go
package before
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/apex/log"
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
log.SetLevel(log.DebugLevel)
|
|
defer log.SetLevel(log.InfoLevel)
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func TestDescription(t *testing.T) {
|
|
require.NotEmpty(t, Pipe{}.String())
|
|
}
|
|
|
|
func TestRunPipe(t *testing.T) {
|
|
for _, tc := range [][]string{
|
|
nil,
|
|
{},
|
|
{"go version"},
|
|
{"go version", "go list"},
|
|
{`bash -c "go version; echo \"lala spaces and such\""`},
|
|
} {
|
|
ctx := context.New(
|
|
config.Project{
|
|
Before: config.Before{
|
|
Hooks: tc,
|
|
},
|
|
},
|
|
)
|
|
require.NoError(t, Pipe{}.Run(ctx))
|
|
}
|
|
}
|
|
|
|
func TestRunPipeInvalidCommand(t *testing.T) {
|
|
ctx := context.New(
|
|
config.Project{
|
|
Before: config.Before{
|
|
Hooks: []string{`bash -c "echo \"unterminated command\"`},
|
|
},
|
|
},
|
|
)
|
|
require.EqualError(t, Pipe{}.Run(ctx), "invalid command line string")
|
|
}
|
|
|
|
func TestRunPipeFail(t *testing.T) {
|
|
for err, tc := range map[string][]string{
|
|
"hook failed: go tool foobar: exit status 2; output: go tool: no such tool \"foobar\"\n": {"go tool foobar"},
|
|
"hook failed: sh ./testdata/foo.sh: exit status 1; output: lalala\n": {"sh ./testdata/foo.sh"},
|
|
} {
|
|
ctx := context.New(
|
|
config.Project{
|
|
Before: config.Before{
|
|
Hooks: tc,
|
|
},
|
|
},
|
|
)
|
|
require.EqualError(t, Pipe{}.Run(ctx), err)
|
|
}
|
|
}
|
|
|
|
func TestRunWithEnv(t *testing.T) {
|
|
f := filepath.Join(t.TempDir(), "testfile")
|
|
require.NoError(t, Pipe{}.Run(context.New(
|
|
config.Project{
|
|
Env: []string{
|
|
"TEST_FILE=" + f,
|
|
},
|
|
Before: config.Before{
|
|
Hooks: []string{"touch {{ .Env.TEST_FILE }}"},
|
|
},
|
|
},
|
|
)))
|
|
require.FileExists(t, f)
|
|
}
|
|
|
|
func TestInvalidTemplate(t *testing.T) {
|
|
require.EqualError(t, Pipe{}.Run(context.New(
|
|
config.Project{
|
|
Before: config.Before{
|
|
Hooks: []string{"touch {{ .fasdsd }"},
|
|
},
|
|
},
|
|
)), `template: tmpl:1: unexpected "}" in operand`)
|
|
}
|
|
|
|
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{
|
|
Before: config.Before{
|
|
Hooks: []string{""},
|
|
},
|
|
})
|
|
require.False(t, Pipe{}.Skip(ctx))
|
|
})
|
|
}
|