mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-06 03:13:48 +02:00
c91c4b7cd8
- wrap the multiple errors in an internal error with cleaner messaging - improve testlib.RequireTemplateError and several tests
70 lines
1.7 KiB
Go
70 lines
1.7 KiB
Go
package reddit
|
|
|
|
import (
|
|
"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 TestStringer(t *testing.T) {
|
|
require.Equal(t, Pipe{}.String(), "reddit")
|
|
}
|
|
|
|
func TestDefault(t *testing.T) {
|
|
ctx := testctx.New()
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
require.Equal(t, ctx.Config.Announce.Reddit.TitleTemplate, defaultTitleTemplate)
|
|
}
|
|
|
|
func TestAnnounceInvalidURLTemplate(t *testing.T) {
|
|
ctx := testctx.NewWithCfg(config.Project{
|
|
Announce: config.Announce{
|
|
Reddit: config.Reddit{
|
|
URLTemplate: "{{ .Foo }",
|
|
},
|
|
},
|
|
})
|
|
testlib.RequireTemplateError(t, Pipe{}.Announce(ctx))
|
|
}
|
|
|
|
func TestAnnounceInvalidTitleTemplate(t *testing.T) {
|
|
ctx := testctx.NewWithCfg(config.Project{
|
|
Announce: config.Announce{
|
|
Reddit: config.Reddit{
|
|
TitleTemplate: "{{ .Foo }",
|
|
},
|
|
},
|
|
})
|
|
testlib.RequireTemplateError(t, Pipe{}.Announce(ctx))
|
|
}
|
|
|
|
func TestAnnounceMissingEnv(t *testing.T) {
|
|
ctx := testctx.NewWithCfg(config.Project{
|
|
Announce: config.Announce{
|
|
Reddit: config.Reddit{},
|
|
},
|
|
})
|
|
require.NoError(t, Pipe{}.Default(ctx))
|
|
require.EqualError(t, Pipe{}.Announce(ctx), `reddit: env: environment variable "REDDIT_SECRET" should not be empty; environment variable "REDDIT_PASSWORD" should not be empty`)
|
|
}
|
|
|
|
func TestSkip(t *testing.T) {
|
|
t.Run("skip", func(t *testing.T) {
|
|
require.True(t, Pipe{}.Skip(testctx.New()))
|
|
})
|
|
|
|
t.Run("dont skip", func(t *testing.T) {
|
|
ctx := testctx.NewWithCfg(config.Project{
|
|
Announce: config.Announce{
|
|
Reddit: config.Reddit{
|
|
Enabled: true,
|
|
},
|
|
},
|
|
})
|
|
require.False(t, Pipe{}.Skip(ctx))
|
|
})
|
|
}
|