mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
51 lines
1.4 KiB
Go
51 lines
1.4 KiB
Go
|
package twitter
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/goreleaser/goreleaser/internal/testlib"
|
||
|
"github.com/goreleaser/goreleaser/pkg/config"
|
||
|
"github.com/goreleaser/goreleaser/pkg/context"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestStringer(t *testing.T) {
|
||
|
require.Equal(t, Pipe{}.String(), "twitter")
|
||
|
}
|
||
|
|
||
|
func TestDefault(t *testing.T) {
|
||
|
ctx := context.New(config.Project{})
|
||
|
require.NoError(t, Pipe{}.Default(ctx))
|
||
|
require.Equal(t, ctx.Config.Announce.Twitter.MessageTemplate, defaultMessageTemplate)
|
||
|
}
|
||
|
|
||
|
func TestAnnounceDisabled(t *testing.T) {
|
||
|
ctx := context.New(config.Project{})
|
||
|
require.NoError(t, Pipe{}.Default(ctx))
|
||
|
testlib.AssertSkipped(t, Pipe{}.Announce(ctx))
|
||
|
}
|
||
|
|
||
|
func TestAnnounceInvalidTemplate(t *testing.T) {
|
||
|
ctx := context.New(config.Project{
|
||
|
Announce: config.Announce{
|
||
|
Twitter: config.Twitter{
|
||
|
Enabled: true,
|
||
|
MessageTemplate: "{{ .Foo }",
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
require.EqualError(t, Pipe{}.Announce(ctx), `announce: failed to announce to twitter: template: tmpl:1: unexpected "}" in operand`)
|
||
|
}
|
||
|
|
||
|
func TestAnnounceMissingEnv(t *testing.T) {
|
||
|
ctx := context.New(config.Project{
|
||
|
Announce: config.Announce{
|
||
|
Twitter: config.Twitter{
|
||
|
Enabled: true,
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
require.NoError(t, Pipe{}.Default(ctx))
|
||
|
require.EqualError(t, Pipe{}.Announce(ctx), `announce: failed to announce to twitter: env: environment variable "TWITTER_CONSUMER_KEY" should not be empty`)
|
||
|
}
|